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

:root {
    --primary-color: #00d9ff;
    --secondary-color: #ff006e;
    --dark-bg: #0a0e27;
    --darker-bg: #050810;
    --text-color: #e0e0ff;
    --accent-color: #7c3aed;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Starfield Background */
#stars-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1a4d 50%, #0f1838 100%);
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Navigation */
header {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    margin-bottom: 40px;
}

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

.logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 600px;
    margin-bottom: 80px;
    position: relative;
}

.hero-content {
    z-index: 2;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: 3px;
    animation: slideInLeft 0.8s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch::before {
    animation: glitch 0.3s infinite;
    color: var(--primary-color);
    z-index: -1;
    text-shadow: -2px 0 var(--secondary-color);
}

.glitch::after {
    animation: glitch 0.3s infinite reverse;
    color: var(--secondary-color);
    z-index: -2;
    text-shadow: 2px 0 var(--primary-color);
}

@keyframes glitch {
    0% {
        clip-path: inset(40% 0 61% 0);
        transform: translate(-2px, -2px);
    }
    20% {
        clip-path: inset(92% 0 1% 0);
        transform: translate(2px, 2px);
    }
    40% {
        clip-path: inset(43% 0 1% 0);
        transform: translate(-2px, 2px);
    }
    60% {
        clip-path: inset(25% 0 58% 0);
        transform: translate(2px, -2px);
    }
    80% {
        clip-path: inset(54% 0 7% 0);
        transform: translate(-2px, -2px);
    }
    100% {
        clip-path: inset(58% 0 43% 0);
        transform: translate(2px, 2px);
    }
}

.tagline {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 30px;
    animation: slideInLeft 0.8s ease 0.1s both;
}

.spaceship-icon {
    font-size: 80px;
    margin: 30px 0;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.description {
    font-size: 16px;
    color: rgba(224, 224, 255, 0.8);
    margin-bottom: 40px;
    max-width: 500px;
    animation: slideInLeft 0.8s ease 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: slideInLeft 0.8s ease 0.3s both;
}

.btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #000;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.6);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: rgba(0, 217, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideInRight 0.8s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.asteroid {
    position: absolute;
    background: radial-gradient(circle at 30% 30%, rgba(100, 120, 150, 0.8), rgba(50, 60, 90, 0.4));
    border-radius: 50%;
    box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 217, 255, 0.2);
}

.asteroid-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 10%;
    animation: rotate 20s linear infinite;
}

.asteroid-2 {
    width: 80px;
    height: 80px;
    bottom: 15%;
    left: 5%;
    animation: rotate 15s linear infinite reverse;
}

.asteroid-3 {
    width: 100px;
    height: 100px;
    bottom: 10%;
    right: 20%;
    animation: rotate 25s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.planet {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 35% 35%, rgba(100, 200, 255, 0.3), rgba(20, 80, 180, 0.1));
    border-radius: 50%;
    border: 2px solid rgba(0, 217, 255, 0.2);
    box-shadow: 0 0 60px rgba(0, 217, 255, 0.2), inset -20px -20px 40px rgba(0, 0, 0, 0.5);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 60px rgba(0, 217, 255, 0.2), inset -20px -20px 40px rgba(0, 0, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 100px rgba(0, 217, 255, 0.4), inset -20px -20px 40px rgba(0, 0, 0, 0.5);
    }
}

/* About Section */
.about {
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.1);
    padding: 60px 40px;
    border-radius: 10px;
    margin-bottom: 80px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.about h2,
.features h2,
.notify h2 {
    font-size: 48px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.about p {
    font-size: 18px;
    color: rgba(224, 224, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Features Section */
.features {
    margin-bottom: 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(255, 0, 110, 0.05));
    border: 1px solid rgba(0, 217, 255, 0.2);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.2);
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.feature-card p {
    color: rgba(224, 224, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
}

/* Notify Section */
.notify {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(255, 0, 110, 0.05));
    border: 2px solid rgba(0, 217, 255, 0.2);
    padding: 60px 40px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 80px;
    backdrop-filter: blur(10px);
}

.notify p:first-of-type {
    font-size: 18px;
    color: rgba(224, 224, 255, 0.8);
    margin-bottom: 40px;
}

.email-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.email-form input {
    flex: 1;
    min-width: 250px;
    padding: 14px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 5px;
    color: var(--text-color);
    font-size: 16px;
    transition: all 0.3s ease;
}

.email-form input::placeholder {
    color: rgba(224, 224, 255, 0.5);
}

.email-form input:focus {
    outline: none;
    background: rgba(0, 0, 0, 0.5);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.2);
}

.form-note {
    font-size: 13px;
    color: rgba(224, 224, 255, 0.5);
    margin-top: 20px;
}

/* Footer */
footer {
    border-top: 1px solid rgba(0, 217, 255, 0.1);
    padding: 40px 0;
    text-align: center;
    color: rgba(224, 224, 255, 0.6);
}

footer p {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icon {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .tagline {
        font-size: 18px;
    }

    .nav-links {
        gap: 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .email-form {
        flex-direction: column;
    }

    .email-form input,
    .email-form button {
        width: 100%;
    }

    .social-links {
        gap: 15px;
    }

    .hero-visual {
        height: 300px;
        margin-bottom: 40px;
    }

    .planet {
        width: 200px;
        height: 200px;
    }

    .asteroid-1 {
        width: 80px;
        height: 80px;
    }

    .asteroid-2 {
        width: 60px;
        height: 60px;
    }

    .asteroid-3 {
        width: 70px;
        height: 70px;
    }
}
