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

:root {
    --primary-color: #d4a429;
    --primary-dark: #b88e1f;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --border-color: #e5e7eb;
    --bg-gray: #f9fafb;
    --bg-white: #ffffff;
    --success-color: #059669;
    --warning-color: #d97706;
    --info-color: #4f46e5;
    --footer-bg: #1a1a1a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-gray);
}

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

.site-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-sub {
    font-size: 14px;
    color: var(--text-gray);
}

.main-nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary-color);
}

.hero {
    background: linear-gradient(135deg, #f0f0f0 0%, #ffffff 100%);
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-description {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 16px;
    line-height: 1.7;
}

.hero-disclaimer {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.btn-cta {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(212, 164, 41, 0.3);
}

.btn-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(212, 164, 41, 0.4);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 14px;
    color: var(--text-gray);
}

.casinos-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.casino-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.casino-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
}

.casino-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.casino-main {
    display: flex;
    justify-content: space-between;
    gap: 32px;
}

.casino-info {
    display: flex;
    gap: 24px;
    flex: 1;
}

.casino-logo {
    position: relative;
    flex-shrink: 0;
}

.rank-badge {
    position: absolute;
    top: -8px;
    left: -8px;
    background: var(--success-color);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    border: 3px solid var(--bg-white);
}

.casino-details {
    flex: 1;
}

.casino-details h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.bonus-title {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.votes-count {
    font-size: 14px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-gray);
}

.feature-list svg {
    color: var(--success-color);
}

.casino-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.rating-box {
    text-align: center;
    padding: 20px;
    background: var(--bg-gray);
    border-radius: 12px;
    min-width: 140px;
}

.rating-box .label {
    display: block;
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.rating-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--success-color);
    line-height: 1;
}

.rating-max {
    font-size: 16px;
    color: var(--text-gray);
}

.btn-visit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 2px 6px rgba(212, 164, 41, 0.3);
}

.btn-visit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(212, 164, 41, 0.4);
}

.disclaimer-box {
    background: #fffbeb;
    border: 2px solid #fcd34d;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 16px;
    color: var(--text-dark);
}

.disclaimer-box svg {
    color: var(--warning-color);
    flex-shrink: 0;
}

.disclaimer-box strong {
    display: block;
    margin-bottom: 8px;
}

.disclaimer-box a {
    color: var(--info-color);
    text-decoration: underline;
}

.info-section {
    padding: 80px 0;
    background: var(--bg-gray);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.info-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.info-icon {
    width: 56px;
    height: 56px;
    background: #e0f7f4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--success-color);
}

.info-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.info-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.info-list {
    list-style: none;
}

.info-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-gray);
    line-height: 1.6;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list strong {
    color: var(--text-dark);
}

.faq-section {
    padding: 80px 0;
    background: var(--bg-white);
}

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

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

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    background: var(--bg-white);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: background 0.2s;
}

.faq-question:hover {
    background: var(--bg-gray);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-gray);
    line-height: 1.7;
}

.site-footer {
    background: var(--footer-bg);
    color: #9ca3af;
    padding: 60px 0 24px;
}

.footer-section {
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--bg-white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.payment-methods,
.support-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.payment-badge,
.support-badge {
    background: #2a2a2a;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    color: #d1d5db;
}

.footer-disclaimer {
    margin: 40px 0;
    padding: 24px;
    background: #2a2a2a;
    border-radius: 8px;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.7;
}

.footer-copyright {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #2a2a2a;
}

.footer-copyright p {
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--footer-bg);
    color: var(--bg-white);
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

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

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-primary,
.btn-secondary {
    padding: 10px 24px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--success-color);
    color: white;
}

.btn-primary:hover {
    background: #047857;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid #4b5563;
}

.btn-secondary:hover {
    background: #2a2a2a;
}

.page-header {
    background: linear-gradient(135deg, #f0f0f0 0%, #ffffff 100%);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 18px;
    color: var(--text-gray);
}

.content-section {
    padding: 60px 0;
    background: var(--bg-white);
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
}

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

.content-wrapper h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 12px;
}

.content-wrapper p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: var(--text-gray);
}

.content-wrapper ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.content-wrapper li {
    margin-bottom: 8px;
    line-height: 1.7;
    color: var(--text-gray);
}

.content-wrapper a {
    color: var(--info-color);
    text-decoration: underline;
}

.update-date {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 14px;
}

.age-verification-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.age-modal-content {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 48px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.4s ease-out;
}

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

.age-modal-header {
    margin-bottom: 32px;
}

.age-modal-header svg {
    margin-bottom: 20px;
}

.age-modal-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.age-modal-header p {
    font-size: 16px;
    color: var(--text-gray);
}

.age-modal-body {
    margin-bottom: 32px;
    padding: 20px;
    background: var(--bg-gray);
    border-radius: 12px;
}

.age-modal-body p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.age-modal-footer {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-confirm-age,
.btn-decline-age {
    padding: 14px 32px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-confirm-age {
    background: var(--primary-color);
    color: var(--text-dark);
    box-shadow: 0 4px 12px rgba(212, 164, 41, 0.3);
}

.btn-confirm-age:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 164, 41, 0.4);
}

.btn-decline-age {
    background: #e5e7eb;
    color: var(--text-gray);
}

.btn-decline-age:hover {
    background: #d1d5db;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 16px;
    }

    .main-nav {
        gap: 16px;
        font-size: 14px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .casino-main {
        flex-direction: column;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}
