/* Modern Glassmorphism & Cyberpunk/Gaming Theme */
:root {
    --bg-color: #000000; /* Pure Black */
    --accent: #d4ff00; /* Lemon Yellow */
    --text-primary: #ffffff;
    --text-secondary: #aaaaaa;
    --glass-bg: rgba(20, 20, 25, 1);
    --glass-border: rgba(212, 255, 0, 0.2);
    --danger: #ff4444;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #000000;
    color: var(--text-primary);
    scroll-behavior: smooth;
    min-height: 100vh;
}

/* Glassmorphism Panel Class */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    box-sizing: border-box;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--accent);
}

@keyframes pulseGlow {
    0%, 100% { 
        text-shadow: 0 0 5px rgba(212, 255, 0, 0.2); 
        opacity: 0.8; 
    }
    50% { 
        text-shadow: 0 0 15px rgba(212, 255, 0, 0.8), 0 0 25px rgba(212, 255, 0, 0.5); 
        opacity: 1; 
    }
}

.navbar .logo {
    font-size: 26px;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: pulseGlow 2.5s ease-in-out infinite;
}

.section-title {
    font-size: 2.5em;
    font-weight: 900;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-shadow: 0 0 10px rgba(212, 255, 0, 0.5), 0 0 20px rgba(212, 255, 0, 0.3);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
    text-shadow: 0 0 8px var(--accent);
}

/* --- SECTIONS --- */
.section {
    min-height: auto;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    background: #030303;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
    box-shadow: inset 0 20px 50px #000, inset 0 -20px 50px #000;
    position: relative;
}

/* Make sure container doesn't overflow */
.script-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

/* ANIMATED CYBER GRID BACKGROUND */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding-bottom: 100px;
}
.hero::before {
    content: "";
    position: absolute;
    bottom: -50%; left: -50%; 
    width: 200%; height: 200%;
    background: 
        linear-gradient(rgba(212, 255, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 255, 0, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(1000px) rotateX(60deg) translateY(0);
    animation: gridMove 10s linear infinite;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}
@keyframes gridMove {
    0% { transform: perspective(1000px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(1000px) rotateX(60deg) translateY(50px); }
}

.hero h1 {
    font-size: 4em;
    font-weight: 900;
    background: -webkit-linear-gradient(45deg, #ffffff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    text-align: center;
    filter: drop-shadow(0 0 10px rgba(0,255,136,0.3));
}

.hero p {
    font-size: 1.2em;
    color: var(--text-secondary);
    margin-bottom: 40px;
    text-align: center;
    max-width: 600px;
}

/* Cyberpunk Glow Buttons */
.btn-glow {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.btn-glow:hover {
    background: var(--accent);
    color: var(--bg-main);
    box-shadow: 0 0 25px var(--accent);
    transform: translateY(-2px);
}

/* Products */
.product-list {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}

.product-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    padding: 0;
    overflow: hidden;
    background: #141419;
    border: 1px solid #333;
    border-bottom: 5px solid #0a0a0c;
    border-right: 4px solid #0a0a0c;
    border-left: 4px solid var(--accent);
    border-radius: 8px;
    transition: all 0.2s ease;
    box-shadow: -3px 5px 10px rgba(0,0,0,0.8);
}
.product-item:hover {
    transform: translate(2px, -2px);
    box-shadow: -5px 8px 15px rgba(0,0,0,1);
    border-left: 4px solid #fff;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    background: transparent;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.accordion-icon {
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2em;
    transition: transform 0.3s;
}

.accordion-body {
    border-top: 1px solid var(--glass-border);
    background: rgba(0,0,0,0.3);
}

.skin-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.skin-row:last-child {
    border-bottom: none;
}

.hero-name {
    font-size: 1.4em;
    font-weight: 800;
    color: white;
    flex: 1;
}

/* Inputs */
.input-glass {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    background: #111;
    color: white;
    border: 1px solid #333;
    border-bottom: 4px solid #000;
    border-radius: 8px;
    font-family: inherit;
    outline: none;
    transition: all 0.2s ease;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.8);
}
.input-glass:focus {
    border-color: var(--accent);
    border-bottom: 4px solid #8fa800;
    box-shadow: 0 5px 15px rgba(212, 255, 0, 0.15);
    transform: translateY(-2px);
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(8px);
}

.modal-content {
    background: #141419;
    width: 90%;
    max-width: 400px;
    padding: 40px;
    text-align: center;
    border: 1px solid #333;
    border-bottom: 8px solid #0a0a0c;
    border-right: 6px solid #0a0a0c;
    border-radius: 15px;
    box-shadow: -10px 15px 30px rgba(0,0,0,0.9);
}

/* Plan Cards */
.plan-card {
    background: #141419;
    border: 1px solid #333;
    border-bottom: 6px solid #0a0a0c;
    border-right: 4px solid #0a0a0c;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    text-align: center;
    box-shadow: -5px 10px 15px rgba(0,0,0,0.8);
}
.plan-card:hover {
    transform: translate(3px, -3px);
    box-shadow: -10px 15px 25px rgba(0,0,0,1);
}
.plan-card.best-value {
    border-color: var(--accent);
    border-bottom: 8px solid #8fa800;
    border-right: 5px solid #8fa800;
    box-shadow: -10px 15px 25px rgba(212, 255, 0, 0.15);
    transform: translateZ(10px);
}
.plan-card.best-value:hover {
    box-shadow: -15px 20px 35px rgba(212, 255, 0, 0.25);
    transform: translate(4px, -4px) translateZ(10px);
}
.plan-card .badge {
    position: absolute;
    top: -12px;
    right: 50%;
    transform: translateX(50%);
    background: gold;
    color: black;
    font-size: 0.85em;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 5px;
    letter-spacing: 1px;
}

/* Loader Animation */
.loader {
    border: 4px solid rgba(255,255,255,0.1);
    border-top: 4px solid var(--accent);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

table { width: 100%; border-collapse: collapse; margin-top: 20px; }
th, td { border: 1px solid var(--glass-border); padding: 12px; text-align: left; }
th { color: var(--accent); }

/* GLITCH EFFECT */
.glitch {
    font-size: 3em;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    color: white;
    text-shadow: 0.05em 0 0 rgba(255,0,0,0.75), -0.025em -0.05em 0 rgba(0,255,0,0.75), 0.025em 0.05em 0 rgba(0,0,255,0.75);
    animation: glitch 500ms infinite;
    margin-bottom: 20px;
}
@keyframes glitch {
  0% { text-shadow: 0.05em 0 0 rgba(255,0,0,0.75), -0.05em -0.025em 0 rgba(0,255,0,0.75), -0.025em 0.05em 0 rgba(0,0,255,0.75); }
  14% { text-shadow: 0.05em 0 0 rgba(255,0,0,0.75), -0.05em -0.025em 0 rgba(0,255,0,0.75), -0.025em 0.05em 0 rgba(0,0,255,0.75); }
  15% { text-shadow: -0.05em -0.025em 0 rgba(255,0,0,0.75), 0.025em 0.025em 0 rgba(0,255,0,0.75), -0.05em -0.05em 0 rgba(0,0,255,0.75); }
  49% { text-shadow: -0.05em -0.025em 0 rgba(255,0,0,0.75), 0.025em 0.025em 0 rgba(0,255,0,0.75), -0.05em -0.05em 0 rgba(0,0,255,0.75); }
  50% { text-shadow: 0.025em 0.05em 0 rgba(255,0,0,0.75), 0.05em 0 0 rgba(0,255,0,0.75), 0 -0.05em 0 rgba(0,0,255,0.75); }
  99% { text-shadow: 0.025em 0.05em 0 rgba(255,0,0,0.75), 0.05em 0 0 rgba(0,255,0,0.75), 0 -0.05em 0 rgba(0,0,255,0.75); }
  100% { text-shadow: -0.025em 0 0 rgba(255,0,0,0.75), -0.025em -0.025em 0 rgba(0,255,0,0.75), -0.025em -0.05em 0 rgba(0,0,255,0.75); }
}

/* BACKGROUND PARTICLES */
.bg-particles {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    overflow: hidden;
}
.particle {
    position: absolute;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    border-radius: 50%;
    animation: floatUp infinite linear;
    opacity: 0.3;
}
@keyframes floatUp {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* TYPING EFFECT */
.typing-text {
    border-right: 2px solid var(--accent);
    padding-right: 5px;
    animation: blinkCursor 0.7s infinite;
    color: var(--accent);
    font-weight: bold;
}
@keyframes blinkCursor { 50% { border-color: transparent; } }

/* MODERN LANG TOGGLE */
.lang-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3px;
    cursor: pointer;
    margin-left: 15px;
    border: 1px solid var(--glass-border);
    position: relative;
}
.lang-toggle span {
    padding: 5px 10px;
    font-size: 0.8em;
    font-weight: bold;
    color: var(--text-secondary);
    transition: 0.3s;
    z-index: 1;
}
.lang-toggle span.active {
    color: #fff;
    background: var(--accent);
    border-radius: 15px;
    box-shadow: 0 0 10px var(--accent);
}

/* HERO UPDATE */
.hero-title {
    font-size: 4em;
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(45deg, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

/* MODERN PRICING TABLE - 3D EDITION */
.pricing-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
    perspective: 1000px; /* For 3D transforms */
}
.pricing-card {
    flex: 1;
    min-width: 300px;
    background: #141419;
    border: 1px solid #333;
    border-bottom: 8px solid #0a0a0c;
    border-right: 6px solid #0a0a0c;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    box-shadow: -10px 15px 30px rgba(0,0,0,0.9);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pricing-card:hover {
    transform: translate(5px, -5px);
    box-shadow: -15px 20px 40px rgba(0,0,0,1);
}
.pricing-card.premium {
    border: 1px solid var(--accent);
    border-bottom: 10px solid #8fa800; /* Darker lemon for 3D depth */
    border-right: 8px solid #8fa800;
    box-shadow: -15px 20px 40px rgba(212, 255, 0, 0.15);
    background: linear-gradient(135deg, rgba(212, 255, 0, 0.05) 0%, rgba(20, 20, 25, 1) 100%);
    transform: translateZ(20px); /* Slightly pop out */
}
.pricing-card.premium:hover {
    transform: translate(6px, -6px) translateZ(30px);
    box-shadow: -20px 25px 50px rgba(212, 255, 0, 0.25);
}
.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.pricing-header h3 {
    font-size: 1.5em;
    color: var(--text-secondary);
    margin: 0 0 10px 0;
    letter-spacing: 2px;
}
.pricing-card.premium .pricing-header h3 {
    color: var(--accent);
}
.pricing-header .price {
    font-size: 2em;
    font-weight: bold;
    color: #fff;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #fff;
    font-size: 1.05em;
}
.pricing-features li.disabled {
    color: #555;
}
.icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    flex-shrink: 0;
}
.icon.check {
    color: var(--accent);
}
.icon.cross {
    color: #ff4444;
}
.badge-glow {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 0 10px var(--accent);
}
.upgrade-btn {
    width: 100%;
    margin-top: 30px;
    padding: 15px;
    font-weight: bold;
    letter-spacing: 1px;
}

/* MASCOT & HERO LAYOUT */
.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
    flex-wrap: wrap-reverse;
}
.hero-text-area { text-align: center;
    flex: 1;
    min-width: 300px;
}
.hero-mascot {
    width: 300px;
    height: 300px;
    object-fit: contain;
    animation: floatMascot 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(212, 255, 0, 0.4));
}
@keyframes floatMascot {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@media (max-width: 768px) {
    .hero-content-wrapper { text-align: center; justify-content: center; }
    .hero-mascot { width: 220px; height: 220px; }
}



/* 3D BUTTONS */
.btn-glow {
    border-bottom: 4px solid #8fa800; /* 3D effect base */
    transition: transform 0.1s, border-bottom 0.1s;
}
.btn-glow:active {
    border-bottom: 0px solid #8fa800;
    transform: translateY(4px);
}
.btn-glow.hero-btn {
    border-bottom: 6px solid #8fa800;
}
.btn-glow.hero-btn:active {
    border-bottom: 0px;
    transform: translateY(6px);
}

/* CARD FAN ANIMATION */
.card-fan {
    position: relative;
    width: 250px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 30px;
}
.card-item {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), z-index 0s, box-shadow 0.5s;
    box-shadow: -5px 10px 20px rgba(0,0,0,0.9);
    border: 3px solid var(--accent);
    overflow: hidden;
    cursor: pointer;
    transform-origin: bottom center;
    background: #000;
}
.card-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Base stack (Messy look) */
.card-fan .card-item:nth-child(1) { transform: rotate(-8deg) translate(-20px, 10px); z-index: 1; }
.card-fan .card-item:nth-child(2) { transform: rotate(-4deg) translate(-10px, 5px); z-index: 2; }
.card-fan .card-item:nth-child(3) { transform: rotate(0deg) translate(0, 0); z-index: 3; }
.card-fan .card-item:nth-child(4) { transform: rotate(4deg) translate(10px, 5px); z-index: 4; }
.card-fan .card-item:nth-child(5) { transform: rotate(8deg) translate(20px, 10px); z-index: 5; }

/* Fan out on hover */
.card-fan:hover .card-item:nth-child(1) { transform: rotate(-30deg) translate(-80px, 20px); z-index: 1; }
.card-fan:hover .card-item:nth-child(2) { transform: rotate(-15deg) translate(-40px, 10px); z-index: 2; }
.card-fan:hover .card-item:nth-child(3) { 
    transform: rotate(0deg) translate(0, -20px) scale(1.1); 
    z-index: 10; 
    box-shadow: 0 0 30px var(--accent); 
}
.card-fan:hover .card-item:nth-child(4) { transform: rotate(15deg) translate(40px, 10px); z-index: 4; }
.card-fan:hover .card-item:nth-child(5) { transform: rotate(30deg) translate(80px, 20px); z-index: 5; }
.btn-discord {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #5865F2;
    border-bottom: 5px solid #3c45a5;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.1s;
}
.btn-discord:active {
    border-bottom: 0px;
    transform: translateY(5px);
}

.btn-wa {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    border-bottom: 5px solid #178a41;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.1s;
}
.btn-wa:active {
    border-bottom: 0px;
    transform: translateY(5px);
}

/* --- MOBILE NAVBAR --- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--accent);
    border-radius: 5px;
}
@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px 0;
        border-bottom: 1px solid var(--accent);
        box-shadow: 0 10px 30px rgba(0,0,0,0.8);
        gap: 15px;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        text-align: center;
    }
    .hero {
        padding: 150px 20px 100px 20px !important;
    }
    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .hero-title {
        font-size: 3em !important;
    }
    .premium-cards, .script-grid {
        flex-direction: column;
    }
}
