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

body {
    background: #020814;
    color: #ffffff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 10pt;
   }

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    background: #020814;
    color: #ffffff;
}

/* NAVIGATION */
.header {
    position: absolute;
    width: 100%;
    z-index: 10;
    padding: 25px 60px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 50px;
}

.nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav a {
    color: #c7d6ff;
    text-decoration: none;
    letter-spacing: 1px;
    font-size: 14px;
}

.nav a:hover {
    color: #ffd36b;
}

/* HERO VIDEO */
.hero-video {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}


/* HERO CONTENT */
.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.hero-logo {
    max-width: 420px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 30px rgba(255,215,100,0.6));
}

.date {
    font-size: 1.5em;
    letter-spacing: 2px;
    color: #c7d6ff;
}

.status {
    margin: 25px 0;
    padding: 15px 25px;
    background: linear-gradient(90deg, #d4af37, #ffd36b);
    color: #000;
    font-weight: bold;
    border-radius: 25px;
    font-size: 1.2em;
    box-shadow: 0 0 30px rgba(255,215,100,0.6);
}

.intro {
    max-width: 720px;
    font-size: 1.25em;
    line-height: 1.6;
    color: #e2ebff;
    margin-bottom: 30px;
}

.cta {
    padding: 15px 25px;
    background: linear-gradient(90deg, #FF7F6B, #FF4547);
    color: #000;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 25px;
    box-shadow: 0 0 30px rgba(255,215,100,0.6);
    transition: transform 0.2s ease;
}

.cta:hover {
    transform: scale(1.05);
}

/* FEATURES */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    padding: 90px 60px;
    background: radial-gradient(circle at top, #081a33, #020814);
}

.feature-card {
    background: rgba(15, 35, 70, 0.85);
    border: 1px solid rgba(255, 211, 107, 0.35);
    padding: 40px 30px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 0 30px rgba(0,0,0,0.6);
    z-index:3;
}

.feature-card h3 {
    color: #ffd36b;
    margin-bottom: 15px;
}

/* FOOTER */
.footer {
    padding: 30px;
    text-align: center;
    font-size: 14px;
    color: #8fa3d6;
    z-index:3;
}

/* MOBILE FALLBACK */
@media (max-width: 480px) {
	
    .hero-logo {
        max-width: 240px;
    }
    body {
    font-size: 8pt;
    }
}


/* AWARD TYPO */
h1, h2, h3,
.hero-logo + .date {
    font-family: 'Cinzel', serif;
    letter-spacing: 3px;
}

/* Hero Feinschliff */
.date {
    text-transform: uppercase;
    font-size: 22px;
}

.status {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
}

.cta {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
}

/* Feature Titles */
.feature-card h3 {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
    font-size: 22px;
}

.hero-logo {
    filter:
        drop-shadow(0 0 20px rgba(255,215,100,0.6))
        drop-shadow(0 0 50px rgba(255,215,100,0.25));
}

