:root {
    --primary: #213862;
    --accent: #DCFE52;
    --white: #ffffff;
    --dark: #0a0f1a;
    --glass: rgba(255, 255, 255, 0.05);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    font-family: 'Inter', 'Segoe UI', sans-serif; 
    margin: 0; background: var(--dark); color: var(--white); 
    overflow-x: hidden;
}

nav { 
    background: rgba(10, 15, 26, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.2rem 5%;
    display: flex; justify-content: space-between; align-items: center;
    position: sticky; top: 0; z-index: 1000;
    border-bottom: 1px solid rgba(220, 254, 82, 0.2);
}
.logo { font-size: 1.6rem; color: var(--accent); font-weight: 900; text-decoration: none; letter-spacing: -1px; }

.hero {
    height: 85vh;
    background: radial-gradient(circle at 50% 50%, rgba(33, 56, 98, 0.5) 0%, var(--dark) 100%), 
                url('https://images.unsplash.com') center/cover;
    background-blend-mode: overlay;
    display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
    clip-path: ellipse(150% 100% at 50% 0%);
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1;
    margin-bottom: 1rem;
    background: linear-gradient(180deg, #fff 30%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(220, 254, 82, 0.3));
}


.live-bar {
    background: var(--accent);
    color: var(--primary);
    padding: 10px 0;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    overflow: hidden;
    white-space: nowrap;
}
.live-bar span { display: inline-block; padding-left: 100%; animation: marquee 20s linear infinite; }

@keyframes marquee { 0% { transform: translate(0, 0); } 100% { transform: translate(-100%, 0); } }


.container { 
    max-width: 1200px; margin: -100px auto 100px; padding: 0 20px;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; 
}


.card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    padding: 40px; border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--accent);
    transform: translateY(-10px) scale(1.02);
}

.card h3 { color: var(--accent); margin-top: 0; font-size: 1.5rem; }
.card p { color: #ccc; font-size: 0.95rem; }


.btn {
    background: var(--accent); color: var(--primary);
    padding: 16px 35px; border-radius: 12px; text-decoration: none;
    font-weight: 900; transition: 0.4s; display: inline-block;
    border: none; cursor: pointer;
    text-transform: uppercase; letter-spacing: 1px;
}
.btn:hover {
    box-shadow: 0 0 30px var(--accent);
    letter-spacing: 2px;
}
