/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

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

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.logo-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    color: white;
    margin-top: 80px;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #fff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
        opacity: 0.9;
        line-height: 1.6;
    }

    .hero-description {
        font-size: 1.125rem;
        margin-bottom: 2rem;
        opacity: 0.85;
        line-height: 1.7;
        max-width: 90%;
    }

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #f59e0b, #f97316);
    color: white;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

    .hero-image {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .hero-decoration {
        position: relative;
        width: 200px;
        height: 200px;
    }

    .decoration-circle {
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        animation: float 6s ease-in-out infinite;
    }

    .decoration-circle:nth-child(1) {
        width: 80px;
        height: 80px;
        top: 20px;
        left: 20px;
        animation-delay: 0s;
    }

    .decoration-circle:nth-child(2) {
        width: 60px;
        height: 60px;
        top: 80px;
        right: 30px;
        animation-delay: 2s;
    }

    .decoration-circle:nth-child(3) {
        width: 40px;
        height: 40px;
        bottom: 40px;
        left: 50px;
        animation-delay: 4s;
    }

    @keyframes float {
        0%, 100% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-20px);
        }
    }

    .age-restriction {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

/* Casino Section */
.casino-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

    .section-subtitle {
        text-align: center;
        font-size: 1.125rem;
        color: #64748b;
        margin-bottom: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .casino-intro {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 3rem;
        padding: 0 1rem;
    }

    .casino-intro p {
        color: #64748b;
        line-height: 1.7;
        margin-bottom: 1rem;
        font-size: 1.0625rem;
    }

    .casino-intro p:last-child {
        margin-bottom: 0;
    }

.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.casino-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.casino-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.casino-image {
    text-align: center;
    margin-bottom: 1.5rem;
}

.casino-logo {
    max-width: 120px;
    max-height: 80px;
    object-fit: contain;
}

.casino-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    text-align: center;
}

.casino-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: #fbbf24;
    font-size: 1.25rem;
}

.rating-text {
    font-weight: 600;
    color: #64748b;
}

.casino-description {
    color: #64748b;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.6;
}

.casino-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.feature {
    background: linear-gradient(45deg, #dbeafe, #bfdbfe);
    color: #1e40af;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.btn-casino {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    width: 100%;
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-casino:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

/* Safety Section */
.safety-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.safety-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.safety-text h2 {
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.safety-text p {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

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

.safety-list li {
    color: #374151;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.safety-image {
    text-align: center;
}

    .responsible-gaming {
        max-width: 300px;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    /* Advantages Section */
    .advantages-section {
        padding: 80px 0;
        background: white;
    }

    .advantages-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .advantage-card {
        background: white;
        border-radius: 20px;
        padding: 2.5rem 2rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        border: 1px solid #e2e8f0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .advantage-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(45deg, #3b82f6, #8b5cf6);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .advantage-card:hover::before {
        transform: scaleX(1);
    }

    .advantage-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

    .advantage-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 1.5rem;
        background: linear-gradient(135deg, #dbeafe, #bfdbfe);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .advantage-icon svg {
        width: 40px;
        height: 40px;
        color: #1e40af;
        stroke-width: 2;
    }

    .advantage-card:hover .advantage-icon {
        background: linear-gradient(135deg, #3b82f6, #8b5cf6);
        transform: scale(1.1);
    }

    .advantage-card:hover .advantage-icon svg {
        color: white;
    }

    .advantage-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 1rem;
    }

    .advantage-description {
        color: #64748b;
        line-height: 1.6;
        font-size: 1rem;
    }

    /* FAQ Section */
    .faq-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    }

    .faq-container {
        max-width: 800px;
        margin: 3rem auto 0;
    }

    .faq-item {
        background: white;
        border-radius: 16px;
        margin-bottom: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
    }

    .faq-question {
        padding: 1.5rem 2rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: white;
        transition: background-color 0.3s ease;
    }

    .faq-question:hover {
        background-color: #f8fafc;
    }

    .faq-question h3 {
        font-size: 1.125rem;
        font-weight: 600;
        color: #1e293b;
        margin: 0;
        flex: 1;
    }

    .faq-toggle {
        font-size: 1.5rem;
        font-weight: 700;
        color: #3b82f6;
        transition: all 0.3s ease;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #dbeafe;
    }

    .faq-item.active .faq-toggle {
        transform: rotate(45deg);
        background: #3b82f6;
        color: white;
    }

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

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

    .faq-answer p {
        padding: 0 2rem 1.5rem;
        margin: 0;
        color: #64748b;
        line-height: 1.6;
    }

    /* Age Notice Section */
    .age-notice-section {
        padding: 60px 0;
        background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    }

    .age-notice-content {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 3rem;
        align-items: center;
        text-align: center;
    }

    .age-notice-text h3 {
        font-size: 1.75rem;
        font-weight: 700;
        color: #92400e;
        margin-bottom: 1rem;
    }

    .age-notice-text p {
        color: #78350f;
        font-size: 1.125rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .age-notice-text a {
        color: #dc2626;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .age-notice-text a:hover {
        color: #991b1b;
        text-decoration: underline;
    }

    .age-notice-image {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .age-restriction-large {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease;
    }

    .age-restriction-large:hover {
        transform: scale(1.1);
    }

    /* Partner Links Section */
    .partner-links-section {
        padding: 20px 0;
        background: linear-gradient(135deg, #737577 0%, #495a71 100%);
        border-top: 1px solid #e2e8f0;
    }

    .responsible-gaming-partners {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        flex-wrap: wrap;
    }

    .partner-link {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .partner-link:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }

    .partner-logo {
        max-width: 120px;
        max-height: 80px;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

    .partner-link:hover .partner-logo {
        transform: scale(1.05);
    }

    /* Cookie Banner */
    .cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
        color: white;
        padding: 1.5rem 0;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
        z-index: 9999;
        transform: translateY(100%);
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        border-top: 3px solid #3b82f6;
    }

    .cookie-banner.show {
        transform: translateY(0);
    }

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

    .cookie-text h4 {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: #fbbf24;
    }

    .cookie-text p {
        color: #cbd5e1;
        line-height: 1.5;
        margin: 0;
        max-width: 500px;
    }

    .cookie-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        align-items: center;
    }

    .btn-cookie {
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 0.875rem;
        white-space: nowrap;
    }

    .btn-accept {
        background: linear-gradient(45deg, #10b981, #059669);
        color: white;
    }

    .btn-accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    }

    .btn-reject {
        background: transparent;
        color: #ef4444;
        border: 2px solid #ef4444;
    }

    .btn-reject:hover {
        background: #ef4444;
        color: white;
        transform: translateY(-2px);
    }

    .btn-info {
        background: transparent;
        color: #3b82f6;
        border: 2px solid #3b82f6;
    }

    .btn-info:hover {
        background: #3b82f6;
        color: white;
        transform: translateY(-2px);
    }

    /* Cookie Policy Page */
    .cookie-policy-section {
        padding: 120px 0 80px;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        min-height: 100vh;
    }

    .cookie-policy-content {
        max-width: 800px;
        margin: 0 auto;
        background: white;
        border-radius: 20px;
        padding: 3rem;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    }

    .cookie-policy-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1e293b;
        text-align: center;
        margin-bottom: 2rem;
        background: linear-gradient(45deg, #3b82f6, #8b5cf6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .cookie-policy-text h2 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1e293b;
        margin: 2rem 0 1rem;
        padding-top: 1rem;
        border-top: 2px solid #e2e8f0;
    }

    .cookie-policy-text h3 {
        font-size: 1.25rem;
        font-weight: 600;
        color: #374151;
        margin: 1.5rem 0 0.75rem;
    }

    .cookie-policy-text p {
        color: #64748b;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .cookie-policy-text ul {
        color: #64748b;
        line-height: 1.7;
        margin: 1rem 0 1.5rem 1.5rem;
    }

    .cookie-policy-text li {
        margin-bottom: 0.5rem;
    }

    .cookie-policy-text strong {
        color: #374151;
    }

    .cookie-policy-actions {
        display: flex;
        gap: 1rem;
        justify-content: center;
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 2px solid #e2e8f0;
    }

    /* Privacy Policy Page */
    .privacy-policy-section {
        padding: 120px 0 80px;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        min-height: 100vh;
    }

    .privacy-policy-content {
        max-width: 800px;
        margin: 0 auto;
        background: white;
        border-radius: 20px;
        padding: 3rem;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    }

    .privacy-policy-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1e293b;
        text-align: center;
        margin-bottom: 2rem;
        background: linear-gradient(45deg, #3b82f6, #8b5cf6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .privacy-policy-text h2 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1e293b;
        margin: 2rem 0 1rem;
        padding-top: 1rem;
        border-top: 2px solid #e2e8f0;
    }

    .privacy-policy-text h3 {
        font-size: 1.25rem;
        font-weight: 600;
        color: #374151;
        margin: 1.5rem 0 0.75rem;
    }

    .privacy-policy-text p {
        color: #64748b;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .privacy-policy-text ul {
        color: #64748b;
        line-height: 1.7;
        margin: 1rem 0 1.5rem 1.5rem;
    }

    .privacy-policy-text li {
        margin-bottom: 0.5rem;
    }

    .privacy-policy-text strong {
        color: #374151;
    }

    .privacy-policy-actions {
        display: flex;
        gap: 1rem;
        justify-content: center;
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 2px solid #e2e8f0;
    }

    /* Responsible Gaming Page */
    .responsible-gaming-section {
        padding: 120px 0 80px;
        background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        min-height: 100vh;
    }

    .responsible-gaming-content {
        max-width: 800px;
        margin: 0 auto;
        background: white;
        border-radius: 20px;
        padding: 3rem;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    }

    .responsible-gaming-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1e293b;
        text-align: center;
        margin-bottom: 2rem;
        background: linear-gradient(45deg, #0ea5e9, #0284c7);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .responsible-gaming-text h2 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1e293b;
        margin: 2rem 0 1rem;
        padding-top: 1rem;
        border-top: 2px solid #e0f2fe;
    }

    .responsible-gaming-text h3 {
        font-size: 1.25rem;
        font-weight: 600;
        color: #0c4a6e;
        margin: 1.5rem 0 0.75rem;
    }

    .responsible-gaming-text p {
        color: #64748b;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .responsible-gaming-text ul {
        color: #64748b;
        line-height: 1.7;
        margin: 1rem 0 1.5rem 1.5rem;
    }

    .responsible-gaming-text li {
        margin-bottom: 0.5rem;
    }

    .responsible-gaming-text strong {
        color: #0c4a6e;
    }

    .responsible-gaming-actions {
        display: flex;
        gap: 1rem;
        justify-content: center;
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 2px solid #e0f2fe;
    }

    /* Terms and Conditions Page */
    .terms-section {
        padding: 120px 0 80px;
        background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
        min-height: 100vh;
    }

    .terms-content {
        max-width: 800px;
        margin: 0 auto;
        background: white;
        border-radius: 20px;
        padding: 3rem;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    }

    .terms-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1e293b;
        text-align: center;
        margin-bottom: 2rem;
        background: linear-gradient(45deg, #eab308, #ca8a04);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .terms-text h2 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1e293b;
        margin: 2rem 0 1rem;
        padding-top: 1rem;
        border-top: 2px solid #fef3c7;
    }

    .terms-text h3 {
        font-size: 1.25rem;
        font-weight: 600;
        color: #92400e;
        margin: 1.5rem 0 0.75rem;
    }

    .terms-text p {
        color: #64748b;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .terms-text ul {
        color: #64748b;
        line-height: 1.7;
        margin: 1rem 0 1.5rem 1.5rem;
    }

    .terms-text li {
        margin-bottom: 0.5rem;
    }

    .terms-text strong {
        color: #92400e;
    }

    .terms-actions {
        display: flex;
        gap: 1rem;
        justify-content: center;
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 2px solid #fef3c7;
    }

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.footer-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fbbf24;
}

.footer-section p {
    color: #cbd5e1;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
        margin-top: 70px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .casino-intro {
        margin: 0 auto 2rem;
        padding: 0 0.5rem;
    }

    .casino-intro p {
        font-size: 1rem;
    }
    
    .casino-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .casino-card {
        padding: 1.5rem;
    }
    
    .safety-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .advantage-card {
        padding: 2rem 1.5rem;
    }

    .faq-container {
        margin: 2rem auto 0;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .age-notice-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .responsible-gaming-partners {
        gap: 2rem;
        flex-direction: column;
    }

    .partner-link {
        width: 100%;
        max-width: 300px;
    }

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

    .cookie-text p {
        max-width: 100%;
    }

    .cookie-buttons {
        justify-content: center;
        gap: 0.75rem;
    }

    .btn-cookie {
        padding: 0.625rem 1.25rem;
        font-size: 0.8rem;
    }

    .cookie-policy-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .cookie-policy-title {
        font-size: 2rem;
    }

    .cookie-policy-text h2 {
        font-size: 1.25rem;
    }

    .cookie-policy-text h3 {
        font-size: 1.125rem;
    }

    .cookie-policy-actions {
        flex-direction: column;
        align-items: center;
    }

    .privacy-policy-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .privacy-policy-title {
        font-size: 2rem;
    }

    .privacy-policy-text h2 {
        font-size: 1.25rem;
    }

    .privacy-policy-text h3 {
        font-size: 1.125rem;
    }

    .privacy-policy-actions {
        flex-direction: column;
        align-items: center;
    }

    .responsible-gaming-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .responsible-gaming-title {
        font-size: 2rem;
    }

    .responsible-gaming-text h2 {
        font-size: 1.25rem;
    }

    .responsible-gaming-text h3 {
        font-size: 1.125rem;
    }

    .responsible-gaming-actions {
        flex-direction: column;
        align-items: center;
    }

    .terms-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .terms-title {
        font-size: 2rem;
    }

    .terms-text h2 {
        font-size: 1.25rem;
    }

    .terms-text h3 {
        font-size: 1.125rem;
    }

    .terms-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .casino-card {
        padding: 1rem;
    }
    
    .casino-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature {
        width: 100%;
        text-align: center;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus {
    outline: 3px solid #3b82f6;
    outline-offset: 2px;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img[src] {
    opacity: 1;
}

/* Hover effects for interactive elements */
.casino-card:hover .casino-logo {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
