:root {
    /* Color Palette - Moebius / 80s Sci-Fi Inspired */
    --space-dark: #05060a;
    /* Deep space background */
    --space-light: #151a30;
    /* Slightly lighter panels */
    --crystal-blue: #00e5ff;
    /* Vibrant cyan/blue */
    --alien-pink: #ff4081;
    /* Bright, piercing pink */
    --warm-gold: #ffc400;
    /* Gold/amber star glow */
    --slate: #1a202c;
    /* Placeholder slate */

    --text-main: #e0e6ed;
    /* Soft white/blue-ish for text */
    --text-muted: #8b9bb4;

    /* Typography */
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--space-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    /* Subtle base gradient */
    background-image: radial-gradient(circle at 15% 50%, rgba(0, 229, 255, 0.04), transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(255, 64, 129, 0.04), transparent 50%);
}

/* Atmospheric Space Effects */
.space-dust {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px, 100px 100px;
    background-position: 0 0, 25px 25px;
    opacity: 0.3;
}

/* Typography styles */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    letter-spacing: 2px;
}

@keyframes pulseGlow {
    0% {
        text-shadow: 0 0 10px rgba(0, 229, 255, 0.6),
            0 0 20px rgba(0, 229, 255, 0.4);
    }

    100% {
        text-shadow: 0 0 15px rgba(0, 229, 255, 0.9),
            0 0 30px rgba(0, 229, 255, 0.6),
            0 0 50px rgba(0, 229, 255, 0.2);
    }
}

.glow-text {
    animation: pulseGlow 3s infinite alternate ease-in-out;
}

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

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
}

.banner-container {
    position: relative;
    width: 100%;
}

.banner-image {
    width: 100%;
    position: relative;
    border-bottom: 4px solid var(--alien-pink);
    box-shadow: 0 10px 40px rgba(255, 64, 129, 0.15);
    /* 16:9 aspect ratio responsive box */
    padding-top: 56.25%;
    overflow: hidden;
}

.banner-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-content {
    /* Position slightly below top 1/3 of the banner image */
    position: absolute;
    top: calc(33% + 50px);
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 1rem;
    z-index: 10;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 6rem);
    color: #ffffff;
    margin-bottom: 0px;
    text-transform: uppercase;
    line-height: 1.1;
}

.subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--warm-gold);
    font-weight: 400;
    text-shadow: 0 0 15px rgba(255, 196, 0, 0.6);
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* About Section */
.about-section {
    padding: 4rem 0 4rem;
    position: relative;
}

.about-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--alien-pink);
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 64, 129, 0.4);
}

.content-block {
    background: rgba(21, 26, 48, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 8px;
    padding: 3.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6),
        inset 0 0 30px rgba(0, 229, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8),
        inset 0 0 30px rgba(0, 229, 255, 0.1);
}

.content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--crystal-blue), var(--alien-pink), transparent);
}

.content-block p {
    font-size: 1.125rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    color: var(--text-main);
    font-weight: 300;
}

.content-block p:last-child {
    margin-bottom: 0;
}

/* Footer */
footer {
    background: linear-gradient(to bottom, transparent, #020305);
    border-top: 1px solid rgba(255, 196, 0, 0.15);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.social-links {
    display: flex;
    gap: 3rem;
}

.social-link {
    color: var(--crystal-blue);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.social-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--alien-pink);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

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

.social-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-block {
        padding: 2.5rem 1.5rem;
    }

    .about-section {
        padding-top: 3rem;
    }
}