:root {
    --gt-orange: #FF6B00;
    --gorilla-orange: #FF6B00;
    --jungle-green: #00CC88;
    --vr-blue: #00A3FF;
    --cyber-black: #0A0A0A;
    --gt-dark: #0A0A0A;
    --neon-pulse: 0 0 25px rgba(255,107,0,0.3);
    --electric-purple: #9a00b7;
    --toxic-green: #48ff00;
}
a{
    text-decoration: none;
}

body {
    background: var(--gt-dark);
    font-family: 'Rajdhani', sans-serif;
    color: white;
    overflow-x: hidden;
    line-height: 1.6;
}

/* 3D Animated Header */
.cyber-header {
    position: relative;
    text-align: center;
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(20,0,30,0.9) 100%);
    border-bottom: 3px solid var(--gt-orange);
    overflow: hidden;
}

.cyber-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--electric-purple), transparent);
    animation: scanline 3s linear infinite;
}

@keyframes scanline {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.container {
    width: 100%;
    max-width: 95%;
    margin: 0 auto;
    padding: 0 20px;
}

.main-logo {
    height: 180px;
    border-radius: 30px;
    border: 3px solid var(--electric-purple);
    filter: drop-shadow(0 0 15px rgba(154, 0, 183, 0.7));
    margin: 0 auto 20px auto;
    display: block;
    transition: transform 0.3s;
}

.main-logo:hover {
    transform: scale(1.05) rotate(2deg);
}

h1, h2, h3 {
    font-family: 'Kanit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 {
    font-size: 4em;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--gt-orange), var(--electric-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: #ffffffc7;
    text-shadow: 0 0 20px rgba(154, 0, 183, 0.3);
    position: relative;
    display: inline-block;
}

h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gt-orange), var(--electric-purple));
    border-radius: 3px;
}

/* Glowing Download Button */
.dome-btn {
    background: linear-gradient(145deg, var(--electric-purple) 30%, #b700e0 70%);
    padding: 25px 60px;
    font-size: 26px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    color: white;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    transition: all 0.4s;
    box-shadow: 0 0 25px rgba(154, 0, 183, 0.5);
    margin: 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.dome-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: 0.5s;
    z-index: -1;
}

.dome-btn:hover::before {
    left: 100%;
}

.dome-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(154, 0, 183, 0.8);
}

/* Stats Grid with Hover Effects */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 50px;
    background: rgba(10, 0, 20, 0.7);
    border-radius: 20px;
    margin: 40px 0;
    border: 1px solid rgba(154, 0, 183, 0.3);
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    background: rgba(20, 0, 30, 0.5);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(154, 0, 183, 0.2);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(154, 0, 183, 0.3);
    background: rgba(30, 0, 40, 0.7);
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gt-orange), var(--electric-purple));
}

.stat-card i {
    font-size: 3em;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--gt-orange), var(--electric-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.stat-card p {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Feature List with Icons */
.feature-list {
    columns: 2;
    column-gap: 40px;
    padding: 3rem;
    background: rgba(10, 0, 20, 0.7);
    border-radius: 20px;
    margin: 3rem 0;
    border: 1px solid rgba(154, 0, 183, 0.3);
    position: relative;
    overflow: hidden;
}

.feature-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(154, 0, 183, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.feature-list p {
    padding: 1.5rem;
    margin: 0.8rem 0;
    background: rgba(30, 0, 40, 0.5);
    border-left: 4px solid var(--gt-orange);
    border-radius: 8px;
    transition: all 0.3s;
    break-inside: avoid;
    position: relative;
    overflow: hidden;
}

.feature-list p:hover {
    background: rgba(40, 0, 50, 0.7);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-list p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gt-orange);
}

.feature-list i {
    color: var(--gt-orange);
    margin-right: 1rem;
    font-size: 1.2em;
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    background: rgba(10, 0, 20, 0.7);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://assets.codepen.io/13471/sparkles.gif') center/cover;
    opacity: 0.1;
    z-index: -1;
}

.swiper-container {
    width: 100%;
    padding: 30px 0;
}

.user-comment {
    background: linear-gradient(135deg, rgba(30, 0, 40, 0.8) 0%, rgba(10, 0, 20, 0.9) 100%);
    padding: 30px;
    border-radius: 20px;
    margin: 20px;
    position: relative;
    border: 1px solid rgba(154, 0, 183, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.user-comment:nth-child(2n) {
    animation-delay: 0.3s;
}

.user-comment:nth-child(3n) {
    animation-delay: 0.6s;
}

.user-comment:nth-child(4n) {
    animation-delay: 0.9s;
}

.user-comment::before {
    content: "★ ★ ★ ★ ★";
    color: var(--gt-orange);
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--cyber-black);
    padding: 0 10px;
    font-size: 1.2em;
}

.user-comment .user-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.user-comment .user-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    border: 2px solid var(--gt-orange);
}

.user-comment .user-info h4 {
    font-family: 'Kanit', sans-serif;
    font-size: 1.3em;
    margin: 0;
    color: white;
}

.user-comment p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #ddd;
}

/* Animated Mod Count Section */
.mod-count-section {
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mod-count-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(154, 0, 183, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.mod-count-container {
    position: relative;
    display: inline-block;
    margin: 0 auto;
}

.mod-count {
    font-family: 'Kanit', sans-serif;
    font-size: 5em;
    font-weight: 800;
    background: linear-gradient(45deg, var(--gt-orange), var(--electric-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 20px rgba(154, 0, 183, 0.3);
}

.mod-count-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5em;
    color: white;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.orbital-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
}

.orbital-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    animation: orbit 15s linear infinite;
}

.orbital-circle:nth-child(1) {
    width: 100%;
    height: 100%;
    border-color: rgba(255, 107, 0, 0.3);
    animation-delay: 0s;
}

.orbital-circle:nth-child(2) {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-color: rgba(154, 0, 183, 0.3);
    animation-delay: -2s;
    animation-direction: reverse;
}

.orbital-circle:nth-child(3) {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-color: rgba(0, 204, 136, 0.3);
    animation-delay: -4s;
}

@keyframes orbit {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* CPU Checker Section with ApexCharts */
.cpu-checker-section {
    padding: 60px 0;
    background: rgba(10, 0, 20, 0.7);
    border-radius: 20px;
    border: 1px solid rgba(154, 0, 183, 0.3);
}

.cpu-checker-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
    background: linear-gradient(45deg, var(--gt-orange), var(--electric-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#modUsageChart {
    width: 100%;
    height: 400px;
    margin: 0 auto;
}

/* New Chart for Premium Mods */
#premiumModsChart {
    width: 100%;
    height: 400px;
    margin: 0 auto;
}

/* Footer Section */
.security-footer {
    text-align: center;
    padding: 30px;
    background: rgba(10, 0, 20, 0.9);
    margin-top: 80px;
    border-top: 1px solid rgba(154, 0, 183, 0.3);
    position: relative;
}

.security-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--electric-purple), transparent);
    animation: scanline 3s linear infinite;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2em;
    padding: 15px 30px;
    background: rgba(20, 0, 30, 0.7);
    border-radius: 50px;
    border: 1px solid var(--gt-orange);
}

.security-badge i {
    color: var(--toxic-green);
    font-size: 1.5em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .feature-list {
        columns: 1;
    }
    
    h1 {
        font-size: 3em;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    
    .dome-btn {
        padding: 20px 40px;
        font-size: 20px;
    }
    
    .mod-count {
        font-size: 3em;
    }
    
    .orbital-circles {
        width: 200px;
        height: 200px;
    }
    
    .user-comment {
        margin: 10px;
        padding: 20px;
    }
    
    .user-comment .user-info img {
        width: 50px;
        height: 50px;
    }
}

/* Floating Particles Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    opacity: 0.3;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* Logo and Title Container */
.logo-title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}
    /* Cyber Slider Styles */
    .cyber-slider-container {
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
        overflow: hidden;
        border-radius: 20px;
        box-shadow: 0 10px 50px rgba(154, 0, 183, 0.3);
        border: 1px solid rgba(154, 0, 183, 0.3);
    }
    
    .cyber-slider-track {
        display: flex;
        transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
        height: 500px;
    }
    
    .cyber-slide {
        min-width: 100%;
        position: relative;
    }
    
    .slide-content {
        position: relative;
        height: 100%;
        width: 100%;
    }
    
    .slide-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.7);
        transition: filter 0.5s;
    }
    
    .cyber-slide:hover .slide-image {
        filter: brightness(0.5);
    }
    
    .slide-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 40px;
        background: linear-gradient(transparent, rgba(10, 0, 20, 0.9));
        color: white;
        transform: translateY(20px);
        opacity: 0;
        transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    
    .cyber-slide:hover .slide-overlay {
        transform: translateY(0);
        opacity: 1;
    }
    
    .slide-overlay h3 {
        font-family: 'Kanit', sans-serif;
        font-size: 2.5em;
        margin-bottom: 10px;
        background: linear-gradient(45deg, var(--gt-orange), var(--electric-purple));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: 0 0 15px rgba(154, 0, 183, 0.3);
    }
    
    .slide-overlay p {
        font-size: 1.2em;
        margin-bottom: 15px;
        max-width: 600px;
    }
    
    .slide-tag {
        display: inline-block;
        padding: 5px 15px;
        border-radius: 20px;
        font-family: 'Orbitron', sans-serif;
        font-size: 0.9em;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: white;
    }
    
    /* Cyber Controls */
    .cyber-controls {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        transform: translateY(-50%);
        z-index: 10;
    }
    
    .cyber-prev, .cyber-next {
        background: rgba(20, 0, 30, 0.7);
        border: 2px solid var(--electric-purple);
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s;
        font-size: 1.5em;
        box-shadow: 0 0 20px rgba(154, 0, 183, 0.3);
    }
    
    .cyber-prev:hover, .cyber-next:hover {
        background: var(--electric-purple);
        transform: scale(1.1);
        box-shadow: 0 0 30px rgba(154, 0, 183, 0.5);
    }
    
    /* Cyber Dots Navigation */
    .cyber-dots {
        display: flex;
        gap: 10px;
    }
    
    .cyber-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: all 0.3s;
        border: 1px solid transparent;
    }
    
    .cyber-dot.active {
        background: var(--gt-orange);
        transform: scale(1.3);
        box-shadow: 0 0 10px var(--gt-orange);
    }
    
    /* Cyber Progress Bar */
    .cyber-progress {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: rgba(255, 255, 255, 0.1);
        z-index: 10;
    }
    
    .cyber-progress-bar {
        height: 100%;
        width: 0;
        background: linear-gradient(90deg, var(--gt-orange), var(--electric-purple));
        transition: width 0.1s linear;
    }
    
    /* Glitch Effect on Hover */
    .cyber-slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: inherit;
        opacity: 0;
        z-index: 2;
        transition: opacity 0.3s;
    }
    
    .cyber-slide:hover::before {
        opacity: 0.1;
        animation: glitch 0.5s infinite;
    }
    
    @keyframes glitch {
        0% { transform: translate(0); }
        20% { transform: translate(-5px, 5px); }
        40% { transform: translate(-5px, -5px); }
        60% { transform: translate(5px, 5px); }
        80% { transform: translate(5px, -5px); }
        100% { transform: translate(0); }
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .cyber-slider-track {
            height: 350px;
        }
        
        .slide-overlay {
            padding: 20px;
        }
        
        .slide-overlay h3 {
            font-size: 1.8em;
        }
        
        .cyber-prev, .cyber-next {
            width: 50px;
            height: 50px;
            font-size: 1.2em;
        }
    }

    /* Cyber Circle Animation Styles */
    .cyber-counter-wrapper {
        position: relative;
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }
    
    .cyber-circle-chart {
        width: 100%;
        height: 100%;
        transform: rotate(-90deg);
    }
    
    .cyber-circle-progress {
        transition: stroke-dashoffset 0.1s ease-out;
    }
    
    .cyber-counter-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 100%;
    }
    
    .cyber-count {
        font-family: 'Orbitron', sans-serif;
        font-size: 3.5rem;
        font-weight: 700;
        background: linear-gradient(45deg, var(--gt-orange), var(--electric-purple));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: 0 0 15px rgba(154, 0, 183, 0.5);
        margin-bottom: 5px;
    }
    
    .cyber-count-label {
        font-family: 'Rajdhani', sans-serif;
        font-size: 1.2rem;
        color: white;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    
    /* Cyber Notices */
    .cyber-notice {
        position: fixed;
        font-size: 2rem;
        font-weight: bold;
        padding: 15px 30px;
        border-radius: 8px;
        z-index: 100;
        opacity: 0;
        transform: scale(0.8) translateY(20px);
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        pointer-events: none;
        font-family: 'Kanit', sans-serif;
        text-shadow: 0 0 10px rgba(0,0,0,0.7);
        box-shadow: 0 5px 25px rgba(0,0,0,0.3);
        border: 2px solid;
        animation: cyber-pulse 2s infinite;
    }
    
    .cyber-notice.show {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    
    .cyber-notice.free {
        background: rgba(255, 107, 0, 0.9);
        border-color: #ff8c42;
        color: white;
    }
    
    .cyber-notice.ghost {
        background: rgba(154, 0, 183, 0.9);
        border-color: #c154fe;
        color: white;
    }
    
    .cyber-notice.detected {
        background: rgba(0, 204, 136, 0.9);
        border-color: #00ffaa;
        color: white;
    }
    
    .cyber-notice.plus {
        background: linear-gradient(45deg, rgba(255, 107, 0, 0.9), rgba(154, 0, 183, 0.9));
        border-color: #ff6b00;
        color: white;
        font-size: 2.5rem;
    }
    
    @keyframes cyber-pulse {
        0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,107,0,0.4); }
        50% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(255,107,0,0); }
    }
    
    /* Glitch effect for notices */
    .cyber-notice::before {
        content: attr(data-text);
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: inherit;
        border-radius: inherit;
        opacity: 0.8;
        z-index: -1;
        animation: glitch-anim 0.3s infinite;
        display: none;
    }
    
    .cyber-notice.show::before {
        display: block;
    }
    
    @keyframes glitch-anim {
        0% { transform: translate(0); }
        20% { transform: translate(-3px, 3px); }
        40% { transform: translate(-3px, -3px); }
        60% { transform: translate(3px, 3px); }
        80% { transform: translate(3px, -3px); }
        100% { transform: translate(0); }
    }
    
    @media (max-width: 768px) {
        .cyber-counter-wrapper {
            width: 250px;
            height: 250px;
        }
        
        .cyber-count {
            font-size: 2.5rem;
        }
        
        .cyber-count-label {
            font-size: 1rem;
        }
        
        .cyber-notice {
            font-size: 1.5rem;
            padding: 10px 20px;
        }
        
        .cyber-notice.plus {
            font-size: 2rem;
        }
    }
    /* Animations */
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    @keyframes pulse {
        0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
        70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 0, 0, 0); }
        100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
    }
    @keyframes spin {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    /* Hover Effects */
    .leaderboard-entry:hover {
        transform: translateX(5px);
        box-shadow: 0 5px 15px rgba(154, 0, 183, 0.3);
        transition: all 0.3s;
    }

    /* Modern Content Locker Styles */
    #contentLockerOverlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.95);
        z-index: 9999;
        backdrop-filter: blur(10px);
        overflow-y: auto;
    }

    #contentLocker {
        background: linear-gradient(135deg, rgba(20, 0, 30, 0.95) 0%, rgba(10, 0, 20, 0.98) 100%);
        border-radius: 16px;
        padding: 30px;
        width: 90%;
        max-width: 600px;
        margin: 10vh auto;
        color: white;
        box-shadow: 0 0 30px rgba(154, 0, 183, 0.5);
        border: 1px solid var(--electric-purple);
        position: relative;
        overflow: hidden;
        animation: fadeInUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    #contentLocker::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, transparent, var(--gt-orange), transparent);
        animation: scanline 3s linear infinite;
    }

    .locker-header {
        text-align: center;
        margin-bottom: 25px;
        position: relative;
    }

    .locker-header h2 {
        color: var(--gt-orange);
        font-size: 2rem;
        margin-bottom: 10px;
        font-weight: 700;
        letter-spacing: 1px;
        font-family: 'Kanit', sans-serif;
    }

    .locker-header p {
        color: #aaa;
        font-size: 1rem;
    }

    /* Timer Section */
    .timer-section {
        text-align: center;
        margin: 30px 0;
    }

    .timer-text {
        font-family: 'Orbitron', sans-serif;
        color: var(--toxic-green);
        margin-bottom: 10px;
        font-size: 1.2rem;
    }

    .timer-container {
        width: 100%;
        height: 8px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 20px;
    }

    .timer-progress {
        height: 100%;
        width: 0;
        background: linear-gradient(90deg, var(--gt-orange), var(--electric-purple));
        transition: width 0.1s linear;
        border-radius: 10px;
    }

    /* Offer Content */
    #offerContent {
        display: none;
        flex-direction: column;
        height: 100%;
    }

    .offer-container {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 20px;
        background: rgb(0, 0, 0);
        border-radius: 12px;
        border: 1px dashed var(--electric-purple);
        margin-bottom: 20px;
    }

    /* Offer Button */
    .offer-button {
        background: linear-gradient(145deg, var(--electric-purple) 30%, #b700e0 70%);
        border: none;
        padding: 18px;
        border-radius: 8px;
        color: white;
        cursor: pointer;
        font-weight: bold;
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s;
        font-family: 'Orbitron', sans-serif;
        box-shadow: 0 0 20px rgba(154, 0, 183, 0.3);
        position: relative;
        overflow: hidden;
    }

    .offer-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 30px rgba(154, 0, 183, 0.5);
    }

    .offer-button::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: 0.5s;
    }

    .offer-button:hover::before {
        left: 100%;
    }

    /* Tutorial Button */
    .tutorial-button {
        background: rgba(154, 0, 183, 0.2);
        border: 1px solid var(--electric-purple);
        padding: 12px;
        border-radius: 8px;
        color: white;
        cursor: pointer;
        font-weight: bold;
        transition: all 0.3s;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .tutorial-button:hover {
        background: rgba(154, 0, 183, 0.4);
    }

    /* Cancel Button */
    .cancel-button {
        background: rgba(224, 0, 0, 0.1);
        border: 1px solid #f50000;
        padding: 12px;
        border-radius: 8px;
        color: white;
        cursor: pointer;
        font-weight: bold;
        transition: all 0.3s;
        width: 100%;
    }

    .cancel-button:hover {
        background: rgba(224, 0, 0, 0.2);
    }

    /* Tutorial Popup */
    .tutorial-popup {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.9);
        z-index: 10000;
        backdrop-filter: blur(8px);
    }

    .tutorial-content {
        background: linear-gradient(135deg, rgba(20, 0, 30, 0.95) 0%, rgba(10, 0, 20, 0.98) 100%);
        border-radius: 16px;
        padding: 30px;
        width: 90%;
        max-width: 600px;
        margin: 10vh auto;
        color: white;
        box-shadow: 0 0 30px rgba(154, 0, 183, 0.5);
        border: 1px solid var(--electric-purple);
        position: relative;
    }

    .tutorial-close {
        position: absolute;
        top: 15px;
        right: 15px;
        background: transparent;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
    }

    .tutorial-steps {
        margin: 20px 0;
    }

    .tutorial-step {
        display: flex;
        align-items: flex-start;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(154, 0, 183, 0.3);
    }

    .step-number {
        background: var(--gt-orange);
        color: white;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
        font-weight: bold;
    }

    .step-content h4 {
        margin: 0 0 10px 0;
        color: var(--gt-orange);
    }

    .step-content p {
        margin: 0;
        color: #ddd;
    }

    /* Loading Animation */
    #loadingSpinner {
        text-align: center;
        padding: 30px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .spinner {
        width: 70px;
        height: 70px;
        border: 5px solid rgba(154, 0, 183, 0.2);
        border-top: 5px solid var(--toxic-green);
        border-radius: 50%;
        animation: spin 1s linear infinite;
        margin-bottom: 20px;
    }

    .loading-text {
        color: var(--toxic-green);
        font-family: 'Orbitron', sans-serif;
        margin-bottom: 10px;
    }

    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    @keyframes scanline {
        0% { transform: translateX(-100%); }
        100% { transform: translateX(100%); }
    }

    @media (max-width: 768px) {
        #contentLocker {
            width: 95%;
            padding: 20px;
        }
        
        .locker-header h2 {
            font-size: 1.5rem;
        }
    }