html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

*,*:after,*:before {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #1a1a2e;
    color: white;
}

.promo-banners {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px 0;
}

.promo-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.promo-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Фонові градієнти для кожного банера */
.welcome-banner {
    background: url("../images/banner-1.webp") no-repeat center center;
    background-size: cover;
}

.cashback-banner {
    background: url("../images/banner-2.webp") no-repeat center center;
    background-size: cover;
}

.highroller-banner {
    background: url("../images/banner-3.webp") no-repeat center center;
    background-size: cover;
}

.promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
    color: white;
}

.promo-header {
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.promo-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    margin: 15px 0;
}

.promo-amount {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.promo-description {
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 5px;
}

.promo-code {
    font-size: 0.9rem;
    font-weight: bold;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-button {
    background: #5BDCE5;
    color: #2c1810;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.promo-button:hover {
    background: linear-gradient(45deg, #FFA500, #FFD700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Додаткові декоративні елементи */
.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
}

.promo-card:hover::before {
    transform: translateX(100%);
}

/* Мобільна адаптація */
@media (max-width: 1024px) {
    .promo-banners {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px 0;
    }

    .promo-card {
        height: 160px;
    }

    .promo-overlay {
        padding: 20px;
    }

    .promo-amount {
        font-size: 1.6rem;
    }

    .promo-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .promo-card {
        height: 140px;
    }

    .promo-overlay {
        padding: 18px;
    }

    .promo-header {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .promo-amount {
        font-size: 1.4rem;
    }

    .promo-description {
        font-size: 0.9rem;
    }

    .promo-code {
        font-size: 0.8rem;
    }

    .promo-button {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {

    .promo-banners {
        gap: 12px;
    }

    .promo-card {
        height: 130px;
    }

    .promo-overlay {
        padding: 15px;
    }

    .promo-amount {
        font-size: 1.2rem;
    }

    .promo-description {
        font-size: 0.85rem;
    }

    .promo-button {
        padding: 8px 16px;
        font-size: 0.75rem;
    }

}

/* Планшетна адаптація */
@media (min-width: 769px) and (max-width: 1024px) {
    .promo-banners {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo-card:nth-child(3) {
        grid-column: 1 / -1;
        height: 180px;
    }
}

/* Спеціальна адаптація для великих планшетів */
@media (min-width: 900px) and (max-width: 1024px) {
    .promo-banners {
        grid-template-columns: repeat(3, 1fr);
    }

    .promo-card:nth-child(3) {
        grid-column: auto;
        height: 160px;
    }
}

/* Анімація появи карток */
.promo-card {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease forwards;
}

.promo-card:nth-child(1) { animation-delay: 0.1s; }
.promo-card:nth-child(2) { animation-delay: 0.2s; }
.promo-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.top-games-section {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.view-all-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.view-all-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.count-badge {
    background: rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 600;
}

.carousel-controls {
    display: flex;
    gap: 8px;
}

.control-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.8);
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.control-btn:hover {
    background: rgba(99, 102, 241, 1);
    transform: scale(1.05);
}

.control-btn:active {
    transform: scale(0.95);
}

/* Desktop Grid */
.games-container {
    position: relative;
    overflow: hidden;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    transition: transform 0.3s ease;
}

.game-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s ease;
}

.game-card:hover {
    transform: translateY(-4px);
}

.game-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #374151, #4b5563);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image {
    transform: scale(1.05);
}

.favorite-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.favorite-btn:hover {
    background: rgba(220, 38, 38, 0.8);
    color: #fca5a5;
}

.game-info {
    padding: 0;
}

.game-title {
    font-size: 15px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 2.6em;
}

.game-provider {
    font-size: 13px;
    color: #8892b0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Mobile Horizontal Scroll */
@media (max-width: 1024px) {
    .games-grid {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        padding-bottom: 8px;
        scrollbar-width: thin;
        scrollbar-color: rgba(99, 102, 241, 0.6) transparent;
    }

    .games-grid::-webkit-scrollbar {
        height: 4px;
    }

    .games-grid::-webkit-scrollbar-track {
        background: transparent;
    }

    .games-grid::-webkit-scrollbar-thumb {
        background: rgba(99, 102, 241, 0.6);
        border-radius: 2px;
    }

    .game-card {
        flex: 0 0 200px;
    }

    .carousel-controls {
        display: none;
    }
}

@media (max-width: 768px) {

    .section-title {
        font-size: 24px;
    }

    .section-header {
        margin-bottom: 24px;
        flex-wrap: wrap;
        gap: 16px;
    }

    .header-controls {
        gap: 8px;
    }

    .view-all-btn {
        font-size: 13px;
        padding: 6px 16px;
    }

    .game-card {
        flex: 0 0 160px;
    }

    .games-grid {
        gap: 12px;
    }

    .game-image-container {
        margin-bottom: 8px;
    }

    .favorite-btn {
        width: 28px;
        height: 28px;
        font-size: 14px;
        top: 6px;
        right: 6px;
    }

    .game-title {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .game-provider {
        font-size: 12px;
    }
}

@media (max-width: 480px) {

    .section-title {
        font-size: 20px;
    }

    .section-header {
        margin-bottom: 20px;
    }

    .view-all-btn {
        font-size: 12px;
        padding: 5px 12px;
    }

    .count-badge {
        font-size: 11px;
        padding: 1px 6px;
    }

    .game-card {
        flex: 0 0 140px;
    }

    .games-grid {
        gap: 10px;
    }

    .game-image-container {
        margin-bottom: 6px;
        border-radius: 8px;
    }

    .favorite-btn {
        width: 24px;
        height: 24px;
        font-size: 12px;
        top: 4px;
        right: 4px;
    }

    .game-title {
        font-size: 13px;
    }

    .game-provider {
        font-size: 11px;
    }
}

.footer {
    background: #0f1419;
    padding: 60px 0 0;
    margin-top: 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 48px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #8892b0;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.6;
    transition: all 0.2s ease;
    display: block;
    padding: 4px 0;
}

.footer-links a:hover {
    color: white;
    padding-left: 8px;
}

.footer-bottom {
    background: #0a0d14;
    margin-top: 60px;
    padding: 32px 0;
    border-top: 1px solid #1e293b;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-info p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 4px;
}

.footer-social {
    display: flex;
    gap: 24px;
    align-items: center;
}

.social-link {
    color: #8892b0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 8px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
}

.social-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Payment methods section */
.footer-payments {
    grid-column: 1 / -1;
    margin-top: 24px;
    padding-top: 32px;
    border-top: 1px solid #1e293b;
    text-align: center;
}

.payment-title {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-method {
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 20px;
    border-radius: 8px;
    color: #8892b0;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-method:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer {
        padding: 48px 0 0;
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 36px;
        padding: 0 16px;
    }

    .footer-bottom-content {
        padding: 0 16px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-social {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        padding: 0 16px;
    }

    .footer-title {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .payment-methods {
        gap: 12px;
    }

    .payment-method {
        padding: 10px 16px;
        font-size: 12px;
    }

    .footer-social {
        gap: 16px;
    }

    .social-link {
        font-size: 13px;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 20px 12px;
    }

    .footer {
        padding: 32px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 12px;
    }

    .footer-title {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-bottom {
        padding: 24px 0;
    }

    .footer-bottom-content {
        padding: 0 12px;
    }

    .footer-info p {
        font-size: 13px;
    }

    .payment-title {
        font-size: 14px;
    }

    .payment-methods {
        gap: 8px;
    }

    .payment-method {
        padding: 8px 12px;
        font-size: 11px;
    }

    .footer-social {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
}

/* Animation for smooth loading */
.footer {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.features-banner {
    max-width: 1200px;
    margin: 20px auto;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.feature-card {
    background: linear-gradient(135deg, #16213e 0%, #1e2a4a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 28px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(16, 185, 129, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #06b6d4, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.feature-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
    line-height: 1.2;
}

.feature-subtitle {
    font-size: 16px;
    color: #8892b0;
    font-weight: 500;
}

.highlight-number {
    color: #06b6d4;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .feature-card {
        padding: 24px 20px;
        gap: 16px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
    }

    .feature-icon svg {
        width: 20px;
        height: 20px;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-subtitle {
        font-size: 14px;
    }
}

@media (max-width: 768px) {


    .features-container {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feature-card {
        padding: 20px 16px;
        gap: 14px;
        flex-direction: row;
        text-align: left;
    }

    .feature-icon {
        width: 44px;
        height: 44px;
    }

    .feature-icon svg {
        width: 18px;
        height: 18px;
    }

    .feature-title {
        font-size: 15px;
        margin-bottom: 2px;
    }

    .feature-subtitle {
        font-size: 13px;
    }
}

@media (max-width: 480px) {


    .feature-card {
        padding: 16px 12px;
        gap: 12px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon svg {
        width: 16px;
        height: 16px;
    }

    .feature-title {
        font-size: 14px;
    }

    .feature-subtitle {
        font-size: 12px;
    }
}

/* Animation */
.feature-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header {
    background: #0f1419;
    border-bottom: 1px solid #2a3441;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #06b6d4, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo:hover {
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

/* Desktop Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #8892b0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    color: white;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #06b6d4, #10b981);
    transition: width 0.2s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.btn-login {
    background: transparent;
    color: #8892b0;
    border: 1px solid #374151;
}

.btn-login:hover {
    color: white;
    border-color: #6b7280;
    background: rgba(255, 255, 255, 0.05);
}

.btn-register {
    background: linear-gradient(135deg, #06b6d4, #10b981);
    color: white;
    border: 1px solid transparent;
}

.btn-register:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hamburger Icon */
.hamburger {
    display: flex;
    flex-direction: column;
    width: 24px;
    height: 18px;
    justify-content: space-between;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0f1419;
    border-bottom: 1px solid #2a3441;
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.mobile-nav-links li {
    margin-bottom: 16px;
}

.mobile-nav-links a {
    color: #8892b0;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #1e293b;
    transition: all 0.2s ease;
}

.mobile-nav-links a:hover {
    color: white;
    padding-left: 8px;
}

.mobile-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-auth-buttons .btn {
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
}

/* Main Content */
.main-content {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.placeholder {
    color: #8892b0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-container {
        padding: 0 16px;
    }

    .mobile-menu {
        padding: 16px;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 60px;
        padding: 0 12px;
    }

    .logo {
        font-size: 20px;
    }

    .mobile-menu {
        padding: 12px;
    }

    .mobile-nav-links a {
        font-size: 15px;
        padding: 10px 0;
    }

    .mobile-auth-buttons .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .header-container {
        height: 56px;
        padding: 0 8px;
    }

    .logo {
        font-size: 18px;
    }

    .hamburger {
        width: 20px;
        height: 15px;
    }

    .mobile-menu {
        padding: 8px;
    }

    .mobile-nav-links a {
        font-size: 14px;
        padding: 8px 0;
    }

    .mobile-auth-buttons .btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* Animation for smooth transitions */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.mobile-menu.active {
    animation: slideDown 0.3s ease forwards;
}
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #16213e;
    border-radius: 12px;
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Typography */
.content-container h2 {
    color: white;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 36px;
}

.content-container h2:first-child {
    margin-top: 0;
}

.content-container h2 strong {
    color: white;
}

.content-container h3 {
    color: white;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
    margin-top: 28px;
}

.content-container h3 strong {
    color: white;
}

.content-container p {
    color: #cbd5e1;
    margin-bottom: 16px;
    text-align: justify;
    line-height: 1.7;
}

/* Lists */
.content-container ul {
    margin: 18px 0;
    padding-left: 0;
}

.content-container li {
    color: #cbd5e1;
    margin-bottom: 8px;
    padding: 6px 0 6px 24px;
    position: relative;
    line-height: 1.6;
}

.content-container li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #06b6d4;
    font-weight: bold;
    font-size: 16px;
}

/* Tables */
.content-container .table-wrapper {
    margin: 20px 0;
    overflow-x: auto;
    border-radius: 8px;
    background: #0f1419;
    border: 1px solid #2a3441;
    scrollbar-width: thin;
    scrollbar-color: #4b5563 #1f2937;
}

.content-container .table-wrapper::-webkit-scrollbar {
    height: 6px;
}

.content-container .table-wrapper::-webkit-scrollbar-track {
    background: #1f2937;
}

.content-container .table-wrapper::-webkit-scrollbar-thumb {
    background: #4b5563;
    border-radius: 3px;
}

.content-container table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.content-container table tbody tr:first-child td {
    background: #0a0d14;
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content-container td {
    padding: 12px 14px;
    border-bottom: 1px solid #2a3441;
    color: #cbd5e1;
    font-size: 14px;
    vertical-align: top;
}

.content-container td:first-child {
    font-weight: 500;
    color: white;
}

.content-container tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.content-container tbody tr:first-child:hover {
    background: #0a0d14;
}

.content-container td strong {
    color: white;
    font-weight: 600;
}

/* Highlight important sections */
.content-container > p:first-of-type {
    background: rgba(6, 182, 212, 0.08);
    padding: 18px;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 20px;
    border-left: 3px solid #06b6d4;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-container {
        margin: 16px;
        padding: 32px 18px;
    }

    .content-container h2 {
        font-size: 22px;
        margin-bottom: 18px;
        margin-top: 32px;
    }

    .content-container h3 {
        font-size: 18px;
        margin-bottom: 14px;
        margin-top: 24px;
    }

    .content-container p {
        font-size: 15px;
        margin-bottom: 14px;
        text-align: left;
    }

    .content-container .table-wrapper {
        margin: 18px -18px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .content-container table {
        min-width: 500px;
    }

    .content-container td {
        padding: 10px 12px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .content-container {
        margin: 12px;
        padding: 24px 16px;
        border-radius: 8px;
    }

    .content-container h2 {
        font-size: 20px;
        margin-bottom: 16px;
        margin-top: 28px;
    }

    .content-container h3 {
        font-size: 17px;
        margin-bottom: 12px;
        margin-top: 20px;
    }

    .content-container p {
        font-size: 14px;
        margin-bottom: 12px;
        line-height: 1.6;
    }

    .content-container li {
        padding: 4px 0 4px 20px;
        font-size: 14px;
        margin-bottom: 6px;
    }

    .content-container li::before {
        left: 6px;
        font-size: 14px;
    }

    .content-container .table-wrapper {
        margin: 16px -16px;
        border-radius: 0;
    }

    .content-container table {
        min-width: 450px;
    }

    .content-container td {
        padding: 8px 10px;
        font-size: 12px;
    }

    .content-container > p:first-of-type {
        padding: 14px;
        font-size: 15px;
        margin-bottom: 18px;
    }
}

@media (max-width: 480px) {
    .content-container {
        margin: 8px;
        padding: 20px 12px;
    }

    .content-container h2 {
        font-size: 18px;
        margin-bottom: 14px;
        margin-top: 24px;
    }

    .content-container h3 {
        font-size: 16px;
        margin-bottom: 10px;
        margin-top: 18px;
    }

    .content-container p {
        font-size: 13px;
        margin-bottom: 10px;
        line-height: 1.5;
    }

    .content-container li {
        padding: 3px 0 3px 18px;
        font-size: 13px;
        margin-bottom: 4px;
    }

    .content-container li::before {
        left: 4px;
        font-size: 12px;
    }

    .content-container .table-wrapper {
        margin: 12px -12px;
    }

    .content-container table {
        min-width: 400px;
    }

    .content-container td {
        padding: 6px 8px;
        font-size: 11px;
    }

    .content-container tbody tr:first-child td {
        font-size: 11px;
    }

    .content-container > p:first-of-type {
        padding: 12px;
        font-size: 14px;
        margin-bottom: 16px;
    }
}

/* Animation for smooth loading */
.content-container {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Print styles */
@media print {
    body {
        background: white;
        color: black;
    }

    .content-container {
        background: white;
        box-shadow: none;
        border: 1px solid #ccc;
    }

    .content-container h2, h3 {
        color: black;
    }

    .content-container p, li, td {
        color: black;
    }
}

.faq-section {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 40px;
    text-align: center;
}

.faq-container {
    display: grid;
    gap: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(79, 195, 247, 0.3);
}

.faq-question {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-question:hover {
    background: rgba(79, 195, 247, 0.1);
    color: #4fc3f7;
}

.faq-question.active {
    background: rgba(79, 195, 247, 0.15);
    color: #4fc3f7;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: #4fc3f7;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer.active {
    max-height: 200px;
}

.faq-answer-content {
    padding: 25px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.6;
}

.highlight {
    color: #4fc3f7;
    font-weight: 600;
}

/* Tablet styles */
@media (max-width: 1024px) {
    .faq-section h2 {
        font-size: 1.9rem;
        margin-bottom: 35px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
    }

    .faq-answer-content {
        padding: 20px;
        font-size: 1rem;
    }
}

/* Mobile styles */
@media (max-width: 768px) {

    .faq-section h2 {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .faq-container {
        gap: 15px;
    }

    .faq-question {
        padding: 15px 18px;
        font-size: 0.95rem;
    }

    .faq-icon {
        font-size: 1.3rem;
    }

    .faq-answer-content {
        padding: 18px;
        font-size: 0.95rem;
    }

    .faq-answer.active {
        max-height: 250px;
    }
}

@media (max-width: 480px) {
    .faq-section h2 {
        font-size: 1.4rem;
    }

    .faq-question {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .faq-answer-content {
        padding: 15px;
        font-size: 0.9rem;
    }
}