/* =================================
   BCCNEPA.COM - STYLES
   Theme: Vibrant Social Casino
   Completely Unique Design
   ================================= */

/* CSS Variables - Completely Different Color Scheme */
:root {
    /* Primary Colors - Emerald/Teal Theme */
    --bcc-primary: #10b981;
    --bcc-primary-dark: #059669;
    --bcc-secondary: #f59e0b;
    --bcc-accent: #3b82f6;
    --bcc-accent-light: #60a5fa;
    
    /* Neutral Colors */
    --bcc-dark: #0f172a;
    --bcc-dark-light: #1e293b;
    --bcc-card-bg: #334155;
    --bcc-card-border: rgba(16, 185, 129, 0.3);
    --bcc-text: #ffffff;
    --bcc-text-secondary: #b6c0ce;
    --bcc-border: #475569;
    
    /* Effects */
    --bcc-shadow: 0 6px 25px rgba(16, 185, 129, 0.4);
    --bcc-shadow-lg: 0 10px 40px rgba(16, 185, 129, 0.5);
    --bcc-glow: 0 0 30px rgba(59, 130, 246, 0.6);
    
    /* Spacing */
    --bcc-spacing-xs: 0.5rem;
    --bcc-spacing-sm: 1rem;
    --bcc-spacing-md: 1.5rem;
    --bcc-spacing-lg: 2rem;
    --bcc-spacing-xl: 3rem;
    --bcc-spacing-xxl: 5rem;
    
    /* Typography */
    --bcc-font-primary: 'Georgia', 'Times New Roman', serif;
    
    /* Border Radius */
    --bcc-radius-sm: 6px;
    --bcc-radius-md: 12px;
    --bcc-radius-lg: 18px;
    --bcc-radius-xl: 24px;
    
    /* Transitions */
    --bcc-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--bcc-font-primary);
    color: var(--bcc-text);
    background: var(--bcc-dark) url('../images/body.jpg') center center / cover no-repeat fixed !important;
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.0);
    z-index: 0;
    pointer-events: none;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    pointer-events: none;
    z-index: 1;
}

@keyframes patternMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

body > * {
    position: relative;
    z-index: 2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--bcc-transition);
}

ul {
    list-style: none;
}

/* Container */
.bcc-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--bcc-spacing-md);
}

/* Buttons - Different Style */
.bcc-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: var(--bcc-radius-md);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--bcc-transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--bcc-font-primary);
}

.bcc-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.8s, height 0.8s;
}

.bcc-btn:hover::after {
    width: 400px;
    height: 400px;
}

.bcc-btn--primary {
    background: linear-gradient(135deg, var(--bcc-primary), var(--bcc-secondary));
    color: var(--bcc-text);
    box-shadow: var(--bcc-shadow), 0 0 20px rgba(255, 190, 11, 0.3);
    border: 2px solid var(--bcc-accent);
}

.bcc-btn--primary:hover {
    background: linear-gradient(135deg, var(--bcc-primary-dark), var(--bcc-primary));
    box-shadow: var(--bcc-shadow-lg), var(--bcc-glow);
    transform: translateY(-3px) scale(1.05);
    border-color: var(--bcc-accent-light);
}

.bcc-btn--secondary {
    background: var(--bcc-accent);
    color: var(--bcc-dark);
    box-shadow: 0 4px 15px rgba(255, 190, 11, 0.4);
}

.bcc-btn--secondary:hover {
    background: var(--bcc-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 190, 11, 0.5);
}

.bcc-btn--outline {
    background: transparent;
    border: 3px solid var(--bcc-primary);
    color: var(--bcc-primary);
}

.bcc-btn--outline:hover {
    background: var(--bcc-primary);
    color: var(--bcc-text);
    border-color: var(--bcc-accent);
}

.bcc-btn--large {
    padding: 1.25rem 2.5rem;
    font-size: 1.35rem;
}

.bcc-btn--full {
    width: 100%;
}

.bcc-btn--small {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

/* Header - Different Layout */
.bcc-header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--bcc-spacing-md) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(16, 185, 129, 0.3);
    border-bottom: 3px solid var(--bcc-primary);
}

.bcc-header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.bcc-logo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--bcc-text);
    display: flex;
    align-items: center;
    gap: var(--bcc-spacing-xs);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bcc-logo__text {
    background: linear-gradient(135deg, var(--bcc-primary), var(--bcc-accent), var(--bcc-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoShimmer 4s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.5));
}

@keyframes logoShimmer {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.8));
    }
}

.bcc-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: var(--bcc-spacing-xs);
}

.bcc-burger__line {
    width: 30px;
    height: 4px;
    background: linear-gradient(90deg, var(--bcc-primary), var(--bcc-accent));
    border-radius: 3px;
    transition: var(--bcc-transition);
}

.bcc-burger.active .bcc-burger__line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.bcc-burger.active .bcc-burger__line:nth-child(2) {
    opacity: 0;
}

.bcc-burger.active .bcc-burger__line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.bcc-nav {
    display: flex;
    align-items: center;
    gap: var(--bcc-spacing-lg);
}

.bcc-nav__menu {
    display: flex;
    gap: var(--bcc-spacing-md);
    align-items: center;
}

.bcc-nav__link {
    color: var(--bcc-text-secondary);
    padding: var(--bcc-spacing-xs) var(--bcc-spacing-md);
    border-radius: var(--bcc-radius-sm);
    transition: var(--bcc-transition);
    font-weight: 600;
    position: relative;
}

.bcc-nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bcc-primary), var(--bcc-accent));
    transition: var(--bcc-transition);
}

.bcc-nav__link:hover::after,
.bcc-nav__link--active::after {
    width: 100%;
}

.bcc-nav__link:hover,
.bcc-nav__link--active {
    color: var(--bcc-text);
}

.bcc-header__auth {
    display: flex;
    gap: var(--bcc-spacing-sm);
    align-items: center;
}

.bcc-user-menu {
    display: flex;
    gap: var(--bcc-spacing-sm);
    align-items: center;
}

/* Hero Section - Different Structure */
.bcc-hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding: var(--bcc-spacing-xxl) 0;
    overflow: hidden;
}

.bcc-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -1;
    background-image: 
        radial-gradient(ellipse at 30% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
    animation: heroPulse 10s ease-in-out infinite;
}

@keyframes heroPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.05);
    }
}

.bcc-hero__content {
    text-align: center;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.bcc-hero__title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: var(--bcc-spacing-md);
    background: linear-gradient(135deg, var(--bcc-primary), var(--bcc-accent), var(--bcc-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    animation: fadeInDown 1s ease-out;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.bcc-hero__subtitle {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: var(--bcc-spacing-xl);
    animation: fadeInUp 1s ease-out 0.3s both;
    line-height: 1.8;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.bcc-hero__stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--bcc-spacing-md);
    margin-bottom: var(--bcc-spacing-xl);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Different stat positioning for visual interest */
.bcc-hero__stats .bcc-stat:nth-child(1) {
    transform: translateY(-5px);
}

.bcc-hero__stats .bcc-stat:nth-child(2) {
    transform: translateY(5px);
}

.bcc-hero__stats .bcc-stat:nth-child(3) {
    transform: translateY(-5px);
}

.bcc-stat {
    text-align: center;
    background: rgba(16, 185, 129, 0.1);
    padding: var(--bcc-spacing-lg);
    border-radius: var(--bcc-radius-lg);
    border: 2px solid var(--bcc-card-border);
    backdrop-filter: blur(10px);
    transition: var(--bcc-transition);
    position: relative;
    overflow: hidden;
}

.bcc-stat:hover {
    transform: translateY(-5px);
    border-color: var(--bcc-accent);
    box-shadow: var(--bcc-shadow);
}

.bcc-stat__number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--bcc-accent), var(--bcc-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: var(--bcc-spacing-xs);
}

.bcc-stat__label {
    display: block;
    color: #fff;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section - Different Layout */
.bcc-features {
    padding: var(--bcc-spacing-xxl) 0;
    background: var(--bcc-dark-light);
}

.bcc-section__title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: var(--bcc-spacing-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--bcc-primary), var(--bcc-accent));
    -webkit-background-clip: text;
    background-clip: text;
}

.bcc-section__subtitle {
    text-align: center;
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: var(--bcc-spacing-xl);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.bcc-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--bcc-spacing-lg);
    margin-top: var(--bcc-spacing-xl);
}

/* Different layout for features - staggered grid */
.bcc-features-grid .bcc-feature:nth-child(odd) {
    transform: translateY(-10px);
}

.bcc-features-grid .bcc-feature:nth-child(even) {
    transform: translateY(10px);
}

.bcc-feature {
    background: var(--bcc-card-bg);
    padding: var(--bcc-spacing-xl);
    border-radius: var(--bcc-radius-lg);
    text-align: center;
    transition: var(--bcc-transition);
    border: 3px solid var(--bcc-card-border);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.bcc-feature::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--bcc-transition);
}

.bcc-feature:hover::before {
    opacity: 1;
}

.bcc-feature:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: var(--bcc-shadow-lg), var(--bcc-glow);
    border-color: var(--bcc-accent);
}

.bcc-feature__icon {
    font-size: 4rem;
    margin-bottom: var(--bcc-spacing-md);
    display: inline-block;
    animation: iconRotate 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.5));
}

@keyframes iconRotate {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(10deg) scale(1.1);
    }
}

.bcc-feature__title {
    font-size: 1.5rem;
    margin-bottom: var(--bcc-spacing-sm);
    color: var(--bcc-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bcc-feature__text {
    color: var(--bcc-text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Games Section */
.bcc-games {
    padding: var(--bcc-spacing-xxl) 0;
}

.bcc-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--bcc-spacing-lg);
    margin-top: var(--bcc-spacing-xl);
}

/* Different card sizes for visual interest */
.bcc-games-grid .bcc-game-card:nth-child(3n+1) {
    grid-row: span 1;
}

.bcc-games-grid .bcc-game-card:nth-child(3n+2) {
    transform: scale(1.02);
}

.bcc-game-card {
    background: var(--bcc-card-bg);
    border-radius: var(--bcc-radius-lg);
    overflow: hidden;
    transition: var(--bcc-transition);
    position: relative;
    animation: fadeInScale 0.8s ease-out;
    animation-fill-mode: both;
    border: 3px solid var(--bcc-card-border);
}

.bcc-game-card:nth-child(1) { animation-delay: 0.1s; }
.bcc-game-card:nth-child(2) { animation-delay: 0.2s; }
.bcc-game-card:nth-child(3) { animation-delay: 0.3s; }
.bcc-game-card:nth-child(4) { animation-delay: 0.4s; }
.bcc-game-card:nth-child(5) { animation-delay: 0.5s; }
.bcc-game-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.bcc-game-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--bcc-shadow-lg), var(--bcc-glow);
    border-color: var(--bcc-accent);
}

.bcc-game-card.locked {
    opacity: 0.7;
    cursor: not-allowed;
    filter: grayscale(0.5);
}

.bcc-game-card.locked::after {
    content: '🔒 Register to Unlock';
    position: absolute;
    top: 50%;
    width: 66%;
    text-align: center;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(15, 23, 42, 0.95);
    padding: var(--bcc-spacing-md);
    border-radius: var(--bcc-radius-md);
    font-weight: 700;
    z-index: 10;
    border: 3px solid var(--bcc-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bcc-game-card__image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: var(--bcc-dark-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bcc-game-card__lock {
    position: absolute;
    top: var(--bcc-spacing-sm);
    right: var(--bcc-spacing-sm);
    background: rgba(15, 23, 42, 0.9);
    padding: var(--bcc-spacing-xs);
    border-radius: var(--bcc-radius-md);
    font-size: 1.75rem;
    z-index: 5;
    border: 2px solid var(--bcc-accent);
}

.bcc-game-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--bcc-transition);
}

.bcc-game-card:hover .bcc-game-card__image img {
    transform: scale(1.1);
}

.bcc-game-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.8), rgba(59, 130, 246, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--bcc-transition);
}

.bcc-game-card:hover .bcc-game-card__overlay {
    opacity: 1;
}

.bcc-game-card__content {
    padding: var(--bcc-spacing-lg);
}

.bcc-game-card__title {
    font-size: 1.5rem;
    margin-bottom: var(--bcc-spacing-xs);
    color: var(--bcc-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bcc-game-card__description {
    color: var(--bcc-text-secondary);
    font-size: 1rem;
    margin-bottom: var(--bcc-spacing-md);
    line-height: 1.6;
}

.bcc-games__more {
    text-align: center;
    margin-top: var(--bcc-spacing-xl);
}

/* FAQ Section - Different Style */
.bcc-faq {
    padding: var(--bcc-spacing-xxl) 0;
    background: var(--bcc-dark-light);
}

.bcc-faq__list {
    max-width: 1000px;
    margin: var(--bcc-spacing-xl) auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: var(--bcc-spacing-md);
}

@media (max-width: 991px) {
    .bcc-faq__list {
        grid-template-columns: 1fr;
    }
}

.bcc-faq__item {
    background: var(--bcc-card-bg);
    padding: var(--bcc-spacing-xl);
    border-radius: var(--bcc-radius-lg);
    margin-bottom: var(--bcc-spacing-md);
    border: 3px solid var(--bcc-card-border);
    transition: var(--bcc-transition);
}

.bcc-faq__item:hover {
    border-color: var(--bcc-primary);
    box-shadow: var(--bcc-shadow);
    transform: translateY(-5px) scale(1.02);
}

.bcc-faq__question {
    font-size: 1.5rem;
    margin-bottom: var(--bcc-spacing-sm);
    color: var(--bcc-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bcc-faq__answer {
    color: var(--bcc-text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Disclaimer Section */
.bcc-disclaimer {
    padding: var(--bcc-spacing-xl) 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(16, 185, 129, 0.15));
    border-top: 4px solid var(--bcc-secondary);
    border-bottom: 4px solid var(--bcc-secondary);
}

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

.bcc-disclaimer__icon {
    font-size: 4rem;
    margin-bottom: var(--bcc-spacing-md);
    animation: iconRotate 3s ease-in-out infinite;
}

.bcc-disclaimer__title {
    font-size: 2rem;
    margin-bottom: var(--bcc-spacing-md);
    color: var(--bcc-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bcc-disclaimer__text {
    color: #fff;
    margin-bottom: var(--bcc-spacing-sm);
    line-height: 1.8;
    font-size: 1.15rem;
}

/* Footer */
.bcc-footer {
    background: var(--bcc-dark-light);
    padding: var(--bcc-spacing-xxl) 0 var(--bcc-spacing-lg);
    border-top: 3px solid var(--bcc-border);
}

.bcc-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--bcc-spacing-lg);
    margin-bottom: var(--bcc-spacing-xl);
}

.bcc-footer__title {
    font-size: 1.5rem;
    margin-bottom: var(--bcc-spacing-md);
    color: var(--bcc-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bcc-footer__heading {
    font-size: 1.2rem;
    margin-bottom: var(--bcc-spacing-md);
    color: var(--bcc-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bcc-footer__text {
    color: var(--bcc-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--bcc-spacing-sm);
    font-size: 1.05rem;
}

.bcc-footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--bcc-spacing-xs);
}

.bcc-footer__links a {
    color: var(--bcc-text-secondary);
    transition: var(--bcc-transition);
    padding: var(--bcc-spacing-xs);
    border-radius: var(--bcc-radius-sm);
}

.bcc-footer__links a:hover {
    color: var(--bcc-primary);
    padding-left: var(--bcc-spacing-md);
    background: rgba(16, 185, 129, 0.1);
}

.bcc-footer__badges {
    display: flex;
    gap: var(--bcc-spacing-sm);
    margin-top: var(--bcc-spacing-md);
    flex-wrap: wrap;
}

.bcc-footer__badge {
    height: 45px;
    width: auto;
    opacity: 0.8;
    transition: var(--bcc-transition);
    display: block;
}

.bcc-footer__badge:hover {
    opacity: 1;
    transform: scale(1.1);
}

.bcc-footer__badges a {
    display: inline-block;
    text-decoration: none;
}

.bcc-footer__bottom {
    text-align: center;
    padding-top: var(--bcc-spacing-lg);
    border-top: 2px solid var(--bcc-border);
    color: var(--bcc-text-secondary);
    font-size: 1rem;
}

/* Age Verification Modal */
.bcc-age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.bcc-age-modal.hidden {
    display: none;
}

.bcc-age-modal__content {
    background: var(--bcc-card-bg);
    padding: var(--bcc-spacing-xl);
    border-radius: var(--bcc-radius-xl);
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: var(--bcc-shadow-lg);
    border: 4px solid var(--bcc-primary);
}

.bcc-age-modal__icon {
    font-size: 5rem;
    margin-bottom: var(--bcc-spacing-md);
    animation: iconRotate 3s ease-in-out infinite;
}

.bcc-age-modal__title {
    font-size: 2rem;
    margin-bottom: var(--bcc-spacing-md);
    color: var(--bcc-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bcc-age-modal__text {
    color: var(--bcc-text-secondary);
    margin-bottom: var(--bcc-spacing-md);
    line-height: 1.8;
    font-size: 1.15rem;
}

.bcc-age-modal__warning {
    color: var(--bcc-secondary);
    font-weight: 900;
    font-size: 1.35rem;
    margin-bottom: var(--bcc-spacing-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bcc-age-modal__buttons {
    display: flex;
    justify-content: center;
    gap: var(--bcc-spacing-md);
    margin-bottom: var(--bcc-spacing-lg);
}

.bcc-age-modal__cookies {
    color: var(--bcc-text-secondary);
    font-size: 0.95rem;
    margin-bottom: var(--bcc-spacing-sm);
}

.bcc-age-modal__cookies a {
    color: var(--bcc-accent);
}

.bcc-age-modal__cookie-buttons {
    display: flex;
    gap: var(--bcc-spacing-sm);
    justify-content: center;
}

/* Auth Modal */
.bcc-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(10px);
}

.bcc-modal.active {
    display: flex;
}

.bcc-modal__content {
    background: var(--bcc-card-bg);
    padding: var(--bcc-spacing-xl);
    border-radius: var(--bcc-radius-xl);
    max-width: 550px;
    width: 90%;
    position: relative;
    box-shadow: var(--bcc-shadow-lg);
    border: 4px solid var(--bcc-primary);
    animation: modalSlideIn 0.4s ease-out;
}

.bcc-modal__content--success {
    max-width: 450px;
    text-align: center;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-60px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.bcc-success {
    padding: var(--bcc-spacing-md);
}

.bcc-success__icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--bcc-spacing-lg);
    background: linear-gradient(135deg, var(--bcc-accent), var(--bcc-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--bcc-dark);
    font-weight: bold;
    animation: successPulse 0.8s ease-out;
    border: 4px solid var(--bcc-primary);
}

@keyframes successPulse {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

.bcc-success__title {
    font-size: 2rem;
    color: var(--bcc-accent);
    margin-bottom: var(--bcc-spacing-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bcc-success__text {
    color: var(--bcc-text-secondary);
    margin-bottom: var(--bcc-spacing-lg);
    line-height: 1.8;
    font-size: 1.15rem;
}

/* Message Modal */
.bcc-modal__content--message {
    max-width: 450px;
    text-align: center;
}

.bcc-message {
    padding: var(--bcc-spacing-md);
}

.bcc-message__icon {
    width: 90px;
    height: 90px;
    margin: 0 auto var(--bcc-spacing-md);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    animation: messagePulse 0.6s ease-out;
    border: 4px solid;
}

.bcc-message__icon--success {
    background: var(--bcc-accent);
    color: var(--bcc-dark);
    border-color: var(--bcc-primary);
}

.bcc-message__icon--error {
    background: var(--bcc-secondary);
    color: var(--bcc-text);
    border-color: var(--bcc-primary);
}

.bcc-message__icon--warning {
    background: #ff9500;
    color: var(--bcc-dark);
    border-color: var(--bcc-primary);
}

.bcc-message__icon--info {
    background: var(--bcc-primary);
    color: var(--bcc-text);
    border-color: var(--bcc-accent);
}

@keyframes messagePulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.bcc-message__text {
    color: var(--bcc-text);
    margin-bottom: var(--bcc-spacing-lg);
    line-height: 1.8;
    font-size: 1.2rem;
}

.bcc-modal__close {
    position: absolute;
    top: var(--bcc-spacing-md);
    right: var(--bcc-spacing-md);
    background: transparent;
    border: none;
    color: var(--bcc-text);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--bcc-transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.bcc-modal__close:hover {
    color: var(--bcc-secondary);
    transform: rotate(90deg);
    background: rgba(245, 158, 11, 0.1);
}

.bcc-auth__tabs {
    display: flex;
    gap: var(--bcc-spacing-sm);
    margin-bottom: var(--bcc-spacing-lg);
    border-bottom: 3px solid var(--bcc-border);
}

.bcc-auth__tab {
    flex: 1;
    padding: var(--bcc-spacing-md);
    background: transparent;
    border: none;
    color: var(--bcc-text-secondary);
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    transition: var(--bcc-transition);
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bcc-auth__tab--active {
    color: var(--bcc-accent);
    border-bottom-color: var(--bcc-accent);
}

.bcc-auth__title {
    font-size: 1.75rem;
    margin-bottom: var(--bcc-spacing-lg);
    text-align: center;
    color: var(--bcc-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bcc-form__group {
    margin-bottom: var(--bcc-spacing-md);
}

.bcc-form__label {
    display: block;
    margin-bottom: var(--bcc-spacing-xs);
    color: var(--bcc-text-secondary);
    font-size: 1rem;
    font-weight: 600;
}

.bcc-form__input {
    width: 100%;
    padding: var(--bcc-spacing-sm);
    background: var(--bcc-dark);
    border: 3px solid var(--bcc-border);
    border-radius: var(--bcc-radius-md);
    color: var(--bcc-text);
    font-size: 1.1rem;
    transition: var(--bcc-transition);
    font-family: var(--bcc-font-primary);
}

.bcc-form__input:focus {
    outline: none;
    border-color: var(--bcc-primary);
    box-shadow: 0 0 0 4px rgba(157, 78, 221, 0.2);
}

.bcc-form__textarea {
    min-height: 140px;
    resize: vertical;
    font-family: var(--bcc-font-primary);
}

.bcc-form__label input[type="checkbox"] {
    margin-right: var(--bcc-spacing-xs);
    width: 20px;
    height: 20px;
}

.bcc-contact-form {
    background: var(--bcc-card-bg);
    padding: var(--bcc-spacing-xl);
    border-radius: var(--bcc-radius-lg);
    box-shadow: var(--bcc-shadow);
    border: 3px solid var(--bcc-card-border);
}

.bcc-contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%23d4a5f5' d='M7 10L2 5h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--bcc-spacing-sm) center;
    padding-right: 3rem;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 991px) {
    .bcc-burger {
        display: flex;
        z-index: 1001;
        position: relative;
    }
    
    .bcc-header__wrapper {
        position: relative;
    }
    
    .bcc-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bcc-dark-light);
        flex-direction: column;
        padding: var(--bcc-spacing-xxl) var(--bcc-spacing-lg);
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
        border-right: 3px solid var(--bcc-primary);
        overflow-y: auto;
        z-index: 1000;
    }
    
    .bcc-nav.active {
        left: 0;
    }
    
    .bcc-burger.active {
        position: fixed;
        top: var(--bcc-spacing-md);
        right: var(--bcc-spacing-md);
        z-index: 1001;
    }
    
    .bcc-nav__menu {
        flex-direction: column;
        width: 100%;
        gap: var(--bcc-spacing-sm);
    }
    
    .bcc-nav__link {
        display: block;
        width: 100%;
        padding: var(--bcc-spacing-sm);
    }
    
    .bcc-header__auth {
        flex-direction: column;
        width: 100%;
        margin-top: var(--bcc-spacing-md);
    }
    
    .bcc-header__auth .bcc-btn {
        width: 100%;
    }
    
    .bcc-hero__title {
        font-size: 3rem;
    }
    
    .bcc-hero__stats {
        flex-direction: column;
        gap: var(--bcc-spacing-md);
    }
    
    .bcc-features-grid {
        grid-template-columns: 1fr;
    }
    
    .bcc-games-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .bcc-footer__grid {
        grid-template-columns: 1fr;
    }
    
    .bcc-age-modal__buttons {
        flex-direction: column;
    }
}

/* Blog Styles */
.bcc-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--bcc-spacing-lg);
    margin-top: var(--bcc-spacing-xl);
}

.bcc-blog-card {
    background: var(--bcc-card-bg);
    border-radius: var(--bcc-radius-lg);
    overflow: hidden;
    transition: var(--bcc-transition);
    animation: fadeInScale 0.8s ease-out;
    animation-fill-mode: both;
    border: 3px solid var(--bcc-card-border);
}

.bcc-blog-card:nth-child(1) { animation-delay: 0.1s; }
.bcc-blog-card:nth-child(2) { animation-delay: 0.2s; }
.bcc-blog-card:nth-child(3) { animation-delay: 0.3s; }
.bcc-blog-card:nth-child(4) { animation-delay: 0.4s; }
.bcc-blog-card:nth-child(5) { animation-delay: 0.5s; }
.bcc-blog-card:nth-child(6) { animation-delay: 0.6s; }

.bcc-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--bcc-shadow-lg);
    border-color: var(--bcc-accent);
}

.bcc-blog-card__image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--bcc-primary), var(--bcc-accent));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bcc-blog-card__icon {
    font-size: 6rem;
    opacity: 0.9;
    animation: iconRotate 4s ease-in-out infinite;
}

.bcc-blog-card__date {
    position: absolute;
    top: var(--bcc-spacing-sm);
    right: var(--bcc-spacing-sm);
    background: rgba(15, 23, 42, 0.9);
    padding: var(--bcc-spacing-xs) var(--bcc-spacing-sm);
    border-radius: var(--bcc-radius-md);
    font-size: 0.95rem;
    color: var(--bcc-text);
    border: 2px solid var(--bcc-accent);
}

.bcc-blog-card__content {
    padding: var(--bcc-spacing-lg);
}

.bcc-blog-card__title {
    font-size: 1.75rem;
    margin-bottom: var(--bcc-spacing-sm);
    color: var(--bcc-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bcc-blog-card__excerpt {
    color: var(--bcc-text-secondary);
    margin-bottom: var(--bcc-spacing-md);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Blog Post Page Styles */
.bcc-blog-post {
    background: var(--bcc-card-bg);
    padding: var(--bcc-spacing-xl);
    border-radius: var(--bcc-radius-lg);
    border: 3px solid var(--bcc-card-border);
    box-shadow: var(--bcc-shadow);
}

.bcc-blog-post__header {
    display: flex;
    align-items: center;
    gap: var(--bcc-spacing-md);
    margin-bottom: var(--bcc-spacing-lg);
    padding-bottom: var(--bcc-spacing-md);
    border-bottom: 3px solid var(--bcc-border);
}

.bcc-blog-post__icon {
    font-size: 5rem;
    animation: iconRotate 4s ease-in-out infinite;
}

.bcc-blog-post__meta {
    display: flex;
    flex-direction: column;
    gap: var(--bcc-spacing-xs);
}

.bcc-blog-post__date {
    color: var(--bcc-text-secondary);
    font-size: 1rem;
}

.bcc-blog-post__category {
    display: inline-block;
    background: var(--bcc-primary);
    color: var(--bcc-text);
    padding: 0.5rem 1rem;
    border-radius: var(--bcc-radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bcc-blog-post__title {
    font-size: 3rem;
    color: var(--bcc-accent);
    margin-bottom: var(--bcc-spacing-lg);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bcc-blog-post__content {
    color: var(--bcc-text-secondary);
    line-height: 2;
    font-size: 1.15rem;
}

.bcc-blog-post__content h2 {
    color: var(--bcc-accent);
    font-size: 2rem;
    margin-top: var(--bcc-spacing-xl);
    margin-bottom: var(--bcc-spacing-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bcc-blog-post__content h3 {
    color: var(--bcc-text);
    font-size: 1.5rem;
    margin-top: var(--bcc-spacing-lg);
    margin-bottom: var(--bcc-spacing-sm);
}

.bcc-blog-post__content p {
    margin-bottom: var(--bcc-spacing-md);
}

.bcc-blog-post__content ul,
.bcc-blog-post__content ol {
    margin: var(--bcc-spacing-md) 0;
    padding-left: var(--bcc-spacing-lg);
}

.bcc-blog-post__content li {
    margin-bottom: var(--bcc-spacing-xs);
}

.bcc-blog-post__content a {
    color: var(--bcc-accent);
    text-decoration: underline;
}

.bcc-blog-post__content a:hover {
    color: var(--bcc-primary);
}

/* Reviews Styles */
.bcc-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: var(--bcc-spacing-lg);
    margin-top: var(--bcc-spacing-xl);
}

.bcc-review-card {
    background: var(--bcc-card-bg);
    padding: var(--bcc-spacing-lg);
    border-radius: var(--bcc-radius-lg);
    transition: var(--bcc-transition);
    animation: fadeInScale 0.8s ease-out;
    animation-fill-mode: both;
    border: 3px solid var(--bcc-card-border);
}

.bcc-review-card:nth-child(1) { animation-delay: 0.1s; }
.bcc-review-card:nth-child(2) { animation-delay: 0.2s; }
.bcc-review-card:nth-child(3) { animation-delay: 0.3s; }
.bcc-review-card:nth-child(4) { animation-delay: 0.4s; }
.bcc-review-card:nth-child(5) { animation-delay: 0.5s; }
.bcc-review-card:nth-child(6) { animation-delay: 0.6s; }

.bcc-review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--bcc-shadow-lg);
    border-color: var(--bcc-accent);
}

.bcc-review-card__header {
    display: flex;
    align-items: center;
    gap: var(--bcc-spacing-md);
    margin-bottom: var(--bcc-spacing-md);
}

.bcc-review-card__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bcc-primary), var(--bcc-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--bcc-text);
    font-size: 1.5rem;
    border: 3px solid var(--bcc-secondary);
}

.bcc-review-card__info {
    flex: 1;
}

.bcc-review-card__name {
    font-size: 1.35rem;
    color: var(--bcc-accent);
    margin-bottom: var(--bcc-spacing-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bcc-review-card__stars {
    font-size: 1.2rem;
}

.bcc-review-card__text {
    color: var(--bcc-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--bcc-spacing-md);
    font-size: 1.1rem;
}

.bcc-review-card__date {
    font-size: 0.95rem;
    color: var(--bcc-text-secondary);
    opacity: 0.8;
}

@media (max-width: 576px) {
    .bcc-hero__title {
        font-size: 2.5rem;
    }
    
    .bcc-hero__subtitle {
        font-size: 1.25rem;
    }
    
    .bcc-section__title {
        font-size: 2.5rem;
    }
    
    .bcc-games-grid {
        grid-template-columns: 1fr;
    }
    
    .bcc-blog-grid {
        grid-template-columns: 1fr;
    }
    
    .bcc-reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .bcc-container {
        padding: 0 var(--bcc-spacing-sm);
    }
}
