/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Roboto:wght@300;400;500;700&display=swap');

/* CSS Variables for Neon Colors */
:root {
    --neon-blue: #00d4ff;
    --neon-purple: #9b59b6;
    --neon-pink: #ff007f;
    --neon-green: #39ff14;
    --neon-orange: #ff8c00;
    --dark-bg: #0a0a0a;
    --dark-card: #1a1a1a;
    --dark-gray: #2a2a2a;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --text-muted: #888888;
}

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

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

/* Neon Glow Effect */
.neon-glow {
    text-shadow: 0 0 5px currentColor, 0 0 10px currentColor, 0 0 15px currentColor, 0 0 20px currentColor;
}

.neon-border {
    border: 2px solid;
    box-shadow: 0 0 10px currentColor, inset 0 0 10px currentColor;
}

/* Header Styles */
.navbar {
    background-color: rgba(26, 26, 26, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.navbar-brand {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    color: var(--neon-blue) !important;
    font-size: 1.8rem;
    text-shadow: 0 0 10px var(--neon-blue);
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

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

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), 
                url('https://pixabay.com/get/gfdb0b1c16992c7f5f3f4e0ac3d0d5880c9617ec2d57768d5f904f20626aedf4c26b4db7fa92be8bc716ed7402cae8e528623e912d5a2f9c4765ba98eb4186078_1280.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(255, 0, 127, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    color: var(--neon-blue);
    text-shadow: 0 0 20px var(--neon-blue), 0 0 40px var(--neon-blue);
    margin-bottom: 1rem;
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-weight: 300;
}

@keyframes pulse-glow {
    from { text-shadow: 0 0 20px var(--neon-blue), 0 0 40px var(--neon-blue); }
    to { text-shadow: 0 0 30px var(--neon-blue), 0 0 60px var(--neon-blue), 0 0 80px var(--neon-blue); }
}

/* Casino Cards */
.casino-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a2e 100%);
    position: relative;
}

.casino-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://pixabay.com/get/g699b8bec15bf4f99fccb9e69572879c6518e95c13779ee6aa7af10570cdcc6fb0d33c8978d9621a005c464ba7cc1448f181d520b3cd1480b9dadc00b0a0b27bc_1280.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    background-attachment: fixed;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--neon-purple);
    text-shadow: 0 0 15px var(--neon-purple);
    position: relative;
    z-index: 2;
}

.casino-card {
    background: linear-gradient(145deg, var(--dark-card), #252525);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.casino-card:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4), 0 20px 40px rgba(0, 0, 0, 0.7);
    transform: translateY(-10px);
}

.casino-card:hover::before {
    left: 100%;
}

.casino-logo {
    width: 150px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: brightness(1.2);
}

.casino-name {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--neon-green);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--neon-green);
}

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

.casino-features li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
}

.casino-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: bold;
    text-shadow: 0 0 5px var(--neon-green);
}

.bonus-btn {
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-orange));
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 0, 127, 0.3);
    position: relative;
    overflow: hidden;
}

.bonus-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.bonus-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 0, 127, 0.5);
}

.bonus-btn:hover::before {
    left: 100%;
}

/* About Us Section */
.about-section {
    padding: 100px 0;
    background: var(--dark-card);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://pixabay.com/get/gf3524a160e6698887b0f7494b2a8007da581c41a45a1f36cce187a265a1719f71743d4317c2d50042142e2a5477d03e1fc23199d0e9bce796f0cb222582b3fa8_1280.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    background-attachment: fixed;
}

.about-content {
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.faq-item {
    background: var(--dark-card);
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid var(--dark-gray);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 0 15px rgba(155, 89, 182, 0.3);
}

.faq-question {
    padding: 1.5rem;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--neon-purple);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--neon-purple);
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: translateY(-50%) rotate(45deg);
}

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

/* Responsible Gambling Section */
.responsible-section {
    padding: 80px 0;
    background: var(--dark-card);
    text-align: center;
}

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

.age-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 0 10px var(--neon-orange));
}

.authority-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.authority-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.authority-link:hover {
    color: var(--neon-blue);
    transform: translateY(-5px);
}

.authority-logo {
    width: 120px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 0.5rem;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.authority-link:hover .authority-logo {
    filter: brightness(1.2) drop-shadow(0 0 10px var(--neon-blue));
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--dark-gray);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.footer-link:hover {
    color: var(--neon-blue);
    background: rgba(0, 212, 255, 0.1);
    text-shadow: 0 0 5px var(--neon-blue);
}

.footer-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .casino-card {
        padding: 1.5rem;
    }
    
    .authority-links {
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .casino-logo {
        width: 120px;
        height: 60px;
    }
    
    .bonus-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

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

.animate-on-scroll {
    animation: fadeInUp 0.8s ease-out;
}

/* Loading animation */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--neon-blue);
    border-radius: 4px;
    box-shadow: 0 0 5px var(--neon-blue);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-purple);
    box-shadow: 0 0 10px var(--neon-purple);
}
