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

:root {
    --bg-main: #0a0a0a;
    --bg-card: #151515;
    --text-primary: #f0f0f0;
    --text-muted: #a0a0a0;
    --accent: #ff3366;
    --accent-hover: #ff1a53;
    --gradient: linear-gradient(135deg, #ff3366 0%, #ff8833 100%);
    --nav-bg: rgba(10, 10, 10, 0.85);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0; width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    z-index: 1000;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
}
.navbar.scrolled {
    padding: 1rem 2rem;
    background: var(--nav-bg);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.navbar a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}
.navbar a:hover, .navbar a.active {
    color: var(--accent);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.5), var(--bg-main) 95%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}
.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}
.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
}

/* Base Main Content Structure */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Sections & Typography */
section {
    margin-bottom: 6rem;
}
h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}
h2::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background: var(--accent);
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}
h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 2.5rem 0 1rem;
}
p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}
ul {
    margin-left: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}
li {
    margin-bottom: 0.8rem;
}
li strong {
    color: var(--text-primary);
}

/* Cards & Grid Utilities */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease, border-color 0.3s;
}
.card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,51,102, 0.4);
}

/* Links & Buttons */
a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--accent);
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
}
.btn:hover {
    background: var(--accent-hover);
    text-decoration: none;
    color: #fff;
    box-shadow: 0 4px 15px rgba(255,51,102,0.4);
}

/* Media */
.content-img {
    width: 100%;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    margin: 3rem 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}
.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}

/* JS Classes */
.hidden { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal { opacity: 1; transform: translateY(0); }

/* Footer */
footer {
    text-align: center;
    padding: 3rem;
    background: var(--bg-card);
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
}
