* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #059669;
    --dark-green: #047857;
    --light-green: #10b981;
    --emerald: #34d399;
    --accent-gold: #fbbf24;
    --bg-light: #f0fdf4;
    --bg-white: #ffffff;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --border-color: #d1fae5;
    --shadow: rgba(5, 150, 105, 0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #f0fdf4 0%, #d1fae5 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    padding: 1rem 0;
    box-shadow: 0 4px 6px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
}

nav a:hover {
    color: var(--accent-gold);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

.hero {
    background: url('hero-bg.jpg') center/cover;
    background-color: var(--dark-green);
    padding: 5rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(4, 120, 87, 0.9) 0%, rgba(5, 150, 105, 0.8) 100%);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

.casinos-section {
    padding: 4rem 0;
}

.casinos-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 3rem;
}

.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.casino-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(5, 150, 105, 0.2);
}

.casino-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-gold);
    color: var(--text-dark);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.casino-badge.popular {
    background: var(--primary-green);
    color: white;
}

.casino-image {
    text-align: center;
    margin-bottom: 1.5rem;
}

.casino-image img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 8px;
}

.casino-card h3 {
    color: var(--dark-green);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.casino-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.stars {
    color: var(--accent-gold);
    font-size: 1.3rem;
}

.rating-value {
    font-weight: 600;
    color: var(--dark-green);
}

.casino-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.casino-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.casino-features li:last-child {
    border-bottom: none;
}

.casino-pros {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.casino-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    margin-top: auto;
}

.casino-btn:hover {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.info-section, .guide-section {
    padding: 4rem 0;
    background: white;
}

.info-section h2, .guide-section h2 {
    text-align: center;
    font-size: 2.3rem;
    color: var(--dark-green);
    margin-bottom: 3rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border-color);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--dark-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.guide-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.05rem;
}

.guide-content p {
    margin-bottom: 1.5rem;
}

.disclaimer-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.disclaimer-box {
    background: white;
    border-left: 5px solid #dc2626;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px var(--shadow);
}

.disclaimer-box h3 {
    color: #dc2626;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.disclaimer-box p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.help-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.help-links a {
    background: var(--primary-green);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s;
}

.help-links a:hover {
    background: var(--dark-green);
}

.faq-section {
    padding: 4rem 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.3rem;
    color: var(--dark-green);
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px var(--shadow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background: var(--bg-light);
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--border-color);
}

.faq-question h3 {
    color: var(--dark-green);
    font-size: 1.2rem;
    margin: 0;
}

.faq-toggle {
    font-size: 1.8rem;
    color: var(--primary-green);
    font-weight: bold;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.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: 1.5rem;
    line-height: 1.8;
}

footer {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--emerald);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
}

.footer-creator {
    margin-top: 1rem;
    font-weight: 600;
}

.footer-contact {
    margin-top: 0.5rem;
}

.footer-contact a {
    color: var(--emerald);
    text-decoration: none;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--emerald);
}

.regulators {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.regulator-item a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.regulator-item a:hover {
    color: var(--emerald);
}

.regulator-item img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-notice {
    margin-top: 0.5rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-modal-content {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
}

.age-modal-content h2 {
    color: var(--dark-green);
    margin-bottom: 1.5rem;
}

.age-modal-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-confirm, .btn-deny {
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-confirm {
    background: var(--primary-green);
    color: white;
}

.btn-confirm:hover {
    background: var(--dark-green);
}

.btn-deny {
    background: #dc2626;
    color: white;
}

.btn-deny:hover {
    background: #b91c1c;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    color: var(--text-dark);
    padding: 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: none;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    max-width: 500px;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookie-icon {
    font-size: 3rem;
    text-align: center;
}

.cookie-text h3 {
    color: var(--dark-green);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.cookie-text p {
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.cookie-text a {
    color: var(--primary-green);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.btn-accept, .btn-decline, .btn-manage {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
    flex: 1;
    min-width: 120px;
}

.btn-accept {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: white;
}

.btn-accept:hover {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.btn-decline {
    background: #f3f4f6;
    color: var(--text-dark);
    border: 2px solid #e5e7eb;
}

.btn-decline:hover {
    background: #e5e7eb;
}

.btn-manage {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-manage:hover {
    background: var(--bg-light);
}

.page-hero {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    padding: 4rem 0 3rem;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.content-section {
    padding: 4rem 0;
    background: white;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    color: var(--dark-green);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper h3 {
    color: var(--primary-green);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.content-wrapper p {
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.content-wrapper ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.content-wrapper ul li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.content-wrapper a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
}

.content-wrapper a:hover {
    text-decoration: underline;
}

.support-org {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-green);
}

.support-org h3 {
    margin-top: 0;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-green);
        padding: 1rem;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .casino-grid {
        grid-template-columns: 1fr;
    }

    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 1.5rem;
        max-width: calc(100% - 20px);
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .btn-accept, .btn-decline, .btn-manage {
        width: 100%;
    }

    .cookie-icon {
        font-size: 2.5rem;
    }

    .age-modal-content {
        margin: 1rem;
        padding: 2rem;
    }

    .age-buttons {
        flex-direction: column;
    }

    .content-wrapper ul {
        margin-left: 1.5rem;
    }
}