:root {
    --primary: #bc13fe;
    /* Electric Purple */
    --primary-glow: rgba(188, 19, 254, 0.5);
    --secondary: #39ff14;
    /* Neon Green */
    --secondary-glow: rgba(57, 255, 20, 0.3);
    --accent: #ff0050;
    /* Cyber Pink */
    --bg-dark: #050505;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

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

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

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

/* --- Typography --- */
h1,
h2,
h3,
.bold {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 0.95;
}

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

/* --- Glassmorphism --- */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1300px;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    height: 70px;
    background: rgba(5, 5, 5, 0.8);
    border-bottom: 2px solid var(--primary);
    border-radius: 0;
    width: 100%;
    top: 0;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    position: relative;
}

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

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

.btn-nav {
    background: var(--primary);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 900;
    box-shadow: 0 0 15px var(--primary-glow);
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #fff;
    transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url('../images/hero.jpg') center/cover no-repeat;
    margin-bottom: 100px;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--bg-dark) 20%, transparent 80%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero h1 {
    font-size: 12rem;
    margin-bottom: 2rem;
}

.hero p {
    font-size: 1.5rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 3rem;
}

/* --- Trending Marquee --- */
.marquee-row {
    background: var(--primary);
    padding: 1.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    margin-bottom: 80px;
}

.marquee-content {
    display: inline-block;
    animation: marquee 40s linear infinite;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #fff;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* --- Content Grid --- */
.section-title {
    font-size: 4rem;
    margin-bottom: 60px;
}

.viral-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 120px;
}

.pop-card {
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.pop-card:hover {
    transform: translateY(-15px);
}

.card-img {
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.card-body {
    padding: 30px;
}

.tag {
    display: inline-block;
    padding: 6px 12px;
    font-size: 0.7rem;
    font-weight: 900;
    background: var(--border-glass);
    border: 1px solid var(--border-glass);
    border-radius: 4px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.tag.hot {
    background: var(--accent);
    color: #fff;
}

.tag.tech {
    background: var(--secondary);
    color: #000;
}

.pop-card h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

/* --- Mobile Menu --- */
@media (max-width: 992px) {
    .navbar {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero h1 {
        font-size: 6rem;
    }

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

/* --- Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Footer --- */
.site-footer {
    padding: 100px 0 40px;
    border-top: 1px solid var(--border-glass);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-logo {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 400px;
}

.footer-nav h4 {
    margin-bottom: 30px;
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 3px;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 15px;
}

.footer-nav a {
    text-decoration: none;
    color: #fff;
    transition: var(--transition);
}

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

.newsletter-box input {
    width: 100%;
    padding: 15px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    color: #fff;
    outline: none;
    margin-bottom: 20px;
}

.btn-neon {
    background: var(--primary);
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 0 20px var(--primary-glow);
    transition: var(--transition);
}

.btn-neon:hover {
    box-shadow: 0 0 40px var(--primary-glow);
    transform: scale(1.05);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--border-glass);
    padding-top: 40px;
    color: var(--text-muted);
    font-size: 0.8rem;
}