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

:root {
    /* Color Variables */
    --primary: hsl(221, 83%, 53%);
    --secondary: hsl(45, 93%, 47%);
    --accent: hsl(160, 84%, 39%);
    --background: hsl(0, 0%, 100%);
    --muted-background: hsl(210, 40%, 98%);
    --foreground: hsl(240, 10%, 15%);
    --muted-foreground: hsl(215, 16%, 47%);
    --border: hsl(214, 32%, 91%);
    --card: hsl(0, 0%, 100%);
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    font-size: 16px;
}

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

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Header */
.header {
    background: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 4px solid var(--secondary);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-text h1 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.logo-text p {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin: 0;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-desktop a {
    color: var(--muted-foreground);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    cursor: pointer;
}

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

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn .close-icon {
    display: none;
}

.mobile-menu-btn.active .menu-icon {
    display: none;
}

.mobile-menu-btn.active .close-icon {
    display: block;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile a {
    color: var(--muted-foreground);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.2s;
    cursor: pointer;
}

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


.logo-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.casino-logo-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.support-icon-img {
    width: 200px;
    height: 100px;
    object-fit: contain;
}


/* Hero Section */
.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
    text-align: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('img/fon.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: 0.9;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 4rem;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 5rem;
    }
}

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

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero p {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 0.5rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--secondary);
    color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    background: hsl(45, 93%, 42%);
    transform: translateY(-2px);
    box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.scroll-indicator {
    margin-top: 2rem;
}

.arrow-down {
    font-size: 2rem;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .section-header h2 {
        font-size: 4rem;
    }
}

.section-header p {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
}

/* Casino Listings */
.casinos {
    padding: 4rem 0;
    background: #aff6f1;
}

@media (min-width: 1024px) {
    .casinos {
        padding: 5rem 0;
    }
}

.casino-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.casino-card {
    background: #aff6f1;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid black;
    padding: 2rem;
    transition: all 0.3s;
    flex: 1;
}

@media (min-width: 1024px) {
    .casino-card {
        padding: 3rem;
    }
}

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

.casino-content {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 2rem;
    text-align: left;
}

@media (min-width: 1024px) {
    .casino-content {
        display: grid;
        grid-template-columns: auto 1fr 240px;
        gap: 2rem;
        align-items: center;
        text-align: left;
    }
}

.casino-logo {
    width: 6rem;
    height: 6rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .casino-logo {
        width: 8rem;
        height: 8rem;
    }
}

.rizk-logo {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
}

.rizk-logo span {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    transform: rotate(-12deg);
}

@media (min-width: 1024px) {
    .rizk-logo span {
        font-size: 4rem;
    }
}

.betgrouse-logo {
    background: linear-gradient(135deg, var(--accent), #27ae60);
}

.betgrouse-logo .logo-content {
    text-align: center;
    color: white;
}

.betgrouse-logo .lightning {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.betgrouse-logo .text {
    font-size: 0.875rem;
    font-weight: 700;
}

@media (min-width: 1024px) {
    .betgrouse-logo .lightning {
        font-size: 2.5rem;
    }
    
    .betgrouse-logo .text {
        font-size: 1rem;
    }
}

.casino-info {
    flex: 1;
}

.casino-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .casino-info h3 {
        font-size: 2rem;
    }
}

.features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--muted-foreground);
}

@media (min-width: 1024px) {
    .features li {
        justify-content: flex-start;
    }
}

.check {
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.casino-bonus {
    flex-shrink: 0;
    text-align: center;
}

.bonus-card {
    padding: 1.5rem;
    border-radius: 0.75rem;
    color: white;
    margin-bottom: 0.75rem;
    width: 100%;
    box-sizing: border-box;
}

.rizk-bonus {
    background: linear-gradient(135deg, var(--secondary), #f39c12);
}

.betgrouse-bonus {
    background: linear-gradient(135deg, var(--accent), #27ae60);
}

.bonus-label {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
    .bonus-amount {
        font-size: 2rem;
    }
}

.bonus-extra {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.bonus-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 700;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.bonus-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.disclaimer {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin: 0;
}

/* About Section */
.about {
    padding: 4rem 0;
    background: #f2ffef;
}

@media (min-width: 1024px) {
    .about {
        padding: 5rem 0;
    }
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .about-content h2 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .about-content h2 {
        font-size: 4rem;
    }
}

.about-image {
    margin-bottom: 3rem;
}

.about-image img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.about-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: left;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-mission h3,
.about-why h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.about-mission p {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.feature-highlight h4 {
    font-weight: 600;
    color: var(--foreground);
    margin: 0;
}

.feature-highlight p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0;
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.star {
    color: var(--secondary);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.why-list strong {
    color: var(--foreground);
}

.why-list span {
    color: var(--muted-foreground);
}

.about-text {
    text-align: left;
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

.about-text p {
    margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background: #aff6f1;
}

@media (min-width: 1024px) {
    .faq {
        padding: 5rem 0;
    }
}

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

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

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

.faq-question span:first-child {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    padding-right: 1rem;
}

.faq-icon {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 1rem;
    border-top: 1px solid #e2e8f0;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin: 0;
}

/* Responsible Gaming Section */
.responsible {
    padding: 4rem 0;
    background: #f2ffef;
}

@media (min-width: 1024px) {
    .responsible {
        padding: 5rem 0;
    }
}

.responsible-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.responsible .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
}

.age-badge {
    width: 6rem;
    height: 6rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.responsible .section-header h2 {
    margin-bottom: 1rem;
}

.reminders-card {
    background: #f2ffef;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.reminders-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.reminders-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .reminders-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.reminder {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    text-align: left;
}

.reminder-icon {
    color: var(--secondary);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.reminder span:last-child {
    color: var(--muted-foreground);
}

.support-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 2rem;
}

.support-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 1024px) {
    .support-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.support-card {
    background: #f2ffef;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    text-align: center;
    position: relative;
    display: block;
}

.support-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px) scale(1.05);
}

.support-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.support-card h4 {
    font-weight: 600;
    color: var(--foreground);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.support-card p {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
}

.external-link {
    color: var(--primary);
    transition: color 0.3s;
}

.support-card:hover .external-link {
    color: var(--secondary);
}

/* Footer */
.footer {
    background: var(--primary);
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.footer-logo .logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    max-width: 400px;
}

.copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-links h4,
.footer-legal h4 {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    cursor: pointer;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: white;
}

.footer-support {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-support h4 {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.support-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.support-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.3s;
}

.support-links a:hover {
    color: white;
}

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

/* Utility classes */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.hidden {
    display: none;
}

/* Responsive improvements */
@media (max-width: 640px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .casino-card {
        padding: 1.5rem;
    }
    
    .casino-logo {
        width: 5rem;
        height: 5rem;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
}