/* ===========================
   OPTIMIZED GAMING DESIGN
   ===========================*/

/* Base Styles */
:root {
    --primary: #ffffff;
    --primary-dark: #e0e0e0;
    --secondary: #cccccc;
    --accent: #666666;
    --background: #000000;
    --text: #ffffff;
    --card-bg: #1a1a1a;
    --glow: none;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: var(--background);
    padding: 12px 30px;
    border: 1px solid var(--primary-dark);
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.highlight {
    color: var(--primary);
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin: 2rem 0;
    color: var(--primary);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--card-bg);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--accent);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: var(--card-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 0.8rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
}

.logo-text {
    display: inline-block;
    font-weight: 800;
    font-size: 1.8rem;
}

.btn-live-streaming {
    background: var(--primary) !important;
    color: #000 !important;
    padding: 10px 20px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: var(--transition) !important;
    font-size: 0.9rem !important;
}

/* .btn-live-streaming:hover {
    background: var(--primary-dark) !important;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5) !important;
} */

@keyframes logo-glow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(0, 255, 0, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.6));
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: var(--transition);
    box-shadow: 0 0 10px var(--primary);
}
/* .nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
    box-shadow: 0 0 15px var(--primary), 0 0 25px var(--secondary);
} */

/* .nav-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
} */

/* Hero Section with Slider */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text);
    overflow: hidden;
    background: var(--background);
    padding-top: 80px;
    padding-bottom: 3rem;
}

.hero-top-bar {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.8rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(0, 255, 0, 0.1);
}

.top-bar-links {
    margin-left: 1rem;
}

.top-bar-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    text-decoration: none;
}

/* .top-bar-links a:hover {
    color: var(--primary);
} */

.divider {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0.5rem;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.featured-middle {
    flex: 1;
    text-align: center;
    padding: 0;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.featured-middle h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.featured-middle p {
    color: var(--secondary);
    margin: 0 0 2rem 0;
    line-height: 1.7;
    width: 100%;
    padding: 0 1rem;
    font-size: 1.1rem;
    max-width: 1200px;
    text-align: center;
    box-sizing: border-box;
}

/* Tablet */
@media (max-width: 992px) {
    .featured-middle {
        padding: 0 1.5rem;
    }
    
    .featured-middle p {
        font-size: 1.05rem;
        line-height: 1.6;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .featured-middle {
        padding: 0 1rem;
    }
    
    .featured-middle h3 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .featured-middle p {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 0.5rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .featured-middle {
        padding: 0 0.75rem;
    }
    
    .featured-middle h3 {
        font-size: 1.3rem;
        margin-bottom: 0.7rem;
    }
    
    .featured-middle p {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .featured-middle {
        max-width: 800px;
    }
}

@media (max-width: 992px) {
    .featured-middle {
        max-width: 700px;
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .featured-middle {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .featured-middle p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

@media (max-width: 576px) {
    .featured-middle {
        padding: 0 0.75rem;
    }
    
    .featured-middle p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

.hero-badge {
    display: inline-block;
    background: var(--card-bg);
    border: 1px solid var(--accent);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    color: var(--primary);
    font-weight: 600;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    color: white;
}

.hero-highlight {
    color: var(--primary);
    display: block;
    font-size: 4rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-explore {
    background: var(--primary) !important;
    color: #000 !important;
    border: 2px solid var(--primary) !important;
    font-weight: 700;
    padding: 14px 35px !important;
    border-radius: 50px !important;
}

/* .btn-explore:hover {
    background: var(--primary-dark) !important;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.6) !important;
} */

.btn-browse {
    background: var(--secondary) !important;
    color: #000 !important;
    border: 2px solid var(--secondary) !important;
    font-weight: 700;
    padding: 14px 35px !important;
    border-radius: 50px !important;
}

/* .btn-browse:hover {
    background: #ff9500 !important;
    box-shadow: 0 0 30px rgba(255, 170, 0, 0.6) !important;
} */

/* Main section styles */
.hero-featured-section {
    display: block;
    background: var(--card-bg);
    border: 1px solid var(--accent);
    border-radius: 8px;
    padding: 3rem 4rem;
    margin: 3rem auto 0;
    position: relative;
    overflow: hidden;
    max-width: 1800px;
    width: calc(100% - 4rem);
    box-sizing: border-box;
}

/* Extra large screens */
@media (min-width: 2000px) {
    .hero-featured-section {
        max-width: 2000px;
        padding: 4rem 6rem;
    }
    
    .featured-middle p {
        font-size: 1.4rem;
        line-height: 1.8;
        margin: 0 0 2.5rem 0;
    }
    
    .btn-join {
        padding: 18px 45px !important;
        font-size: 1.2rem;
        margin-top: 2rem;
        border-radius: 60px !important;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-featured-section {
        padding: 1.5rem 1.25rem;
    }
}

@media (max-width: 768px) {
    .hero-featured-section {
        padding: 2rem 1rem;
        margin: 1.5rem 0.5rem 0;
        border-radius: 15px;
        width: calc(100% - 1rem);
    }
    
    .featured-middle p {
        padding: 0 0.5rem;
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .featured-left, .featured-right {
        display: none;
    }
    
    .featured-middle {
        text-align: center !important;
        padding: 0 !important;
    }
}

@media (max-width: 480px) {
    .hero-featured-section {
        padding: 1.25rem 0.75rem;
        border-radius: 12px;
        margin: 1.25rem 0.75rem 0;
        width: calc(100% - 1.5rem);
    }
}

.featured-left, .featured-right {
    display: flex;
    justify-content: center;
}

.featured-character {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 255, 0, 0.3));
}

.featured-middle {
    text-align: left;
}

.featured-middle h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.featured-middle p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 auto 1.5rem;
    line-height: 1.6;
    max-width: 800px;
    padding: 0 1rem;
    font-size: 1.1rem;
    box-sizing: border-box;
}

.btn-join {
    display: inline-block;
    background: var(--primary) !important;
    color: #000 !important;
    border: 2px solid var(--primary) !important;
    padding: 12px 30px !important;
    border-radius: 50px !important;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-sizing: border-box;
    text-align: center;
    width: auto;
    max-width: 100%;
}

/* Responsive button styles */
@media (max-width: 768px) {
    .btn-join {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px !important;
        margin: 1rem auto 0;
        display: block;
    }
}

@media (max-width: 480px) {
    .btn-join {
        font-size: 0.95rem;
        padding: 10px 16px;
    }
}


.featured-dots {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.featured-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 255, 0, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.featured-dots .dot.active {
    background: var(--primary);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.6);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-icon {
    font-size: 1.5rem;
}

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

.hero-gradient-red {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ff0000 0%, #ff1493 30%, #a020f0 60%, #000 100%);
    z-index: 0;
}

.hero-gradient-purple {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, #a020f0 50%, #000 100%);
    z-index: 0;
}

.hero-vertical-bar {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 100%;
    background: linear-gradient(180deg, #ff0000 0%, #ff1493 50%, #a020f0 100%);
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(30px) translateX(20px); }
}

@keyframes float-reverse {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-30px) translateX(-20px); }
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.hero-card-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.95) 0%, rgba(30, 15, 40, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 4rem;
    border: 1px solid rgba(255, 0, 0, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.hero-card-left {
    text-align: left;
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hero-badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
}

.hero-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    animation: fade-in-up 0.8s ease-out;
}

.hero-card-main {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.hero-card-main .highlight {
    background: linear-gradient(135deg, #ff0000 0%, #ff1493 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-card-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 400px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fade-in-up 0.8s ease-out 0.6s both;
}

.btn-primary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary {
    background: transparent !important;
    border: 2px solid var(--primary) !important;
    color: var(--primary) !important;
}

/* .btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%) !important;
    color: #fff !important;
} */

.hero-stats {
    display: flex;
    gap: 3rem;
    animation: fade-in-up 0.8s ease-out 0.7s both;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.hero-card-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-games-showcase {
    position: relative;
    width: 100%;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-card {
    position: absolute;
    width: 180px;
    height: 240px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 0, 0, 0.4);
}

.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .showcase-card:hover img {
    transform: scale(1.15);
} */

/* .showcase-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(255, 0, 0, 0.4);
} */

.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.95) 100%);
    padding: 1.2rem;
    color: white;
}

.card-info h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--primary);
    font-weight: 700;
}

.card-info p {
    font-size: 0.75rem;
    color: var(--secondary);
    font-weight: 600;
    letter-spacing: 1px;
}

.card-1 {
    left: 0;
    top: 40px;
    z-index: 1;
}

.card-2 {
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    z-index: 3;
}

.card-3 {
    right: 0;
    top: 40px;
    z-index: 1;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.games {
    /* padding: 6rem 0; */
    background: #000000;
    position: relative;
    z-index: 1;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.game-card {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--accent);
    position: relative;
    height: 100%;
    overflow: hidden;
}

.game-card img {
    width: 100%;
    height: 180px;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    z-index: 1;
}

.game-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

.game-card h3 {
    font-size: 1.5rem;
    margin: 1rem 0 0.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.game-card p {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.about {
    background: var(--background);
    position: relative;
    z-index: 1;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid var(--accent);
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
    color: var(--text);
}

.about-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-card {
    background: var(--card-bg);
    border: 1px solid var(--accent);
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.about-card p {
    color: var(--secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.about-features {
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--accent);
}

.features-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text);
}

.features-title .highlight {
    color: var(--primary);
}

.features-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.features-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-showcase-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    filter: drop-shadow(0 0 20px rgba(0, 255, 0, 0.3));
}

/* .feature-showcase-img:hover {
    filter: drop-shadow(0 0 30px rgba(0, 255, 0, 0.5));
    transform: scale(1.05);
} */

.features-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-section-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-icon-large {
    font-size: 2.5rem;
}

.feature-section-title h2 {
    font-size: 1.8rem;
    color: var(--text);
    font-weight: 700;
    line-height: 1.3;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item-new {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--accent);
}

.feature-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--background);
    border: 1px solid var(--accent);
    border-radius: 8px;
    flex-shrink: 0;
}

.feature-icon-box i {
    font-size: 1.5rem;
    color: var(--primary);
}

.feature-text {
    flex: 1;
}

.feature-item-new h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-weight: 700;
}

.feature-item-new p {
    color: var(--secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.about-values {
    padding: 3rem 2rem;
    background: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--accent);
}

.values-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--accent);
}

.value-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--background);
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.value-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.value-content p {
    color: var(--secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact {
    padding: 6rem 0;
    background: var(--background);
    position: relative;
    z-index: 1;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--accent);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: var(--background);
    border: 1px solid var(--accent);
    border-radius: 8px;
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group label {
    position: absolute;
    left: 15px;
    top: 15px;
    color: var(--secondary);
    pointer-events: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group input:not(:placeholder-shown),
.form-group textarea:not(:placeholder-shown) {
    border-color: var(--primary);
    outline: none;
    background: var(--background);
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    background: var(--background);
    padding: 0 5px;
    color: var(--primary);
    font-size: 0.8rem;
}

.disclaimer {
    background: var(--background) !important;
    padding: 3rem 0;
    color: var(--text);
    font-size: 0.9rem;
    border-top: 1px solid var(--accent);
    border-bottom: 1px solid var(--accent);
    position: relative;
    z-index: 1;
}

.disclaimer .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    /* background: #011008; */
   
}

.disclaimer h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.disclaimer p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.disclaimer a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

/* .disclaimer a:hover {
    color: #fff;
    text-decoration: underline;
} */

.disclaimer-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-weight: 800;
    letter-spacing: 0.5px;
}

.disclaimer-intro {
    text-align: center;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 3.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 500;
}

.disclaimer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.disclaimer-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(2, 26, 13, 0.5) 0%, rgba(4, 24, 18, 0.4) 100%);
    border: 1.5px solid rgba(0, 255, 0, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.disclaimer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    border: 2px solid rgba(0, 255, 0, 0.2);
    border-radius: 14px;
    flex-shrink: 0;
    position: relative;
}

.disclaimer-icon i {
    font-size: 1.8rem;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.disclaimer-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.disclaimer-content h4 {
    font-size: 1.35rem;
    color: var(--text);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.disclaimer-content p {
    color: var(--secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.disclaimer-content p:last-child {
    margin-bottom: 0;
}

.disclaimer-content a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(0, 255, 0, 0.4);
    font-weight: 600;
}

/* .disclaimer-content a:hover {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
} */

.footer {
    background: var(--card-bg);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--accent);
    position: relative;
    z-index: 1;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
}

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

.footer-links {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* .footer-links a:hover {
    color: var(--primary);
    opacity: 1;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
} */

.footer-links .divider {
    color: #333;
    font-size: 1.2rem;
    line-height: 1;
    margin: 0 0.2rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px var(--primary);
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #111;
    color: var(--text);
    font-size: 1.2rem;
}

/* .social-links a:hover {
    background-color: var(--primary);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 106, 0, 0.3);
} */

.copyright {
    font-size: 0.9rem;
    color: var(--secondary);
    margin-top: 1.5rem;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 2rem;
    box-sizing: border-box;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    width: 95%;
    max-width: 1400px;
    height: 90vh;
    background: linear-gradient(135deg, rgba(2, 26, 13, 0.95) 0%, rgba(4, 24, 18, 0.95) 100%);
    border-radius: 20px;
    overflow: hidden;
    padding: 0;
    border: 2px solid rgba(0, 255, 0, 0.2);
    box-shadow: 0 0 60px rgba(0, 255, 0, 0.3), 0 0 120px rgba(0, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(90deg, rgba(0, 255, 0, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
    border-bottom: 2px solid rgba(0, 255, 0, 0.2);
}

.modal-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.game-icon {
    font-size: 2rem;
}

.modal-title h2 {
    font-size: 1.5rem;
    color: var(--text);
    margin: 0;
    font-weight: 700;
}

.game-container {
    width: 100%;
    flex: 1;
    position: relative;
    background: #000;
    overflow: hidden;
}

.game-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.game-loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(0, 255, 0, 0.2);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.game-loading p {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
}

#game-frame {
    width: 100%;
    height: 100%;
    border: none;
    background: #000;
}

.modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: linear-gradient(90deg, rgba(0, 255, 0, 0.05) 0%, rgba(0, 255, 255, 0.05) 100%);
    border-top: 2px solid rgba(0, 255, 0, 0.2);
}

.game-info {
    color: var(--secondary);
    font-size: 0.9rem;
    margin: 0;
}

.close-btn-footer {
    background: var(--primary);
    color: #000;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* .close-btn-footer:hover {
    background: var(--primary-dark);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    transform: translateY(-2px);
} */

/* Close Button */
.close-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--primary);
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .close-btn:hover {
    color: var(--secondary);
    transform: scale(1.2) rotate(90deg);
} */

/* Particles */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
}

.hamburger:hover {
    background: var(--card-bg);
}

.hamburger.active {
    background: var(--card-bg);
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text);
    transition: all 0.3s ease;
    border-radius: 2px;
    position: relative;
}

/* Disclaimer Section */
.disclaimer {
    padding: 6rem 0;
    background: var(--background) !important;
    border-top: 1px solid var(--accent);
    border-bottom: 1px solid var(--accent);
    position: relative;
    z-index: 1;
}

.disclaimer .container {
    max-width: 1000px;
}

.disclaimer-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.disclaimer-card {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    margin-bottom: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--accent);
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* .disclaimer-card:hover {
    border-color: rgba(0, 255, 0, 0.2);
    box-shadow: 0 15px 40px rgba(0, 255, 0, 0.1), 0 0 30px rgba(0, 255, 0, 0.06);
    transform: translateY(-8px);
    background: rgba(0, 0, 0, 0.4);
} */

.disclaimer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: var(--background);
    border: 1px solid var(--accent);
    border-radius: 8px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* .disclaimer-card:hover .disclaimer-icon {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 255, 0, 0.25);
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.15);
    transform: scale(1.08);
} */

.disclaimer-icon i {
    font-size: 1.8rem;
    color: var(--primary);
    transition: all 0.4s ease;
}

/* .disclaimer-card:hover .disclaimer-icon i {
    transform: scale(1.25);
    color: var(--secondary);
} */

.disclaimer-content {
    flex: 1;
}

.disclaimer-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text);
    font-weight: 700;
}

.disclaimer-content p {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: var(--secondary);
    font-size: 0.9rem;
}

.disclaimer-content p:last-child {
    margin-bottom: 0;
}

.disclaimer-content strong {
    color: var(--primary);
    font-weight: 600;
}

.disclaimer-content a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid var(--primary);
    transition: all 0.3s ease;
}

/* .disclaimer-content a:hover {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
} */

/* Specific Card Colors */
.age-restriction .disclaimer-icon {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 0, 110, 0.15);
}

.age-restriction .disclaimer-icon i {
    color: #ff006e;
}

/* .age-restriction:hover .disclaimer-icon {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 0, 110, 0.3);
    box-shadow: 0 0 25px rgba(255, 0, 110, 0.2);
} */

.no-real-money .disclaimer-icon {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(168, 85, 247, 0.15);
}

.no-real-money .disclaimer-icon i {
    color: #a855f7;
}

/* .no-real-money:hover .disclaimer-icon {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.2);
} */

.disclaimer-footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(0, 255, 0, 0.08);
    margin-top: 2rem;
}

.disclaimer-footer p {
    margin-bottom: 0.5rem;
    color: var(--secondary);
    font-size: 0.85rem;
}

.disclaimer-footer p:last-child {
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-featured-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .featured-middle {
        text-align: center;
    }
    
    .features-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-section-title h2 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .modal-content {
        width: 98%;
        height: 95vh;
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-title h2 {
        font-size: 1.2rem;
    }
    
    .modal-footer {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 1.5rem;
    }
    
    .game-info {
        text-align: center;
    }
    
    .close-btn-footer {
        width: 100%;
    }
    
    .hamburger {
        display: block;
        position: fixed;
        top: 1rem;
        right: 1rem;
        z-index: 1002;
    }
    
    .header.scrolled .hamburger {
        top: 0.8rem;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 80px);
        background: var(--card-bg);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 2rem 0;
        transition: all 0.3s ease-in-out;
        z-index: 999;
        border-left: 1px solid var(--accent);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
    }
    
    .header.scrolled .nav-links {
        top: 70px;
        height: calc(100vh - 70px);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 1.5rem 0;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-links a {
        color: var(--text);
        font-size: 1.1rem;
        font-weight: 500;
        padding: 0.5rem 1rem;
        border-radius: 4px;
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover {
        background: var(--background);
        color: var(--primary);
    }
    
    /* Staggered animation for menu items */
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-featured-section {
        padding: 2rem 1rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn-live-streaming {
        display: none;
    }
}

@media (max-width: 576px) {
    .age-popup-box {
        max-width: 95%;
        border-radius: 15px;
    }
    
    .age-popup-header {
        padding: 1.5rem 1rem;
    }
    
    .age-icon-badge {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .age-popup-content {
        padding: 1.5rem 1rem;
    }
    
    .age-popup-box h2 {
        font-size: 24px;
    }
    
    .age-warning {
        padding: 0.8rem;
    }
    
    .age-warning i {
        font-size: 1.2rem;
    }
    
    .age-btns {
        flex-direction: column;
        gap: 10px;
        padding: 1rem;
    }
    
    .btn-age {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .age-popup-footer {
        padding: 0.8rem 1rem;
    }
    
    .age-popup-footer p {
        font-size: 0.75rem;
    }
    
    .hero {
        padding-top: 60px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-highlight {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .hero-featured-section {
        padding: 1.5rem;
        gap: 1rem;
        border-radius: 12px;
    }
    
    .featured-middle h3 {
        font-size: 1.3rem;
    }
    
    .featured-middle p {
        font-size: 0.9rem;
    }
    
    .hero-features {
        gap: 1.5rem;
    }
    
    .feature-badge {
        font-size: 0.85rem;
    }
    
    .features-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-section-title h2 {
        font-size: 1.3rem;
    }
    
    .feature-item-new {
        padding: 1rem;
        gap: 1rem;
    }
    
    .feature-icon-box {
        width: 45px;
        height: 45px;
    }
    
    .feature-item-new h4 {
        font-size: 1rem;
    }
    
    .feature-item-new p {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}
.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}
/* Age Popup Background */
.age-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    backdrop-filter: blur(8px);
}

/* Popup Box */
.age-popup-box {
    background: linear-gradient(135deg, rgba(2, 26, 13, 0.98) 0%, rgba(4, 24, 18, 0.95) 100%);
    padding: 0;
    width: 90%;
    max-width: 450px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(0, 255, 0, 0.3);
    box-shadow: 0 0 60px rgba(0, 255, 0, 0.4), 0 0 120px rgba(0, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    animation: popup-appear 0.5s ease-out;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@keyframes popup-appear {
    from {
        opacity: 0;
        transform: scale(0.8) rotateX(-10deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotateX(0deg);
    }
}

.age-popup-header {
    background: linear-gradient(90deg, rgba(0, 255, 0, 0.15) 0%, rgba(0, 255, 255, 0.15) 100%);
    border-bottom: 2px solid rgba(0, 255, 0, 0.2);
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.age-icon-badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 900;
    color: #000;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.5), 0 0 60px rgba(255, 170, 0, 0.2);
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(0, 255, 0, 0.5), 0 0 60px rgba(255, 170, 0, 0.2);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 40px rgba(0, 255, 0, 0.7), 0 0 80px rgba(255, 170, 0, 0.3);
    }
}

.age-popup-content {
    padding: 1.5rem 1.5rem;
}

.age-popup-box h2 {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 0.3rem 0;
    font-size: 26px;
    font-weight: 900;
}

.age-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.age-warning {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.1) 0%, rgba(0, 255, 255, 0.05) 100%);
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 10px;
    padding: 0.8rem;
    margin-bottom: 1rem;
}

.age-warning i {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.age-warning p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
    text-align: left;
}

.age-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

/* Buttons */
.age-btns {
    display: flex;
    gap: 10px;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(90deg, rgba(0, 255, 0, 0.05) 0%, rgba(0, 255, 255, 0.05) 100%);
    border-top: 1px solid rgba(0, 255, 0, 0.15);
}

.btn-age {
    flex: 1;
    padding: 12px 14px;
    font-size: 14px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Yes Button */
.btn-age.yes {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #000;
    font-weight: 900;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
}

/* .btn-age.yes:hover {
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.8), 0 0 80px rgba(255, 170, 0, 0.4);
    transform: translateY(-3px) scale(1.05);
} */

.btn-age.yes:active {
    transform: translateY(-1px) scale(1.02);
}

/* No Button */
.btn-age.no {
    background: rgba(255, 255, 255, 0.08);
    color: var(--primary);
    border: 2px solid var(--primary);
}

/* .btn-age.no:hover {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.2) 0%, rgba(255, 170, 0, 0.1) 100%);
    border-color: var(--secondary);
    color: var(--secondary);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    transform: translateY(-3px);
} */

.btn-age.no:active {
    transform: translateY(-1px);
}

.age-popup-footer {
    padding: 0.8rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(0, 255, 0, 0.1);
}

.age-popup-footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    margin: 0;
}

.age-popup-footer a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

/* .age-popup-footer a:hover {
    color: var(--secondary);
    text-decoration: underline;
} */

/* Age Verification Popup Styles */
.age-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.age-popup-content {
    background: var(--card-bg);
    border: 2px solid var(--accent);
    border-radius: 16px;
    padding: 3rem;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
}

.age-popup-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444, #dc2626);
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.age-popup-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.age-popup-icon svg {
    filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.5));
    animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.age-popup-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.age-popup-description {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.age-popup-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.age-btn {
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
    position: relative;
    overflow: hidden;
}

.age-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;
}

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

.age-btn-confirm {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border: 2px solid #22c55e;
}

.age-btn-confirm:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    border-color: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}

.age-btn-deny {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    border: 2px solid #dc2626;
}

.age-btn-deny:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    border-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.age-btn:active {
    transform: translateY(0);
}

/* Mobile responsive */
@media (max-width: 480px) {
    .age-popup-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .age-popup-title {
        font-size: 1.5rem;
    }
    
    .age-popup-description {
        font-size: 0.9rem;
    }
    
    .age-popup-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .age-btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Hide popup when confirmed */
.age-popup-overlay.hidden {
    display: none;
}
