:root {
    --neon-blue: #00ffff;
    --neon-purple: #9d00ff;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --border-color: #333333;
    --primary: #0a0a0a;
    --primary-dark: #000000;
    --text-light: #e0e0e0;
    --accent-gold: #ffd700;
    --text-dark-gray: #666666;
    --primary-light: #1a1a1a;
    --gradient-start: #000000;
    --gradient-end: #1a1a1a;
    --cyber-green: #00ff41;
    --cyber-red: #ff0040;
    --cyber-orange: #ff8c00;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo 2', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 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);
}

.text-neon {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

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

.section-title {
    font-size: 2.8rem;
    margin-bottom: 0.75rem;
    color: var(--text-white);
    text-shadow: 0 0 20px var(--neon-blue);
    font-weight: 800;
}

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

/* Header */
.header {
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-bottom: 2px solid var(--neon-blue);
    box-shadow: 0 4px 25px rgba(0, 255, 255, 0.3);
    z-index: 50;
    backdrop-filter: blur(15px);
}

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

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-gold);
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 15px var(--accent-gold);
    letter-spacing: -0.5px;
}

.desktop-nav {
    display: none;
}

.nav-link {
    color: var(--text-white);
    margin-left: 2.5rem;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -8px;
    left: 50%;
    background: var(--neon-blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--neon-blue);
}

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

.mobile-menu-button button {
    background: none;
    border: 2px solid var(--neon-blue);
    color: var(--neon-blue);
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 5px;
}

.mobile-menu-button button:hover {
    background: var(--neon-blue);
    color: var(--primary);
    box-shadow: 0 0 15px var(--neon-blue);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    padding: 1.5rem 0;
    background: rgba(0, 255, 255, 0.1);
    border-top: 1px solid var(--neon-blue);
}

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

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

/* Hero Banner */
.hero-banner {
    position: relative;
    padding: 7rem 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;
    filter: hue-rotate(180deg);
}

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

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

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px var(--neon-blue);
    font-weight: 800;
}

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

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    font-weight: 500;
}

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

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    color: var(--primary);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(0, 255, 255, 0.4);
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.6);
    border: 2px solid var(--neon-blue);
    background: transparent;
    color: var(--neon-blue);
}

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

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

.casino-card {
    background: linear-gradient(135deg, #111111, #000000);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid var(--neon-blue);
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.2);
    overflow: hidden;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    z-index: 1;
}

.casino-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 255, 255, 0.4);
    border-color: var(--cyber-green);
}

.casino-card.elite {
    border: 3px solid var(--cyber-green);
    background: linear-gradient(135deg, #001a00, #000000);
}

.casino-card.elite::before {
    background: linear-gradient(90deg, var(--cyber-green), var(--neon-blue));
}

.casino-card.advanced {
    border: 2px solid var(--cyber-orange);
}

.casino-card.futuristic {
    border: 2px solid var(--cyber-red);
}

.casino-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    min-height: 90px;
}

.casino-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 15px;
    background: white;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
    flex-shrink: 0;
}

.casino-rating {
    text-align: right;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
}

.stars {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    white-space: nowrap;
    text-shadow: 0 0 10px var(--accent-gold);
}

.rating-text {
    font-weight: 700;
    color: var(--neon-blue);
    font-size: 1.1rem;
    white-space: nowrap;
    text-shadow: 0 0 10px var(--neon-blue);
}

.casino-name {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    font-weight: 800;
    text-shadow: 0 0 15px var(--text-white);
}

.casino-bonus {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(157, 0, 255, 0.2));
    padding: 1.2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 2px solid rgba(0, 255, 255, 0.4);
    text-align: center;
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--neon-blue);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px var(--neon-blue);
}

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

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

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

.casino-features li i {
    color: var(--cyber-green);
    margin-right: 0.75rem;
    width: 20px;
    font-size: 1.1rem;
    text-shadow: 0 0 10px var(--cyber-green);
}

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

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

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

.payment-icons i {
    font-size: 1.6rem;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.payment-icons i:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

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

.casino-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--cyber-green), var(--neon-blue));
    color: var(--primary);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 20px rgba(0, 255, 65, 0.4);
    border: 2px solid transparent;
}

.casino-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 65, 0.6);
    border: 2px solid var(--cyber-green);
    background: transparent;
    color: var(--cyber-green);
}

.casino-disclaimer {
    background: rgba(0, 0, 0, 0.8);
    color: #e6f2ef;
    font-size: 0.75rem;
    line-height: 1.5;
    padding: 16px 18px;
    font-weight: 700;
    margin-top: 20px;
    border-radius: 8px;
    word-wrap: break-word;
    border: 1px solid var(--neon-blue);
}

.casino-disclaimer a {
    color: var(--cyber-green);
    text-decoration: none;
}

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

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

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

.about-description {
    font-size: 1.2rem;
    margin-bottom: 3.5rem;
    text-align: center;
    color: var(--text-gray);
    font-weight: 500;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 0, 0, 0.5));
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
    border-color: var(--cyber-green);
}

.feature-icon {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    color: var(--primary);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.4);
}

.feature-content h3 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: 0 0 10px var(--text-white);
}

.feature-content p {
    color: var(--text-gray);
    line-height: 1.7;
    font-weight: 500;
}

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

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

.faq-item {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 0, 0, 0.5));
    border-radius: 20px;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(0, 255, 255, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.3);
    border-color: var(--cyber-green);
}

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

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

.faq-question h3 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
    text-shadow: 0 0 10px var(--text-white);
}

.faq-icon {
    color: var(--neon-blue);
    font-size: 1.3rem;
    transition: transform 0.3s ease;
    text-shadow: 0 0 10px var(--neon-blue);
}

.faq-answer {
    padding: 0 2rem 2rem;
    color: var(--text-gray);
    line-height: 1.7;
    display: none;
    font-weight: 500;
}

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

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

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

.responsible-description {
    font-size: 1.2rem;
    margin-bottom: 3.5rem;
    color: var(--text-gray);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

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

.responsible-item {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 0, 0, 0.5));
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 255, 0.3);
}

.responsible-item h3 {
    color: var(--cyber-green);
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: 0 0 10px var(--cyber-green);
}

.responsible-item p {
    color: var(--text-gray);
    line-height: 1.7;
    font-weight: 500;
}

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

.responsible-logo {
    height: 65px;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: brightness(1.2);
}

.responsible-logo:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: brightness(1.5);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 4rem 0 1.5rem;
    border-top: 2px solid var(--neon-blue);
}

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

.footer-section h4 {
    color: var(--neon-blue);
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 0 0 10px var(--neon-blue);
}

.footer-description {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-weight: 500;
}

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

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

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

.footer-links a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

.footer-contact p {
    color: var(--text-gray);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

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

.footer-bottom p {
    color: var(--text-gray);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
}

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

/* Responsive Design */
@media (max-width: 767px) {
    .casino-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .casino-rating {
        align-items: center;
        text-align: center;
    }
}

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

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

/* Animations */
@keyframes neonGlow {
    0%, 100% {
        text-shadow: 0 0 10px var(--neon-blue);
    }
    50% {
        text-shadow: 0 0 20px var(--neon-blue), 0 0 30px var(--neon-blue);
    }
}

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

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

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.casino-card:hover .casino-logo {
    transform: scale(1.08);
    transition: transform 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.5);
}

/* 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;
    }
}
