:root {
    --bg-color: #050505;
    --card-bg: rgba(20, 20, 20, 0.7);
    --accent-purple: #a855f7;
    --text-white: #f8fafc;
    --text-muted: #94a3b8;
    --glass-border: rgba(168, 85, 247, 0.2);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Neon Lines Animation - Enhanced */
.neon-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #111 0%, #050505 100%);
}

.neon-lines::before, .neon-lines::after {
    content: '';
    position: absolute;
    width: 250%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-purple), #fff, var(--accent-purple), transparent);
    animation: move-lines 15s linear infinite;
    opacity: 0.5;
    filter: blur(1px);
}

.neon-lines::before {
    top: 30%;
    left: -75%;
    transform: rotate(20deg);
}

.neon-lines::after {
    top: 60%;
    right: -75%;
    transform: rotate(-15deg);
    animation-delay: -7s;
}

@keyframes move-lines {
    0% { transform: translateX(-50%) rotate(20deg); }
    100% { transform: translateX(50%) rotate(20deg); }
}

/* Glitch Effect */
.glitch {
    position: relative;
    display: inline-block;
}

.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #00fff9, 2px 2px #ff00c1;
    animation: glitch-anim2 1s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(31px, 9999px, 94px, 0); }
    10% { clip: rect(30px, 9999px, 12px, 0); }
    20% { clip: rect(62px, 9999px, 86px, 0); }
    /* ... shortened for efficiency ... */
    100% { clip: rect(67px, 9999px, 98px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(44px, 9999px, 56px, 0); }
    100% { clip: rect(44px, 9999px, 56px, 0); }
}

/* Header & Nav */
header {
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo img {
    height: 50px;
    filter: drop-shadow(0 0 5px var(--accent-purple));
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

nav ul li a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
    font-size: 0.95rem;
}

nav ul li a:hover {
    color: var(--accent-purple);
}

.btn-nav {
    background: var(--accent-purple);
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    font-weight: 600 !important;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}

.btn-nav:hover {
    background: #c084fc !important;
    color: white !important;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    background: radial-gradient(circle at center, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
}

.hero-content h1 {
    font-size: 6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 1rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary {
    background: var(--accent-purple);
    color: white;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.btn-secondary {
    border: 1px solid var(--accent-purple);
    color: var(--text-white);
}

.btn-primary:hover { transform: translateY(-5px); box-shadow: 0 0 30px rgba(168, 85, 247, 0.7); }
.btn-secondary:hover { background: rgba(168, 85, 247, 0.1); transform: translateY(-5px); }

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    font-weight: 700;
    background: linear-gradient(90deg, #fff, var(--accent-purple));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Products Section */
.products {
    padding: 6rem 5%;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s;
    backdrop-filter: blur(5px);
}

.product-card:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.2);
    transform: translateY(-10px);
}

.product-gallery {
    position: relative;
    height: 350px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-gallery img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 1rem;
}

.gallery-nav {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.gallery-nav button {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.gallery-nav button:hover {
    background: var(--accent-purple);
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent-purple);
}

.product-info p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.purchase-links {
    display: flex;
    gap: 1rem;
}

.purchase-links a {
    flex: 1;
    padding: 0.8rem;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.purchase-links .shopee { background: #ee4d2d; color: white; }
.purchase-links .ml { background: #fff159; color: #333; }

/* Specs Section */
.specs {
    padding: 6rem 5%;
    background: linear-gradient(180deg, transparent, rgba(168, 85, 247, 0.05), transparent);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.spec-item {
    padding: 3rem 2rem;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

.spec-item:hover {
    background: rgba(168, 85, 247, 0.1);
    transform: scale(1.05);
}

.spec-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.spec-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--accent-purple);
}

.spec-list {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 1rem;
}

.spec-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.spec-list li span {
    color: var(--text-white);
    font-weight: 600;
}

/* Web Config Section */
.web-config {
    padding: 6rem 5%;
}

.config-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.config-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.config-content ol {
    margin-left: 1.5rem;
    margin-bottom: 2.5rem;
}

.config-content li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.config-content code {
    background: rgba(168, 85, 247, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    color: var(--accent-purple);
    font-weight: 600;
}

.disclaimer {
    border: 1px solid #ef4444;
    background: rgba(239, 68, 68, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    color: #fca5a5;
    font-size: 0.95rem;
}

/* Compat Section */
.compat {
    padding: 6rem 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.compat-container {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 20px;
}

.compat-main ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.compat-main li {
    font-size: 1.2rem;
}

.check {
    color: #4ade80;
    margin-right: 10px;
    font-weight: bold;
}

.compat-note {
    border-left: 4px solid #facc15;
    padding-left: 1.5rem;
    background: rgba(250, 204, 21, 0.05);
    padding: 1rem 1.5rem;
}

/* Buy Section */
.buy {
    padding: 8rem 5%;
    text-align: center;
}

.buy-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    padding: 1.2rem 4rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    transition: 0.3s;
}

.btn-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.6);
}

.amazon-soon {
    color: var(--text-muted);
    font-style: italic;
    font-size: 1.1rem;
}

/* Footer */
footer {
    padding: 4rem;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 3.5rem; letter-spacing: 0.5rem; }
    nav ul { display: none; }
    .product-grid { grid-template-columns: 1fr; }
    .compat-main ul { grid-template-columns: 1fr; }
}
