:root {
    --primary: #00f5ff;
    --purple: #a020f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a1f;
    color: #e0e0ff;
    line-height: 1.6;
    overflow-x: hidden;
}

.logo-font {
    font-family: 'Space Grotesk', sans-serif;
}

/* Neon & Glass Effects */
.neon-text {
    text-shadow: 0 0 15px var(--primary), 0 0 30px var(--purple);
}

.glass {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 245, 255, 0.2);
}

/* Navbar */
.navbar {
    background: rgba(10, 10, 31, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 245, 255, 0.2);
}

.nav-link:hover {
    color: var(--primary) !important;
    text-shadow: 0 0 15px var(--primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 650px;
    background: linear-gradient(rgba(10,10,31,0.85), rgba(10,10,31,0.92)), 
                url('images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-image-wrapper {
    max-width: 420px;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border: 5px solid rgba(0, 245, 255, 0.35);
    border-radius: 25px;
    box-shadow: 0 0 60px rgba(0, 245, 255, 0.3);
}

.floating {
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-25px); }
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(90deg, #00f5ff, #a020f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 3rem;
}

/* Cards */
.feature-card, .gift-card, .live-card, .hover-card {
    transition: all 0.4s ease;
}

.feature-card:hover,
.gift-card:hover,
.hover-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 0 40px rgba(0, 245, 255, 0.4);
}

.live-card {
    position: relative;
    overflow: hidden;
}

.live-card::after {
    content: 'LIVE';
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff0033;
    color: white;
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Gift Videos */
.gift-card video {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

/* Gallery Scroll */
.gallery-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
}

.gallery-scroll img {
    min-width: 320px;
    height: 580px;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid rgba(0,245,255,0.2);
    transition: all 0.4s ease;
}

.gallery-scroll img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0,245,255,0.4);
}

/* Download Buttons */
.download-btn:hover img,
.download-btn:hover {
    transform: scale(1.05);
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(45deg, #00f5ff, #a020f0);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .section-title { font-size: 2.4rem; }
    .hero { min-height: 85vh; padding-top: 80px; }
    .gallery-scroll img { min-width: 280px; height: 500px; }
}