* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #23451e;
    color: #fff;
}

.header .container {
    max-width:100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.header {
    background-color: #2d4c23;
    padding: 10px 0;
    box-shadow: 0 2px 8px rgba(35,69,30,0.15);
}

.header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.header__logo img {
    height: 75px;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav__list a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s, background 0.3s;
    padding: 8px 18px;
    border-radius: 8px;
}

.nav__list a:hover, .nav__list a.active {
    background: #43a047;
    color: #fff;
}

.header__desktop-buttons {
    display: flex;
    gap: 15px;
}

.header__mobile-buttons {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    width: 100%;
}

.header__mobile-buttons .btn {
    width: 100%;
    text-align: center;
    border-radius: 8px;
}

.btn {
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    background: #00c853;
    color: #fff;
    border: none;
    box-shadow: 0 4px 16px rgba(67,160,71,0.15);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.btn:hover, .btn:focus {
    background: #43a047;
    color: #fff;
    box-shadow: 0 6px 24px rgba(67,160,71,0.25);
    transform: translateY(-2px) scale(1.03);
}

.btn--login {
    background: #2d4c23;
    color: #00c853;
    border: 2px solid #00c853;
    border-radius: 8px;
}

.btn--login:hover {
    background: #00c853;
    color: #2d4c23;
    border: 2px solid #00c853;
}

.btn--register {
    background: #00c853;
    color: #2d4c23;
    border: 2px solid #00c853;
    border-radius: 8px;
}

.btn--register:hover {
    background: #43a047;
    color: #fff;
    border: 2px solid #43a047;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s;
}

/* Banner Styles */
.banner {
    max-height: 100vh;
    overflow: hidden;
}

.banner__desktop {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner__mobile {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

/* Main Content Styles */
.main {
    padding: 50px 0;
    background: #2d4c23;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(67,160,71,0.10);
}

.main h1 {
    margin-bottom: 20px;
}

/* Footer Styles */
.footer {
    background: #23451e;
    color: #fff;
    padding: 30px 0;
    border-top: 4px solid #00c853;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 30px 0 20px 0;
    flex-wrap: wrap;
    flex-direction: row;
}

.footer__info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 2;
}

.footer__icon {
    height: 65px;
    margin-right: 10px;
}

.footer__text {
    line-height: 1.5;
}

.footer__partners {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 3;
    flex-wrap: wrap;
    justify-content: center;
    margin-top:25px;
}

.footer__partners img {
    background: transparent;
    object-fit: contain;
    display: flex;
    align-items: center;
    max-width: 100%;
}

.footer__divider {
    border: none;
    border-top: 1px solid #355c2b;
    margin: 0 auto 20px auto;
    max-width: 1200px;
}

.footer__bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 30px 0 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer__logo {
    height: 50px;
    margin-bottom: 10px;
}

.footer__aware img {
    height: 20px;
    margin-bottom: 10px;
}

.footer__menu {
    list-style: none;
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.footer__menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s, background 0.2s;
    padding: 6px 14px;
    border-radius: 6px;
}

.footer__menu li a:hover {
    background: #43a047;
    color: #fff;
}

.footer__copyright {
    color: #00c853;
    font-size: 14px;
    margin-top: 10px;
}

.footer__img {
    display:flex;
}
a.btn {
    text-decoration: none;
}
ul.nav__list {
    margin:0px;
}
.nav__list li {
    margin:0px;
    font-size: 18px;
}
.page-button {
    margin:15px;
    display: flex;
    justify-content: center;
    gap: 25px;
}
main img {
    height: auto;
    margin-bottom: 20px;
    margin:0 auto;
    display: block;
    max-width:100%;
    max-height:500px;
}
/* Адаптив */
@media (max-width: 900px) {
    .footer__top {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    .footer__partners {
        margin-top: 10px;
        height: auto;
    }
    .footer__info {
        flex-direction: column;
        gap: 10px;
    }
    .footer__partners img {
        height: 32px;
    }
}

@media (max-width: 600px) {
    .footer__partners img {
        height: 24px;
    }
}

/* Mobile Styles */
@media (max-width:1000px) {
    .header__nav,
    .header__desktop-buttons {
        display: none;
    }

    .header__nav.active {
        display: block !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #2d4c23;
        padding: 20px;
        z-index: 1000;
    }

    .header__nav.active .nav__list {
        flex-direction: column;
        gap: 15px;
    }

    .header__nav.active .header__mobile-buttons {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}
@media (max-width: 768px) {


    .footer__wrapper {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer__nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .banner {
        margin-top: 0;
        height: auto;
        display: block;
        position: relative;
        overflow: hidden;
    }

    .banner__desktop {
        display: none;
    }

    .banner__mobile {
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: top;
        background: #23451e;
    }
}

/* Base typography styles */
h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 32px 0 20px 0;
    line-height: 1.2;
}
h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 28px 0 18px 0;
    line-height: 1.25;
}
h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin: 24px 0 14px 0;
    line-height: 1.3;
}
p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 16px 0;
    color: #fff;
}
ul, ol {
    margin: 0 0 20px 24px;
    padding: 0 0 0 18px;
}
ul {
    list-style-type: disc;
}
ol {
    list-style-type: decimal;
}
ul li, ol li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 8px;
    color: #fff;
}
ul li:last-child, ol li:last-child {
    margin-bottom: 0;
}

/* Table styles */
.table-wrapper {
    background: #2d4c23;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(67,160,71,0.08);
    padding: 12px;
    width: 100%;
    overflow-x: auto;
    margin-bottom: 24px;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
    background: #2d4c23;
    color: #fff;
    font-size: 1rem;
    border-radius: 12px;
    overflow: hidden;
}
th, td {
    padding: 14px 18px;
    border: 1px solid #43a047;
    text-align: left;
}
th {
    background: #43a047;
    color: #fff;
    font-weight: 700;
}
tr:nth-child(even) {
    background: #23451e;
}
tr:nth-child(odd) {
    background: #2d4c23;
}

@media (max-width: 768px) {
    .table-wrapper {
        -webkit-overflow-scrolling: touch;
        background: #23451e;
    }
    table {
        font-size: 0.95rem;
    }
    th, td {
        padding: 10px 8px;
    }
} 

/* Cards, blocks, etc */
.main, .card, .block, .sidebar, .bet-slip, .top-bets, .matches, .filter, .accumulator, .promotions {
    background: #2d4c23;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(67,160,71,0.10);
    padding: 18px 20px;
    margin-bottom: 24px;
}

/* Акценты и выделения */
.highlight, .active, .selected, .top-bets, .accumulator, .promotions, .today, .tomorrow, .hot-now {
    background: #00c853 !important;
    color: #fff !important;
    font-weight: 700;
    border-radius: 10px;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    background: #23451e;
}
::-webkit-scrollbar-thumb {
    background: #00c853;
    border-radius: 8px;
}

/* Адаптивные стили — только цвета */
@media (max-width: 768px) {
    .header__nav.active {
        background: #2d4c23;
    }
    .banner__mobile {
        background: #23451e;
    }
    .table-wrapper {
        background: #23451e;
    }
} 
