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

:root {
    --primary-color: #2a9d8f;
    --secondary-color: #e76f51;
    --accent-color: #f4a261;
    --dark-bg: #1a1a1a;
    --light-bg: #2d2d2d;
    --text-dark: #e0e0e0;
    --text-light: #b0b0b0;
    --white: #1e1e1e;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.6);
    --card-bg: #252525;
    --section-bg: #222222;
}

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

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

/* Header */
.header {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
}

.logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.age-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    opacity: 0.9;
}

.age-badge {
    background: var(--secondary-color);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--text-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>') repeat;
    animation: float 20s linear infinite;
}

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

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

.date-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(42, 157, 143, 0.3);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 700px;
}

.features-list {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
}

.feature-icon {
    font-size: 24px;
}

/* Casino Cards */
.casinos {
    padding: 60px 0;
    background: var(--section-bg);
}

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

.casino-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid rgba(42, 157, 143, 0.3);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

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

.casino-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.casino-rating {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stars {
    color: #ffc107;
    font-size: 20px;
    letter-spacing: 2px;
}

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

.rating-reviews {
    font-size: 14px;
    color: var(--text-light);
}

.casino-logo {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
    border-radius: 8px;
}

.casino-bonus {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
}

.bonus-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.bonus-subtitle {
    font-size: 14px;
    opacity: 0.9;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--secondary-color), #e63946);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    margin-top: auto;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(230, 111, 81, 0.4);
}

.cta-icon {
    font-size: 24px;
}

.payment-methods {
    text-align: center;
    opacity: 0.8;
}

.payment-icons {
    max-width: 100%;
    height: auto;
}

/* Section Styles */
section {
    padding: 60px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 16px;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: var(--secondary-color);
    position: relative;
}

/* About Section */
.about {
    background: var(--section-bg);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

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

/* Expert Reviews */
.expert-reviews {
    background: var(--section-bg);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(42, 157, 143, 0.2);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.review-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.review-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.review-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Player Reviews */
.player-reviews {
    background: var(--section-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(42, 157, 143, 0.2);
}

.testimonial-header {
    margin-bottom: 15px;
}

.testimonial-header .stars {
    color: #ffc107;
    font-size: 16px;
    margin-bottom: 5px;
}

.author {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 16px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
}

/* Responsible Gambling */
.responsible-gambling {
    background: var(--section-bg);
}

.responsible-content {
    max-width: 900px;
    margin: 0 auto;
}

.content-notice {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 18px;
    margin-bottom: 20px;
}

.responsible-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.disclaimer {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.support-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 40px 0;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid rgba(42, 157, 143, 0.2);
}

.support-logos a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-logos img {
    width: 120px;
    height: 60px;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: brightness(0.9);
}

.support-logos img:hover {
    opacity: 1;
    filter: brightness(1.1);
    transform: scale(1.05);
}

.addiction-info {
    margin-top: 40px;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid rgba(42, 157, 143, 0.2);
}

.addiction-info h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.addiction-info h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin: 20px 0 10px;
}

/* Footer */
.footer {
    background: #0f0f0f;
    color: var(--text-dark);
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-contact {
    font-size: 14px;
    opacity: 0.8;
}

.footer-contact p {
    margin: 5px 0;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

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

    .features-list {
        flex-direction: column;
        gap: 15px;
    }

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

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

    .reviews-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }

    .support-logos {
        gap: 15px;
    }

    .support-logos img {
        width: 100px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .age-notice {
        flex-direction: column;
        gap: 5px;
    }

    .hero {
        padding: 40px 0;
    }

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

    .casino-card {
        padding: 20px;
    }

    .casino-name {
        font-size: 24px;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}
