:root {
    --bg: #050505;
    --surface: #101010;
    --surface-light: #1A1A1A;
    --volt: #CCFF00;
    --text: #FFFFFF;
    --text-dim: #A0A0A0;
    --border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- UTILITIES --- */
.text-volt { color: var(--volt); }
.text-stroke { -webkit-text-stroke: 1px var(--text); color: transparent; }
.text-center { text-align: center; }

/* ========================================
   NAVBAR (REVERTED TO ORIGINAL STYLE)
========================================
*/
.navbar {
    position: fixed;
    top: 0; width: 100%;
    padding: 0 40px;
    height: 80px;
    background: rgba(8, 8, 8, 0.8); /* Translucent */
    backdrop-filter: blur(15px);     /* Blur Effect */
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
}

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

/* Logo */
.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-decoration: none;
    color: var(--text);
}
.logo span { color: var(--volt); }

/* Navigation Links Wrapper */
.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Single Nav Item */
.nav-item {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: 0.3s;
}
.nav-item:hover { color: var(--volt); }

/* Dropdown Container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Button (Matches Nav Item) */
.dropbtn {
    background: none;
    border: none;
    color: var(--text-dim);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    cursor: pointer;
    padding: 10px 0;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown:hover .dropbtn { color: var(--volt); }

/* Arrow Symbol */
.arrow {
    width: 0; 
    height: 0; 
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid var(--text-dim);
    transition: 0.3s;
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
    border-top-color: var(--volt);
}

/* Dropdown Content Box */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: -10px;
    background-color: var(--surface);
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
    z-index: 1;
    border: 1px solid var(--border);
    border-top: 2px solid var(--volt);
    border-radius: 0 0 8px 8px;
    padding: 10px 0;
}

/* Show Dropdown on Hover */
.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInUp 0.2s ease-out;
}

/* Dropdown Links */
.dropdown-content a {
    color: var(--text);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    transition: 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

.dropdown-content a:hover {
    background-color: rgba(204, 255, 0, 0.1);
    color: var(--volt);
    padding-left: 25px;
}

/* Nav Actions (Right Side) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-nav {
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 20px;
    transition: 0.3s;
    font-family: var(--font-heading);
}

.btn-nav.outline {
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-nav.outline:hover {
    border-color: var(--volt);
    color: var(--volt);
}

.btn-nav.primary {
    background: var(--volt);
    color: black;
    border: 1px solid var(--volt);
}
.btn-nav.primary:hover {
    background: transparent;
    color: var(--volt);
}

/* ========================================
   BODY CONTENT (PETPOOJA LAYOUT)
========================================
*/

/* --- HERO SECTION --- */
.hero-section {
    padding-top: 140px; padding-bottom: 80px;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}

.hero-text .pill {
    background: rgba(255,255,255,0.1); padding: 5px 15px;
    border-radius: 50px; font-size: 0.8rem; font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px;
}
.dot { width: 8px; height: 8px; background: var(--volt); border-radius: 50%; box-shadow: 0 0 10px var(--volt); }

.hero-text h1 {
    font-family: var(--font-heading); font-size: 3.8rem;
    line-height: 1.1; margin-bottom: 20px; text-transform: uppercase;
}

.hero-text p {
    color: var(--text-dim); font-size: 1.1rem; max-width: 450px; margin-bottom: 30px;
}

.btn-lg {
    padding: 16px 32px; font-size: 1rem; font-weight: 700;
    text-transform: uppercase; border: none; cursor: pointer;
    font-family: var(--font-heading); transition: 0.3s; border-radius: 4px;
}
.btn-lg.primary { background: var(--volt); color: black; }
.btn-lg.primary:hover { box-shadow: 0 0 20px rgba(204, 255, 0, 0.4); transform: translateY(-2px); }

.rating { margin-top: 20px; display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-dim); }
.rating ion-icon { color: var(--volt); }

/* Hero Visual (CSS Only Mockup) */
.hero-visual { position: relative; }
.dashboard-mockup {
    width: 100%; height: 400px; background: #151515;
    border: 1px solid var(--border); border-radius: 12px;
    position: relative; overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    background: linear-gradient(135deg, #1a1a1a, #050505);
}
.mock-header { height: 40px; border-bottom: 1px solid var(--border); display: flex; align-items: center; padding: 0 15px; }
.dots { width: 10px; height: 10px; background: #333; border-radius: 50%; box-shadow: 15px 0 0 #333, 30px 0 0 #333; }
.mock-body { padding: 30px; }
.graph-line {
    height: 150px; width: 100%; border-bottom: 2px solid #333; position: relative;
}
.graph-line::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 80%;
    background: linear-gradient(90deg, transparent, rgba(204, 255, 0, 0.1));
    clip-path: polygon(0 100%, 20% 60%, 40% 80%, 60% 30%, 80% 50%, 100% 10%);
}
.stat-row { display: flex; gap: 20px; margin-top: 30px; }
.box { height: 60px; flex: 1; background: #222; border-radius: 6px; }

/* Floating Cards Animation */
.floating-card {
    position: absolute; background: var(--surface); padding: 15px 25px;
    border: 1px solid var(--border); border-radius: 8px;
    display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 0.9rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    animation: float 4s ease-in-out infinite;
}
.floating-card ion-icon { color: var(--volt); font-size: 1.2rem; }
.c1 { top: 20%; right: -20px; animation-delay: 0s; }
.c2 { bottom: 20%; left: -20px; animation-delay: 2s; }

/* --- TRUST STRIP --- */
.trust-strip {
    background: #000; border-bottom: 1px solid var(--border);
    padding: 30px 0; text-align: center;
}
.trust-strip p { font-size: 0.8rem; letter-spacing: 2px; color: #555; margin-bottom: 20px; font-weight: 700; }
.logos { display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; }
.logos span { font-family: var(--font-heading); font-weight: 800; font-size: 1.2rem; color: #333; }

/* --- PRODUCT GRID --- */
.products-section { padding: 100px 0; background: var(--bg); }
.section-head { margin-bottom: 60px; }
.section-head h2 { font-family: var(--font-heading); font-size: 3rem; margin-bottom: 10px; }
.section-head p { color: var(--text-dim); }

.product-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px;
}
.prod-card {
    background: var(--surface); padding: 40px 30px;
    border: 1px solid var(--border); border-radius: 12px;
    transition: 0.3s; cursor: pointer;
}
.prod-card:hover {
    border-color: var(--volt); transform: translateY(-10px);
    background: linear-gradient(180deg, var(--surface) 0%, #151d00 100%);
}
.icon-box {
    width: 60px; height: 60px; background: #1a1a1a;
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: var(--volt); margin-bottom: 25px;
}
.prod-card h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 15px; }
.prod-card p { color: var(--text-dim); font-size: 0.95rem; margin-bottom: 25px; line-height: 1.6; }
.prod-card a { color: white; text-decoration: none; font-weight: 600; font-size: 0.9rem; }
.prod-card a:hover { color: var(--volt); }

/* --- WHY SMASHLIVE (ZigZag) --- */
.why-section { padding: 100px 0; overflow: hidden; }
.section-title { font-family: var(--font-heading); font-size: 3rem; margin-bottom: 80px; }

.feature-row {
    display: flex; align-items: center; gap: 80px; margin-bottom: 120px;
}
.feature-row.reverse { flex-direction: row-reverse; }

.feat-text { flex: 1; }
.feat-text h3 { color: var(--volt); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 10px; font-weight: 800; }
.feat-text h4 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 20px; line-height: 1.1; }
.feat-text p { color: var(--text-dim); margin-bottom: 30px; font-size: 1.1rem; }

.check-list { list-style: none; }
.check-list li { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; font-weight: 600; }
.check-list ion-icon { color: var(--volt); font-size: 1.2rem; }

.feat-visual {
    flex: 1; height: 400px; background: var(--surface-light);
    border-radius: 20px; border: 1px solid var(--border);
    position: relative;
}
/* Placeholder gradients for visuals */
.v1 { background: radial-gradient(circle at center, #222, #111); }
.v2 { background: radial-gradient(circle at center, #1a2a00, #050505); }
.v3 { background: radial-gradient(circle at center, #222, #111); }

/* --- BANNER CTA --- */
.banner-cta {
    background: var(--volt); padding: 80px 0; text-align: center; color: black;
}
.banner-cta h2 { font-family: var(--font-heading); font-size: 3rem; margin-bottom: 10px; }
.banner-cta p { font-size: 1.2rem; margin-bottom: 30px; font-weight: 600; }
.btn-lg.black { background: black; color: white; }
.btn-lg.black:hover { transform: scale(1.05); }

/* --- FOOTER --- */
.footer { background: #000; padding: 80px 0 30px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.ft-col h5 { color: white; margin-bottom: 20px; font-weight: 700; text-transform: uppercase; }
.ft-col a { display: block; color: var(--text-dim); text-decoration: none; margin-bottom: 12px; transition: 0.2s; }
.ft-col a:hover { color: var(--volt); }
.social-icons { display: flex; gap: 15px; font-size: 1.5rem; color: white; }
.footer-bottom { border-top: 1px solid #111; padding-top: 30px; text-align: center; color: #444; font-size: 0.9rem; }

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.fade-in-up { animation: fadeInUp 0.8s ease-out forwards; opacity: 0; }
.delay-1 { animation-delay: 0.2s; }

/* Responsive */
@media (max-width: 900px) {
    .navbar { padding: 0 20px; }
    .nav-links, .nav-actions { display: none; }
    
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-text p { margin: 0 auto 30px; }
    .feature-row, .feature-row.reverse { flex-direction: column; text-align: left; }
    .hero-text h1 { font-size: 2.8rem; }
    .floating-card { display: none; }
}