:root {
    --bg-dark: #020C1B;
    --bg-light: #0d1b2a;
    --gold: #D4AF37;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --white: #E6F1FF;
    --text-muted: #8892b0;
    --glass: rgba(255, 255, 255, 0.05);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
.logo {
    font-family: 'Cinzel', serif;
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
    background: linear-gradient(to right, #F7EF8A, var(--gold), #F7EF8A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px var(--gold-glow);
    animation: fadeInUp 1s ease-out;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 300;
    animation: fadeInUp 1.2s ease-out;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    /* Centered Logo */
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.5rem;
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center, #112240 0%, #020C1B 70%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://www.transparenttextures.com/patterns/stardust.png');
    /* Subtle texture */
    opacity: 0.1;
    pointer-events: none;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    animation: fadeInUp 1.4s ease-out;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: var(--gold-glow);
    box-shadow: 0 0 30px var(--gold-glow);
    transform: translateY(-3px);
    color: #fff;
}

/* Features */
.features {
    padding: 6rem 0;
    background-color: var(--bg-dark);
}

.features h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--gold);
    font-size: 2.5rem;
    border-bottom: 1px solid var(--gold-glow);
    display: inline-block;
    padding-bottom: 1rem;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.feature-card {
    padding: 3rem 2rem;
    /* Glassmorphism */
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    transition: all 0.4s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
    animation: float 6s ease-in-out infinite;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 1.4rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.social-link {
    color: var(--gold);
    text-decoration: none;
    margin-left: 0.5rem;
    transition: color 0.3s;
}

.social-link:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--gold);
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    .hero {
        padding: 0 1rem;
    }
}