:root {
    --accent-purple: #9c27b0;
    --text-white: #ffffff;
    --accent-red: #dc3545;
    --text-gray: #b0bec5;
    --border-color: rgba(255, 255, 255, 0.1);
    --primary: #2d1b69;
    --primary-dark: #1a0e42;
    --text-light: #f8f9fa;
    --accent-gold: #9c27b0;
    --text-dark-gray: #495057;
    --primary-light: #3f2a7a;
    --gradient-start: #2d1b69;
    --gradient-end: #1a0e42;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--primary);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

.text-gold {
    color: var(--accent-gold);
}

.text-white {
    color: var(--text-white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-description {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 50;
    backdrop-filter: blur(10px);
}

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

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: 'Oswald', sans-serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.desktop-nav {
    display: none;
}

.nav-link {
    color: var(--text-white);
    margin-left: 2rem;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--accent-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-button button {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-menu-button button:hover {
    color: var(--accent-gold);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    padding: 1rem 0;
}

.mobile-nav .nav-link {
    margin-left: 0;
    padding: 0.5rem 0;
}

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

/* Hero Banner */
.hero-banner {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(15, 52, 96, 0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-title span {
    display: block;
    margin-bottom: 0.5rem;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.hero-cta {
    margin-top: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent-gold), #e0a800);
    color: var(--primary-dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

/* Casinos Section */
.casinos-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--primary), var(--primary-light));
}

.casinos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.casino-card {
    background: linear-gradient(135deg, #1e1e3f, #2a2a5a);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.casino-card.featured {
    border: 2px solid var(--accent-gold);
    background: linear-gradient(135deg, #2a2a5a, #1e1e3f);
}

.casino-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-gold), #e0a800);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.casino-badge.secondary {
    background: linear-gradient(135deg, var(--accent-green), #1e7e34);
    color: white;
}

.casino-badge.tertiary {
    background: linear-gradient(135deg, #6f42c1, #5a2d91);
    color: white;
}

.casino-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.casino-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 10px;
    background: white;
    padding: 5px;
}

.casino-rating {
    text-align: right;
}

.stars {
    color: var(--accent-gold);
    margin-bottom: 0.25rem;
}

.rating-text {
    font-weight: 600;
    color: var(--text-white);
}

.casino-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.casino-bonus {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(224, 168, 0, 0.2));
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.bonus-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.25rem;
}

.bonus-type {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.casino-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.casino-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.casino-features li i {
    color: var(--accent-green);
    margin-right: 0.5rem;
    width: 16px;
}

.casino-payment {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.casino-payment span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.payment-icons {
    display: flex;
    gap: 0.5rem;
}

.payment-icons i {
    font-size: 1.5rem;
    color: var(--text-gray);
}

.casino-footer {
    text-align: center;
}

.casino-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent-gold), #e0a800);
    color: var(--primary-dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.casino-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.casino-terms {
    font-size: 0.8rem;
    color: var(--text-gray);
    line-height: 1.4;
}

.casino-disclaimer {
    background: rgba(50, 50, 50, 0.5);
    color: #e6f2ef;
    font-size: 0.75rem;
    line-height: 1.5;
    padding: 14px 16px;
    font-weight: 700;
    margin-top: 16px;
    border-radius: 6px;
    word-wrap: break-word;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.casino-disclaimer a {
    color: #3fc17f;
    text-decoration: none;
}

.casino-disclaimer a:hover {
    text-decoration: underline;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--primary-dark);
}

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

.about-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-gray);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-icon {
    background: linear-gradient(135deg, var(--accent-gold), #e0a800);
    color: var(--primary-dark);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h3 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--primary-light), var(--primary));
}

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

.faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 15px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

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

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin: 0;
}

.faq-icon {
    color: var(--accent-gold);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.6;
    display: none;
}

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

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

/* Responsible Gaming Section */
.responsible-section {
    padding: 5rem 0;
    background: var(--primary-dark);
    text-align: center;
}

.responsible-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-gray);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.responsible-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.responsible-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.responsible-item h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.responsible-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.responsible-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.responsible-logo {
    height: 60px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.responsible-logo:hover {
    opacity: 1;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a1a, #1a1a2e);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-description {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: var(--text-gray);
    transition: color 0.3s ease;
}

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

.footer-contact p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

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

.footer-bottom p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-disclaimer {
    font-size: 0.8rem !important;
    opacity: 0.8;
}

/* Responsive Design */
@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
    
    .mobile-menu-button {
        display: none;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .casinos-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .responsible-info {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.casino-card {
    animation: fadeInUp 0.6s ease-out;
}

.casino-card:nth-child(2) {
    animation-delay: 0.2s;
}

.casino-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Loading states */
.casino-card:hover .casino-logo {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print styles */
@media print {
    .header, .footer, .hero-banner {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}
