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

:root {
    --bg-black: #02040a;
    --deep-blue: #050b18;
    --tron-blue: #00d2ff;
    --tron-glow: rgba(0, 210, 255, 0.4);
    --glass-white: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --liquid-shine: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
}

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

body {
    background: radial-gradient(circle at 50% 50%, var(--deep-blue) 0%, var(--bg-black) 100%);
    color: #f8fafc;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

canvas#spider-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

h1, h2, h3, h4, .bebas {
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* --- NAVIGATION --- */
nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    padding: 0.8rem 2.5rem; /* Adjusted padding for bigger logo */
    background: rgba(2, 4, 10, 0.8);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* UPDATED LOGO SIZE */
.logo { 
    font-family: 'Bebas Neue', cursive;
    font-size: 2.4rem; /* Increased font size */
    color: #fff; 
    text-shadow: 0 0 15px var(--tron-glow); 
    text-decoration: none; 
    display: flex;
    align-items: center;
    gap: 15px;
}
.logo img { 
    height: 65px; /* Increased image height from 45px */
    width: auto; 
}
.logo span { color: var(--tron-blue); }

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { 
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: 0.4s;
}
.nav-links a:hover { color: var(--tron-blue); text-shadow: 0 0 10px var(--tron-blue); }

/* --- BUTTONS --- */
.btn-premium {
    background: var(--tron-blue);
    color: #000;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-family: 'Bebas Neue';
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 0 25px var(--tron-glow);
}

.btn-premium:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 45px var(--tron-glow);
}

/* --- 3D CARDS & LAYOUT --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.card-3d-wrap { perspective: 2000px; margin-bottom: 2rem; }

.liquid-card {
    background: var(--glass-white);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 2.5rem;
    padding: 3.5rem;
    transform-style: preserve-3d;
    transition: transform 0.2s ease-out;
    position: relative;
    overflow: hidden;
}

.liquid-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--liquid-shine);
    opacity: 0.3;
    pointer-events: none;
}

/* --- TYPOGRAPHY --- */
.section-tag {
    color: var(--tron-blue);
    font-family: 'Bebas Neue';
    font-size: 1.1rem;
    letter-spacing: 5px;
    display: block;
    margin-bottom: 1rem;
}

.glow-text {
    background: linear-gradient(to bottom, #fff 50%, var(--tron-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- SECTIONS --- */
section { padding: 8rem 0; position: relative; }
.hero { height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }

footer { padding: 4rem 0; border-top: 1px solid var(--glass-border); text-align: center; font-size: 0.8rem; opacity: 0.5; }

@media (max-width: 768px) {
    .nav-links { display: none; }
    h1 { font-size: 3.5rem !important; }
    .logo { font-size: 1.8rem; }
    .logo img { height: 50px; }
}
