:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gold-gradient: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
    --dark-bg: #0a0e27;
    --dark-card: #151933;
    --text-primary: #ffffff;
    --text-secondary: #b8c1ec;
    --accent-color: #00f2fe;
    --success-color: #00ff88;
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 30px 90px rgba(0, 0, 0, 0.6);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(245, 87, 108, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: sticky;
    top: 0;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.logo-image {
    height: 50px;
    width: auto;
    display: block;
}

.main-nav {
    flex: 1;
}

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

.nav-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.nav-list a:hover {
    color: var(--text-primary);
}

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

.cta-button {
    display: inline-block;
    padding: 22px 32px;
    background: var(--primary-gradient);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.6);
    color: var(--text-primary);
}

.cta-button:hover::before {
    left: 100%;
}

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
    border-radius: 16px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(20px);
    padding: 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

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

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

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

.mobile-nav-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 12px 0;
    transition: color 0.3s ease;
}

.mobile-nav-list a:hover {
    color: var(--text-primary);
}

.mobile-cta {
    width: 100%;
    text-align: center;
}

.hero-section {
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section h1 {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #b8c1ec 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease;
}

.hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-content {
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

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

.section {
    padding: 80px 0;
    position: relative;
}

.section h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.section-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-intro p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.overview-table-wrapper {
    background: var(--dark-card);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.info-table td {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 16px;
}

.info-table tr:last-child td {
    border-bottom: none;
}

.info-table td:first-child {
    color: var(--text-secondary);
    font-weight: 500;
    width: 35%;
}

.info-table td:last-child {
    color: var(--text-primary);
    font-weight: 600;
}

.overview-text {
    background: rgba(21, 25, 51, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.overview-text p {
    margin-bottom: 20px;
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.overview-text p:last-child {
    margin-bottom: 0;
}

.cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

.registration-guide {
    background: var(--dark-card);
    border-radius: 24px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
}

.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 32px;
}

.steps-list li:last-child {
    margin-bottom: 0;
}

.step-content {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.step-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--primary-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.step-content p {
    flex: 1;
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
    padding-top: 12px;
}

.verification-requirements {
    background: rgba(21, 25, 51, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.verification-requirements p {
    margin-bottom: 20px;
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.verification-requirements p:last-child {
    margin-bottom: 0;
}

.games-categories {
    margin-bottom: 40px;
}

.game-category {
    background: var(--dark-card);
    border-radius: 24px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.game-category:last-child {
    margin-bottom: 0;
}

.category-content p {
    margin-bottom: 30px;
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.game-card {
    background: rgba(21, 25, 51, 0.8);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.3);
}

.game-icon {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 16px;
}

.game-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.game-provider {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.live-casino-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 20px;
    margin: 30px auto;
    display: block;
    box-shadow: var(--shadow-lg);
}

/* Hero Banner */
.hero-banner {
    margin-bottom: 50px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* Security with Image Layout */
.security-with-image {
    display: flex;
    gap: 40px;
    align-items: center;
}

.security-image-side {
    flex-shrink: 0;
    width: 45%;
    max-width: 500px;
}

.security-image-side img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.security-text-side {
    flex: 1;
}

.security-text-side p {
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.security-text-side p:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .security-with-image {
        flex-direction: column;
    }

    .security-image-side {
        width: 100%;
        max-width: 400px;
    }
}

/* Live Casino Providers */
.live-providers-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.live-providers-section h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-align: center;
}

.live-providers-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
    display: block;
}

.live-providers-section p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    text-align: center;
    margin: 0;
}

.strategy-block {
    background: var(--dark-card);
    border-radius: 24px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.strategy-block:last-child {
    margin-bottom: 0;
}

.strategy-text p {
    margin-bottom: 24px;
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.strategy-text p:last-child {
    margin-bottom: 0;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-left: 4px solid;
    border-image: var(--primary-gradient) 1;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
}

.highlight-box h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.highlight-box p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.comparison-item {
    background: rgba(21, 25, 51, 0.8);
    border-radius: 16px;
    padding: 32px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.comparison-item:hover {
    transform: translateY(-4px);
    border-color: rgba(102, 126, 234, 0.3);
}

.comparison-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.comparison-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-item li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.comparison-item li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.strategy-comparison p {
    margin-top: 30px;
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.payment-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--dark-card);
    border-radius: 20px;
    overflow: hidden;
}

.payment-table thead {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
}

.payment-table th {
    padding: 20px 24px;
    text-align: left;
    font-weight: 700;
    font-size: 15px;
    color: var(--text-primary);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.payment-table td {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 15px;
    color: var(--text-secondary);
}

.payment-table tbody tr:hover {
    background: rgba(102, 126, 234, 0.05);
}

.payment-table tbody tr:last-child td {
    border-bottom: none;
}

.payment-text {
    background: rgba(21, 25, 51, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-text p {
    margin-bottom: 24px;
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.payment-text p:last-child {
    margin-bottom: 0;
}

.withdrawal-process {
    background: var(--dark-card);
    border-radius: 24px;
    padding: 50px;
    margin-top: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.withdrawal-content p {
    margin-bottom: 30px;
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.withdrawal-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.timeline-item {
    background: rgba(21, 25, 51, 0.8);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-4px);
    border-color: rgba(102, 126, 234, 0.3);
}

.timeline-label {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-weight: 500;
}

.timeline-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-box {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 242, 254, 0.1) 100%);
    border-left: 4px solid var(--success-color);
    border-radius: 12px;
    padding: 24px;
    margin: 30px 0;
}

.info-box p {
    margin: 0;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.info-box strong {
    color: var(--success-color);
    font-weight: 700;
}

.security-features {
    margin-bottom: 40px;
}

.security-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 20px;
    margin: 30px auto;
    display: block;
    box-shadow: var(--shadow-lg);
}

.security-features p {
    margin-bottom: 24px;
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.security-features p:last-child {
    margin-bottom: 0;
}

.responsible-gaming p {
    margin-bottom: 30px;
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.tool-card {
    background: rgba(21, 25, 51, 0.8);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-4px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2);
}

.tool-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.tool-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.data-protection p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0;
}

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

.faq-item {
    background: var(--dark-card);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(102, 126, 234, 0.3);
}

.faq-question {
    font-size: 20px;
    font-weight: 700;
    padding: 28px 32px;
    margin: 0;
    cursor: pointer;
    position: relative;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

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

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

.faq-answer p {
    padding: 0 32px 28px;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

.footer {
    background: rgba(10, 14, 39, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

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

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-text p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 8px;
}

.disclaimer {
    color: rgba(184, 193, 236, 0.6);
    font-size: 13px;
}

@media (max-width: 1024px) {
    .hero-section h1 {
        font-size: 48px;
    }

    .section h2 {
        font-size: 40px;
    }

    .nav-list {
        gap: 20px;
    }

    .nav-list a {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .main-nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-section {
        padding: 80px 0 60px;
    }

    .hero-section h1 {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section {
        padding: 60px 0;
    }

    .section h2 {
        font-size: 32px;
    }

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

    .overview-table-wrapper,
    .registration-guide,
    .game-category,
    .strategy-block,
    .withdrawal-process {
        padding: 30px 20px;
    }

    .info-table td {
        padding: 16px;
        font-size: 14px;
        display: block;
        border-bottom: none;
    }

    .info-table td:first-child {
        font-weight: 700;
        padding-bottom: 8px;
        width: 100%;
    }

    .info-table td:last-child {
        padding-top: 0;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .info-table tr:last-child td:last-child {
        border-bottom: none;
    }

    .step-content {
        flex-direction: column;
        gap: 16px;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .step-content p {
        padding-top: 0;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 16px;
    }

    .game-icon {
        height: 140px;
    }

    .comparison-grid,
    .tools-grid,
    .withdrawal-timeline {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .payment-table th,
    .payment-table td {
        padding: 12px 16px;
    }

    .faq-question {
        font-size: 17px;
        padding: 20px 24px;
        padding-right: 50px;
    }

    .faq-question::after {
        right: 24px;
        font-size: 24px;
    }

    .faq-answer p {
        padding: 0 24px 20px;
        font-size: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 28px;
    }

    .hero-description {
        font-size: 15px;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 16px;
    }

    .section h2 {
        font-size: 28px;
    }

    .section h3 {
        font-size: 22px;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }

    .hero-section h1 {
        font-size: 24px;
    }

    .hero-description {
        font-size: 14px;
    }

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

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

    .cta-button {
        padding: 20px 24px;
        font-size: 14px;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 14px;
    }
}

/* Контрастность для светлых блоков */
.bg-light {
    background-color: #f8f9fa !important;
}

.bg-light .card-text,
.bg-light p,
.bg-light li {
    color: #212529 !important;
}

.bg-light .h5,
.bg-light .h6,
.bg-light h3,
.bg-light h4 {
    color: #212529 !important;
}

.text-primary {
    color: #0d6efd !important;
}

/* Контрастность для таблиц */
.table-light th {
    background-color: #f8f9fa !important;
    color: #212529 !important;
}

.table-light td {
    color: #212529 !important;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Payment Methods Image Banner */
.payment-methods-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 30px 0;
    display: block;
    box-shadow: var(--shadow-lg);
}

/* USDT Payment Section */
.usdt-payment-section {
    background: linear-gradient(135deg, rgba(38, 161, 123, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
    border-radius: 20px;
    padding: 40px;
    margin-top: 30px;
    border: 2px solid rgba(38, 161, 123, 0.3);
    display: flex;
    gap: 40px;
    align-items: center;
}

.usdt-payment-section .usdt-image-wrapper {
    flex-shrink: 0;
    width: 350px;
}

.usdt-payment-section .usdt-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.usdt-payment-section .usdt-content {
    flex: 1;
}

.usdt-payment-section .usdt-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #26a17b;
}

.usdt-payment-section .usdt-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.usdt-payment-section .usdt-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.usdt-payment-section .usdt-feature {
    background: rgba(38, 161, 123, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    border: 1px solid rgba(38, 161, 123, 0.2);
}

.usdt-payment-section .usdt-feature strong {
    color: #26a17b;
    font-size: 14px;
    display: block;
    margin-bottom: 4px;
}

.usdt-payment-section .usdt-feature span {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
}

@media (max-width: 900px) {
    .usdt-payment-section {
        flex-direction: column;
        text-align: center;
    }

    .usdt-payment-section .usdt-image-wrapper {
        width: 100%;
        max-width: 400px;
    }

    .usdt-payment-section .usdt-features {
        grid-template-columns: 1fr;
    }
}

/* Auth Blocks - Login & Registration */
.auth-blocks {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 50px;
}

.auth-block {
    display: flex;
    gap: 50px;
    align-items: center;
    background: var(--dark-card);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.auth-block.registration-block {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.auth-image-wrapper {
    flex-shrink: 0;
    width: 280px;
}

.auth-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.auth-content {
    flex: 1;
}

.auth-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.auth-content p:last-child {
    margin-bottom: 0;
}

.auth-features,
.auth-steps {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.auth-features li,
.auth-steps li {
    padding: 12px 0 12px 28px;
    position: relative;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.auth-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.auth-steps {
    counter-reset: auth-step;
}

.auth-steps li {
    counter-increment: auth-step;
}

.auth-steps li::before {
    content: counter(auth-step);
    position: absolute;
    left: 0;
    width: 22px;
    height: 22px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: white;
}

.auth-features li strong,
.auth-steps li strong {
    color: var(--text-primary);
}

@media (max-width: 900px) {
    .auth-block {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .auth-block.registration-block {
        flex-direction: column;
    }

    .auth-image-wrapper {
        width: 100%;
        max-width: 280px;
        order: -1;
    }

    .auth-features li,
    .auth-steps li {
        text-align: left;
    }
}
