* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #0d1b2a, #1b263b);
    color: #e0e1dd;
    font-family: 'Roboto Mono', monospace;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    z-index: 10;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.logo-container {
    flex: 1;
}

.logo {
    width: 120px; /* Placeholder size, replace with your logo */
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.1);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    color: #00d9ff;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav a:hover {
    color: #ff007f;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    color: #00d9ff;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.8);
    animation: glow 2s infinite alternate;
}

.tagline {
    font-size: 1.5rem;
    color: #e0e1dd;
    margin-top: 20px;
    letter-spacing: 2px;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

/* About Section */
.about {
    padding: 100px 50px;
    background: rgba(27, 38, 59, 0.9);
    border-top: 2px solid #00d9ff;
}

.about h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: #ff007f;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.5);
}

.description {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 2;
    color: #e0e1dd;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #0d1b2a;
    border-top: 1px solid #00d9ff;
    font-size: 0.9rem;
}

/* Animation */
@keyframes glow {
    0% { text-shadow: 0 0 10px #00d9ff; }
    100% { text-shadow: 0 0 30px #00d9ff, 0 0 50px #00d9ff; }
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 20px;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .about {
        padding: 50px 20px;
    }

    .about h2 {
        font-size: 2rem;
    }
}