/* CasinosInBritain - Custom Neon Casino Styling */

:root {
    /* Neon Color Palette */
    --neon-cyan: #00ffff;
    --neon-pink: #ff00ff;
    --neon-green: #00ff00;
    --neon-purple: #8a2be2;
    --neon-orange: #ff4500;
    --neon-blue: #0080ff;
    
    /* Base Colors */
    --primary-color: #ff00ff;
    --secondary-color: #00ffff;
    --accent-color: #00ff00;
    --background-dark: #0a0a0a;
    --background-secondary: #1a1a2e;
    --background-card: #16213e;
    --text-light: #ffffff;
    --text-muted: #b8b8b8;
    --border-color: #333;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    --gradient-secondary: linear-gradient(135deg, var(--neon-cyan), var(--neon-green));
    --gradient-accent: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background-dark);
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.neon-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

/* Navigation */
.navbar {
    background: rgba(26, 26, 46, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

.brand-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link:hover {
    color: var(--neon-cyan) !important;
    text-shadow: 0 0 10px var(--neon-cyan);
}

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

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

/* Hero Section */
.hero-banner {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    background-image: url('https://pixabay.com/get/g194c7f413f897188e58d8532bef01cdb186589d9d3f7e6b498c778b9a777c296076fc4ae923f7c55d22cc9ced9030c372648d81c8dbd5c310e817c443a9bdd9b_1280.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    z-index: -2;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 30px rgba(255, 0, 255, 0.8);
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Buttons */
.btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 0, 255, 0.4);
}

.neon-btn {
    position: relative;
    overflow: hidden;
}

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

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

.btn-bonus {
    background: var(--gradient-secondary);
    color: var(--background-dark);
    font-weight: 700;
    border: 2px solid transparent;
}

.btn-bonus:hover {
    background: transparent;
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px var(--neon-cyan);
}

.btn-outline-primary {
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--neon-cyan);
    color: var(--background-dark);
    box-shadow: 0 0 20px var(--neon-cyan);
}

/* Casino Cards */
.casino-card {
    background: var(--background-card);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.3s ease;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: exclude;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.casino-card:hover::before {
    opacity: 1;
}

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

.casino-logo {
    max-height: 80px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
}

.casino-logo:hover {
    filter: drop-shadow(0 0 20px var(--neon-cyan));
    transform: scale(1.05);
}

.casino-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.casino-features {
    margin-bottom: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.feature-item i {
    width: 20px;
    color: var(--neon-green);
}

/* Rating Stars */
.rating {
    text-align: center;
}

.stars {
    color: var(--neon-orange);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.rating-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Sections */
.bg-dark-secondary {
    background-color: var(--background-secondary);
}

/* About Section */
.about-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-feature {
    padding: 2rem 1rem;
    text-align: center;
    border-radius: 15px;
    background: var(--background-card);
    height: 100%;
    transition: all 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.about-feature i {
    color: var(--neon-cyan);
}

.about-feature h5 {
    margin: 1rem 0;
    color: var(--text-light);
}

/* FAQ Section */
.accordion {
    --bs-accordion-bg: var(--background-card);
    --bs-accordion-border-color: var(--border-color);
    --bs-accordion-btn-bg: var(--background-card);
    --bs-accordion-btn-color: var(--text-light);
    --bs-accordion-active-bg: var(--background-secondary);
    --bs-accordion-active-color: var(--text-light);
}

.accordion-item {
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: var(--text-light);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background: var(--background-card);
    color: var(--text-muted);
    line-height: 1.7;
}

/* Responsible Gambling Section */
.responsible-gambling {
    text-align: center;
}

.age-icon {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 20px var(--neon-pink));
}

.responsible-tips {
    margin-top: 3rem;
}

.tip-item {
    padding: 1.5rem;
    background: var(--background-card);
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
}

.tip-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.2);
}

.tip-item h6 {
    color: var(--text-light);
    margin: 1rem 0 0.5rem;
}

/* Footer */
footer {
    background: var(--background-secondary);
    border-top: 1px solid var(--border-color);
}

.footer-heading {
    color: var(--neon-cyan);
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

.footer-link:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
    padding-left: 10px;
}

.responsible-links a {
    margin-bottom: 0.5rem;
}

/* Legal Pages */
.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.legal-content {
    background: var(--background-card);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.legal-content h2 {
    color: var(--neon-cyan);
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    color: var(--neon-pink);
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content ul, .legal-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.table-dark {
    --bs-table-bg: var(--background-card);
    --bs-table-border-color: var(--border-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .casino-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .casino-logo {
        max-height: 60px;
        margin-bottom: 1rem;
    }
    
    .legal-content {
        padding: 1.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        height: 80vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .casino-features {
        text-align: left;
    }
    
    .about-feature, .tip-item {
        margin-bottom: 2rem;
    }
}

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

.neon-glow {
    animation: neonGlow 2s ease-in-out infinite alternate;
}

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

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus,
.accordion-button:focus {
    outline: 2px solid var(--neon-cyan);
    outline-offset: 2px;
}
