@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;



    font-family: Segoe UI, Tahoma, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-darker));
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32"><line x1="16" y1="0" x2="16" y2="10" stroke="white" stroke-width="2"/><line x1="16" y1="22" x2="16" y2="32" stroke="white" stroke-width="2"/><line x1="0" y1="16" x2="10" y2="16" stroke="white" stroke-width="2"/><line x1="22" y1="16" x2="32" y2="16" stroke="white" stroke-width="2"/></svg>') 16 16, crosshair;
}

.glass-nav {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-text {
    line-height: 0.9;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(180deg, #fff 0%, #666 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-buy {
    background: #ffffff;
    color: #000;
    transition: all 0.3s ease;
}

.btn-buy:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-shop {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.btn-shop:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.1);
}

.product-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.rift-bg {
    background: linear-gradient(90deg, #000 0%, #1a237e 50%, #000 100%);
}

.baddie-bg {
    background: linear-gradient(90deg, #000 0%, #2e7d32 50%, #000 100%);
}

.section-label {
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: #4ade80;
}


/* NAVBAR VIDEO BACKGROUND */
.nav-video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    /* same as navbar height */
    overflow: hidden;
    z-index: 10;
    pointer-events: none;
}

.nav-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.50;
    /* adjust for readability */
    filter: contrast(1.1) brightness(0.8);
}

/* Navbar stays above video */
.glass-nav {
    z-index: 50;
}

/* Add this to style.css */
.cta-button {
    background-color: white;
    color: black;
    padding: 10px 24px;
    border-radius: 9999px;
    /* rounded-full */
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #e5e5e5;
    transform: scale(1.05);
}