/* VentaShield - Modern Gaming Design */

:root {
    --primary: #00d4ff;
    --primary-dark: #00a8cc;
    --secondary: #7b2cbf;
    --accent: #ff006e;
    --dark: #0a0a0f;
    --dark-2: #12121a;
    --dark-3: #1a1a25;
    --light: #ffffff;
    --light-dim: #a0a0b0;
    --success: #00ff88;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(123, 44, 191, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 0, 110, 0.05) 0%, transparent 50%);
}

.bg-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

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

.logo-icon {
    font-size: 1.5rem;
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    color: var(--light-dim);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--light);
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
}

.hero-content {
    flex: 1;
    max-width: 700px;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(90deg, var(--success), var(--primary));
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.3); }
    50% { box-shadow: 0 0 40px rgba(0, 255, 136, 0.6); }
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-main {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    background: linear-gradient(90deg, var(--light), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-sub {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 4px;
    margin-top: 0.5rem;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--light-dim);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--dark);
    box-shadow: 0 4px 30px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(0, 212, 255, 0.5);
}

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

.btn-secondary:hover {
    background: var(--primary);
    color: var(--dark);
}

.btn-icon {
    font-size: 1.2rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--light-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shield-icon {
    position: relative;
    width: 300px;
    height: 300px;
}

.shield-outer {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.shield-outer::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid var(--secondary);
    border-radius: 50%;
    animation: rotate 15s linear infinite reverse;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.shield-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 60px rgba(0, 212, 255, 0.3),
        inset 0 0 60px rgba(0, 212, 255, 0.1);
}

.shield-inner span {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 600px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, var(--light), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--light-dim);
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

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

.feature-card {
    background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--light);
}

.feature-card p {
    color: var(--light-dim);
    font-size: 0.95rem;
}

/* How It Works */
.how-it-works {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.05));
}

.steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.step {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    position: relative;
}

.step::after {
    content: '→';
    position: absolute;
    top: 50%;
    right: -1rem;
    font-size: 2rem;
    color: var(--primary);
    transform: translateY(-50%);
}

.step:last-child::after {
    display: none;
}

.step-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0, 212, 255, 0.15);
    line-height: 1;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    display: block;
}

.step-content {
    background: var(--dark-2);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
}

.step-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.step-content p {
    color: var(--light-dim);
}

/* Download Section */
.download {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    min-height: 500px;
}

.download-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.download-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.download-content p {
    color: var(--light-dim);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.download-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    color: var(--success);
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, var(--success), var(--primary));
    color: var(--dark);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(0, 255, 136, 0.3);
}

.btn-download:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 50px rgba(0, 255, 136, 0.5);
}

.download-note {
    margin-top: 1rem;
    color: var(--light-dim);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 6rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    display: block;
    min-height: 500px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--dark-2);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-item h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.faq-item p {
    color: var(--light-dim);
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing {
    margin-bottom: 2rem;
}

.price-box {
    display: inline-block;
    background: var(--dark-3);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 1.5rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.price-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.price-original {
    font-size: 1.2rem;
    color: var(--light-dim);
    text-decoration: line-through;
    margin-bottom: 0.25rem;
}

.price-original span {
    font-size: 0.9rem;
}

.price-current {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--light);
}

.price-current span {
    font-size: 1.2rem;
    color: var(--primary);
}

.price-discount {
    margin-top: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 0, 110, 0.2);
    color: var(--accent);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-desc {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .title-main {
        font-size: 2.5rem;
    }

    .title-sub {
        font-size: 1.5rem;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step {
        max-width: 100%;
    }

    .step::after {
        display: none;
    }
}

/* Footer */
.footer {
    padding: 4rem 2rem 2rem;
    background: var(--dark-2);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    min-height: 300px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    font-size: 1.5rem;
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary);
}

.footer-desc {
    color: var(--light-dim);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.footer-links a {
    color: var(--light-dim);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
    padding: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-copy {
    color: var(--light-dim);
    font-size: 0.9rem;
    margin-top: 2rem;
}

/* Authentication Styles */
.auth-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-login {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.btn-login:hover {
    background: rgba(0, 212, 255, 0.1);
}

.btn-register {
    background: var(--primary);
    color: var(--dark);
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.btn-register:hover {
    background: #00b8e6;
    transform: translateY(-2px);
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-email {
    color: var(--light);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
}

.btn-logout {
    background: rgba(255, 0, 110, 0.1);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
}

.btn-logout:hover {
    background: var(--accent);
    color: var(--light);
}

.hidden {
    display: none !important;
}

/* Modal Styles - Glassmorphism */
.modal {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(10, 10, 15, 0.85); 
    backdrop-filter: blur(8px);
}

.modal-content {
    background: linear-gradient(135deg, rgba(26, 26, 37, 0.9), rgba(18, 18, 26, 0.95));
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.15);
    margin: 10% auto; 
    padding: 40px;
    border-radius: 16px;
    width: 90%; 
    max-width: 450px;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

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

.close-btn {
    color: var(--light-dim);
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close-btn:hover,
.close-btn:focus {
    color: var(--accent);
    text-decoration: none;
}

.modal h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--light);
    margin-bottom: 30px;
    text-align: center;
    font-size: 2rem;
    background: linear-gradient(90deg, var(--light), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    color: var(--light-dim);
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(10, 10, 15, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    color: var(--light);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.modal-btn {
    width: 100%;
    margin-top: 10px;
    justify-content: center;
}

.modal-footer {
    text-align: center;
    margin-top: 25px;
    color: var(--light-dim);
    font-size: 0.9rem;
}

.modal-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.modal-footer a:hover {
    text-decoration: underline;
}

.error-message {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-align: center;
    min-height: 20px;
}

/* Profile Button */
.btn-profile {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--light);
    padding: 0.4rem 1.2rem;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-profile:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--primary);
}

/* Profile Modal */
.profile-modal-content {
    max-width: 520px;
}

.profile-header {
    text-align: center;
    margin-bottom: 30px;
}

.profile-avatar {
    font-size: 4rem;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.4));
}

.profile-info-card {
    background: rgba(10, 10, 15, 0.5);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.profile-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.profile-info-row:last-child {
    border-bottom: none;
}

.profile-label {
    color: var(--light-dim);
    font-size: 0.95rem;
}

.profile-value {
    color: var(--light);
    font-weight: 600;
    font-size: 0.95rem;
}

.profile-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.purchases-list {
    background: rgba(10, 10, 15, 0.5);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 12px;
    padding: 20px;
    max-height: 200px;
    overflow-y: auto;
}

.no-purchases {
    color: var(--light-dim);
    text-align: center;
    font-size: 0.9rem;
}

.purchase-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.purchase-item:last-child {
    border-bottom: none;
}

.purchase-plan {
    font-weight: 600;
    color: var(--light);
}

.purchase-date {
    color: var(--light-dim);
    font-size: 0.85rem;
}

.purchase-amount {
    color: var(--success);
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
}

.sub-active {
    color: var(--success);
    font-weight: 700;
}

.sub-inactive {
    color: var(--accent);
    font-weight: 700;
}

/* ===================== SHOP SECTION ===================== */

.shop-section {
    padding-bottom: 6rem;
}

/* Banner */
/* Home Games Banner (LoL + Valorant split) */
.games-banner-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.games-banner {
    position: relative;
    height: 420px;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.games-banner-bg {
    position: absolute;
    inset: 0;
    display: flex;
}

.games-img {
    width: 50%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: brightness(0.55) saturate(1.3);
    transition: filter 0.5s ease, transform 0.6s ease;
}

.games-img-valorant {
    object-position: center;
    background: #0f1923;
}

.games-img:hover {
    filter: brightness(0.8) saturate(1.6);
    transform: scale(1.03);
}

.games-banner-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(10,10,15,0.0) 45%, rgba(10,10,15,0.6) 50%, rgba(10,10,15,0.0) 55%),
        linear-gradient(to bottom, rgba(10,10,15,0.2) 0%, rgba(10,10,15,0) 40%, rgba(10,10,15,0.7) 100%);
}

@media (max-width: 768px) {
    .games-banner { height: 280px; }
    .games-banner-section { padding: 2rem 1rem; }
}

.shop-banner {
    position: relative;
    height: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-banner-bg {
    position: absolute;
    inset: 0;
    display: flex;
}

.banner-img {
    flex: 1;
    width: 33.33%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: brightness(0.45) saturate(1.4);
    transition: filter 0.5s ease;
}

.banner-img:hover {
    filter: brightness(0.6) saturate(1.8);
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 15, 0.2) 0%,
        rgba(10, 10, 15, 0.0) 30%,
        rgba(10, 10, 15, 0.5) 70%,
        rgba(10, 10, 15, 1) 100%
    );
}

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

.shop-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
    animation: glow 2s ease-in-out infinite;
}

.shop-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--light);
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
    margin-bottom: 0.8rem;
}

.shop-title span {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.shop-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.75);
}

/* Pricing Area */
.shop-pricing-area {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Champion Strip */
.champion-strip {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.champion-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.champion-card:hover {
    transform: translateY(-8px);
}

.champion-card img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid rgba(0, 212, 255, 0.4);
    object-fit: cover;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.champion-card:hover img {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.champion-card span {
    font-size: 0.8rem;
    color: var(--light-dim);
    font-weight: 600;
}

/* Shop Card */
.shop-card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.shop-card {
    position: relative;
    background: linear-gradient(135deg, rgba(26,26,37,0.95), rgba(18,18,26,0.98));
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 24px;
    padding: 3rem;
    width: 100%;
    max-width: 520px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 212, 255, 0.08);
}

.shop-card-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.shop-card-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--accent), #ff6b35);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.shop-card-top {
    margin-bottom: 1.5rem;
}

.shop-plan-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--light);
}

.shop-plan-type {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.2rem;
}

.shop-card-price {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.shop-price-old {
    font-size: 1.2rem;
    color: var(--light-dim);
    margin-bottom: 0.3rem;
}

.shop-price-old span {
    font-size: 0.9rem;
}

.shop-price-current {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--light);
    line-height: 1;
}

.shop-price-current span {
    font-size: 1.3rem;
    color: var(--primary);
}

.shop-price-tag {
    display: inline-block;
    margin-top: 0.6rem;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 0, 110, 0.15);
    border: 1px solid rgba(255, 0, 110, 0.3);
    color: var(--accent);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Features List */
.shop-features-list {
    list-style: none;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.shop-features-list li {
    color: var(--light-dim);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check {
    color: var(--success);
    font-weight: 700;
}

/* Buy Button */
.shop-buy-btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--light);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    justify-content: center;
    box-shadow: 0 8px 40px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.shop-buy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 50px rgba(0, 212, 255, 0.5);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 2.5s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50% { left: 150%; }
    100% { left: 150%; }
}

/* Slots remaining */
.shop-slots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.2rem;
    color: var(--light-dim);
    font-size: 0.9rem;
}

.shop-slots strong {
    color: var(--accent);
}

.slot-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    animation: blink 1s ease-in-out infinite;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    color: var(--light-dim);
    font-weight: 600;
}

@media (max-width: 600px) {
    .shop-title { font-size: 2.2rem; }
    .shop-features-list { grid-template-columns: 1fr; }
    .shop-card { padding: 2rem 1.5rem; }
    .shop-price-current { font-size: 3rem; }
}

/* ===================== STATUS PAGE ===================== */

.status-section {
    padding: 8rem 0 6rem 0;
    min-height: 100vh;
}

.status-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.status-header {
    text-align: center;
    margin-bottom: 4rem;
}

.status-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--light);
    margin-bottom: 0.5rem;
}

.status-title span {
    color: var(--primary);
}

.status-subtitle {
    color: var(--light-dim);
    font-size: 1.1rem;
}

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

.status-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(26, 26, 37, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.status-card-bg {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.status-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: brightness(0.7);
    transition: filter 0.3s ease;
}

.status-card:hover .status-card-bg img {
    filter: brightness(0.9);
}

.status-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 37, 1) 0%, transparent 100%);
}

.status-content {
    padding: 0 2rem;
    margin-top: -30px;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.5rem;
}

.game-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    color: var(--light);
    margin-bottom: 0.2rem;
}

.game-info p {
    color: var(--light-dim);
    font-size: 0.9rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.status-undetected {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.status-coming-soon {
    background: rgba(255, 255, 255, 0.05);
    color: var(--light-dim);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff88;
    box-shadow: 0 0 10px #00ff88;
    animation: pulse 2s infinite;
}

.pulse-dot.gray {
    background: #666;
    box-shadow: none;
    animation: none;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(0, 255, 136, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

.status-details {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.detail-label {
    font-size: 0.8rem;
    color: var(--light-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-value {
    color: var(--light);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Placeholder specific */
.placeholder .status-card-bg {
    background: rgba(255, 255, 255, 0.02);
}

.placeholder-pattern {
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .status-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* ===================== ADMIN DASHBOARD ===================== */

.admin-body {
    background: #0f0f13;
    display: flex;
    min-height: 100vh;
    overflow-x: hidden;
}

.admin-sidebar {
    width: 250px;
    background: rgba(26, 26, 37, 0.95);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    z-index: 100;
}

.admin-brand {
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.admin-brand .logo-text {
    font-size: 1.2rem;
}

.admin-nav {
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
    gap: 0.5rem;
}

.admin-nav-item {
    padding: 1rem 1.5rem;
    color: var(--light-dim);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.admin-nav-item:hover, .admin-nav-item.active {
    color: var(--light);
    background: rgba(0, 212, 255, 0.05);
    border-left-color: var(--primary);
}

.admin-content {
    flex: 1;
    margin-left: 250px;
    padding: 2.5rem;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.admin-title {
    font-family: 'Orbitron', sans-serif;
    color: var(--light);
}

.admin-title span {
    color: var(--light-dim);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    display: block;
    margin-top: 0.3rem;
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: 700;
}

/* Stats Cards */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-box {
    background: rgba(26, 26, 37, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
}

.stat-title {
    color: var(--light-dim);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    color: var(--light);
    font-weight: 700;
}

.stat-trend {
    font-size: 0.85rem;
    color: var(--success);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Table Area */
.admin-panel-section {
    background: rgba(26, 26, 37, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.panel-header h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--light);
    font-size: 1.3rem;
}

.admin-table-container {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    text-align: left;
    padding: 1rem;
    color: var(--light-dim);
    font-size: 0.85rem;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    letter-spacing: 1px;
}

.admin-table td {
    padding: 1.2rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.02);
    color: var(--light);
    font-size: 0.95rem;
}

.admin-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.table-user {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.table-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.status-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-block;
}

.status-active {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.status-renewed {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.plan-tag {
    color: var(--light-dim);
    font-size: 0.85rem;
    background: rgba(255,255,255,0.05);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
}
