* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--main-bg);
    color: var(--main-dark);
}

.header .container {
    max-width: 1200px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}


.header {
    background-color: var(--main-blue);
    padding: 10px 0;
    box-shadow: 0 2px 8px rgba(26, 32, 64, 0.20);
}

.header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.header__logo img {
    height: 50px;
    filter: drop-shadow(0 2px 8px rgba(255, 140, 0, 0.30));
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 0px;
}

.nav__list a {
    color: var(--main-white);
    background: transparent;
    font-weight: 500;
    transition: color 0.3s, background 0.3s;
    padding: 8px 18px;
    border-radius: 8px;
    text-decoration: none;
}

.nav__list a:hover, .nav__list a.active {
    background: var(--main-gold);
    color: var(--main-black);
}

.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: 700;
    cursor: pointer;
    transition: all 0.3s;
    background: linear-gradient(90deg, #D4AF37 0%, #FFD700 100%);
    color: #000;
    border: 2px solid #D4AF37;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.30);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .btn {
        padding: 8px 20px;
        font-size: 1rem;
    }
}

.btn:hover, .btn:focus {
    background: linear-gradient(90deg, #FFD700 0%, #D4AF37 100%);
    color: #000;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.40);
}

.btn--login {
    background: linear-gradient(90deg, #D4AF37 0%, #FFD700 100%);
    color: #000;
    border: 2px solid #D4AF37;
}

.btn--login:hover {
    background: linear-gradient(90deg, #FFD700 0%, #D4AF37 100%);
    color: #000;
    border: 2px solid #FFD700;
}

.btn--register {
    background: linear-gradient(90deg, #D4AF37 0%, #FFD700 100%);
    color: #000;
    border: 2px solid #D4AF37;
}

.btn--register:hover {
    background: linear-gradient(90deg, #FFD700 0%, #D4AF37 100%);
    color: #000;
    border: 2px solid #FFD700;
}

.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 {
    position: relative;
    height: auto;
    min-height: 180px;
    max-height: none;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: transparent;
    margin-bottom: 0;
    overflow: hidden;
    border-radius: 0;
    z-index: 10;
}

.banner__gradient {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 180px;
    padding-top: 36px;
    padding-bottom: 36px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    background: linear-gradient(90deg, #1A1A1A 0%, #2C2C2C 60%, #D4AF37 100%);
}

.banner__content {
    position: static;
    text-align: center;
    z-index: 2;
    color: #fff;
    width: 100%;
    max-width: 1200px;
}

.banner__content h2 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 24px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.banner__cta {
    display: flex;
    gap: 18px;
    justify-content: center;
}

.banner__wave {
    position: relative;
    display: block;
    width: 100%;
    margin-top: -8px;
    z-index: 3;
    pointer-events: none;
    height: 80px;
    min-height: 40px;
}

.banner__desktop {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner__mobile {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}


.main {
    padding: 30px 0;
    background: var(--main-bg);
    color: var(--main-white);
    border-top: none;
    box-shadow: none;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.main h1, .main h2, .main h3, .main p, .main ul li, .main ol li {
    color: var(--main-white);
}

.main h1 {
    margin-bottom: 20px;
}


.footer {
    background: var(--main-blue);
    color: var(--main-white);
    padding: 30px 0;
    border-top: 4px solid var(--main-gold);
    box-shadow: 0 2px 12px rgba(26, 26, 26, 0.20);
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 30px 0 20px 0;
    flex-wrap: wrap;
    flex-direction: column;
}

.footer__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 2;
}

.footer__top-row {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.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%;
    height: 30px;
}

.footer__divider {
    border: none;
    border-top: 1px solid var(--main-gold);
    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: var(--main-white);
    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: var(--main-gold);
    color: var(--main-black);
}

.footer__copyright {
    color: var(--main-white);
    font-size: 14px;
    margin-top: 10px;
}

.footer__img {
    display: flex;
    align-items: center;
    gap: 10px;
}
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__top-row {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .footer__partners {
        justify-content: center;
        flex-wrap: wrap;
    }
    .footer__partners img {
        height: 32px;
    }
}

@media (max-width: 600px) {
    .footer__partners img {
        height: 24px;
    }
}


@media (max-width:1200px) {
    .header__nav,
    .header__desktop-buttons {
        display: none;
    }

    .header__nav.active {
        display: block !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--main-blue);
        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;
    }

    .footer__menu {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .footer__partners {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        justify-content: flex-start;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .footer__partners img {
        flex-shrink: 0;
        height: 28px;
    }

    .banner {
        min-height: 110px;
    }
    .banner__content {
        top: 10%;
        max-width: 98vw;
        padding: 0 8px;
    }
    .banner__content h2 {
        font-size: 1.05rem;
        margin-bottom: 10px;
    }
    .banner__cta {
        gap: 8px;
        align-items: center;
    }
    .banner__wave {
        height: 40px;
        min-height: 24px;
    }
    .banner__desktop {
        display: none;
    }
    .banner__mobile {
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: top;
        background: var(--main-blue);
    }
    .banner__gradient {
        min-height: 110px;
        padding-top: 18px;
        padding-bottom: 18px;
    }
}


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, ul li, ol li {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 16px 0;
}
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;
}
ul li:last-child, ol li:last-child {
    margin-bottom: 0;
}


.table-wrapper {
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(26, 32, 64, 0.15);
    width: 100%;
    overflow-x: auto;
    margin-bottom: 24px;
    border: 1px solid var(--card-border);
}
table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    color: var(--main-white);
    font-size: 1rem;
    border-radius: 12px;
    overflow: hidden;
}
th, td {
    padding: 14px 18px;
    border: 1px solid var(--main-gold);
    text-align: left;
}
th {
    background: var(--main-gold);
    color: var(--main-black);
    font-weight: 700;
}
tr:nth-child(even) {
    background: #2C2C2C;
}
tr:nth-child(odd) {
    background: var(--card-bg);
}

@media (max-width: 768px) {
    .table-wrapper {
        -webkit-overflow-scrolling: touch;
        background: var(--main-blue);
    }
    table {
        font-size: 0.95rem;
    }
    th, td {
        padding: 10px 8px;
    }
} 

::-webkit-scrollbar {
    width: 3px;
    height: 3px;
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.6);
    border-radius: 2px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.8);
}
::-webkit-scrollbar-track {
    background: transparent;
}


@media (max-width: 768px) {
    .header__nav.active {
        background: var(--main-blue) !important;
    }
    .banner__mobile {
        background: var(--main-blue);
    }
    .table-wrapper {
        background: var(--main-blue);
    }
} 

:root {
    --main-black: #000000; 
    --main-white: #ffffff; 
    --main-gold: #D4AF37; 
    --main-bg: #1A1A1A; 
    --main-dark: #ffffff; 
    --accent-gold: #FFD700; 
    --accent-grey: #2C2C2C; 
    --card-bg: #2C2C2C; 
    --card-border: #D4AF37; 
    --main-blue: #1A1A1A; 
    --main-green: #1A1A1A; 
    --main-green-light: #D4AF37; 
}

.header__nav .has-submenu {
    position: relative;
}

.header__nav .submenu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: var(--main-blue);
    min-width: 180px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.20);
    border-radius: 0 0 10px 10px;
    z-index: 100;
    padding: 10px 0;
}

.header__nav .submenu li {
    width: 100%;
}

.header__nav .submenu li a {
    color: var(--main-white);
    padding: 10px 24px;
    display: block;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
}

.header__nav .submenu li a:hover {
    background: var(--main-gold);
    color: var(--main-black);
}

.header__nav .has-submenu:hover > .submenu,
.header__nav .has-submenu:focus-within > .submenu {
    display: block;
}
.submenu li {
    list-style-type: none;
}
table td p {
    margin:0px;
    color:#fff!important;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: var(--main-bg);
    border-radius: 10px;
    border: 1px solid var(--main-gold);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-2px);
    border-color: var(--accent-gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.advantage-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    background: linear-gradient(135deg, var(--main-gold) 0%, var(--accent-gold) 100%);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    flex-shrink: 0;
}

.advantage-content {
    flex: 1;
}

.advantage-content p {
    color: var(--main-white);
    margin-bottom: 8px;
    line-height: 1.5;
}

.advantage-content p:first-child {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--main-gold);
    margin-bottom: 10px;
}

.advantage-content p:last-child {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Mobile Advantages Styles */
@media (max-width: 768px) {
    
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .advantage-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
        gap: 10px;
    }
    
    .advantage-icon {
        font-size: 1.8rem;
        width: 45px;
        height: 45px;
        line-height: 45px;
    }
    
    .advantage-content p:first-child {
        font-size: 1rem;
    }
    
    .advantage-content p:last-child {
        font-size: 0.9rem;
    }
}



.bonus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.bonus-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: var(--main-bg);
    border-radius: 10px;
    border: 1px solid var(--main-gold);
    transition: all 0.3s ease;
}

.bonus-item:hover {
    transform: translateY(-3px);
    border-color: var(--accent-gold);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.15);
}

.bonus-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    background: linear-gradient(135deg, var(--main-gold) 0%, var(--accent-gold) 100%);
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
    margin-bottom: 15px;
}

.bonus-content {
    flex: 1;
}

.bonus-content p {
    color: var(--main-white);
    margin-bottom: 8px;
    line-height: 1.5;
}

.bonus-content p:first-child {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--main-gold);
    margin-bottom: 10px;
}

.bonus-content p:last-child {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.btn--bonus {
    background: linear-gradient(90deg, var(--main-gold) 0%, var(--accent-gold) 100%);
    color: var(--main-black);
    border: 2px solid var(--main-gold);
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn--bonus:hover {
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--main-gold) 100%);
    color: var(--main-black);
    border: 2px solid var(--accent-gold);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Mobile Bonus Styles */
@media (max-width: 1024px) {
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    
    
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .bonus-item {
        padding: 15px;
    }
    
    .bonus-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
        line-height: 50px;
        margin-bottom: 10px;
    }
    
    .bonus-content p:first-child {
        font-size: 1rem;
    }
    
    .bonus-content p:last-child {
        font-size: 0.85rem;
    }
    
    .btn--bonus {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

/* Floating Mobile Buttons */
.floating-buttons {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--main-bg);
    border-top: 2px solid var(--main-gold);
    padding: 15px 20px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.floating-btn {
    flex: 1;
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.floating-btn--login {
    background: transparent;
    color: var(--main-gold);
    border: 2px solid var(--main-gold);
}

.floating-btn--login:hover {
    background: var(--main-gold);
    color: var(--main-black);
}

.floating-btn--register {
    background: linear-gradient(90deg, var(--main-gold) 0%, var(--accent-gold) 100%);
    color: var(--main-black);
    border: 2px solid var(--main-gold);
}

.floating-btn--register:hover {
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--main-gold) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Show floating buttons only on mobile */
@media (max-width: 768px) {
    .floating-buttons {
        display: flex;
        gap: 10px;
    }
    
    /* Add bottom padding to main content to prevent overlap */
    .main {
        padding-bottom: 80px;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 40px 0;
    margin-top: 0;
}


.faq-container {
    width: 100%;
    margin: 0;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--main-gold);
    padding: 0 20px 20px 20px;
}

.faq-question {
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h3 {
    color: var(--main-white);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--main-gold);
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent-gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 0 20px 0;
}

.faq-answer p {
    color: var(--main-white);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* Mobile FAQ Styles */
@media (max-width: 768px) {
    .faq-section {
        padding: 30px 0;
        margin-top: 0;
    }
    
    .faq-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .faq-item {
        padding: 0 15px 15px 15px;
    }
    
    .faq-question {
        padding: 15px 0;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        padding-right: 15px;
    }
    
    .faq-icon {
        font-size: 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 0 15px 0;
    }
    
    .faq-answer p {
        font-size: 1rem;
    }
}