/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #0a0a0a;
    color: #f5e27a;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Galaxy stars */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: transparent;
    box-shadow: 
        1000px 800px #fff,
        400px 200px #fff,
        700px 1000px #fff,
        1500px 1200px #fff,
        300px 1300px #fff,
        1200px 300px #fff,
        900px 500px #fff,
        600px 700px #fff,
        1300px 1500px #fff,
        1100px 400px #fff;
    animation: starMove 200s linear infinite;
    z-index: -2;
}

@keyframes starMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-500px, -500px); }
}

/* Shooting star */
.shooting-star {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 2px;
    height: 100px;
    background: linear-gradient(45deg, #fff, transparent);
    transform: rotate(45deg);
    animation: shoot 3s linear infinite;
    opacity: 0;
}

@keyframes shoot {
    0% { transform: translate(0,0) rotate(45deg); opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translate(1000px, 600px) rotate(45deg); opacity: 0; }
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(245,226,122,0.5);
    position: sticky;
    top: 0;
    z-index: 10;
}

header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: #f5e27a;
}

nav a {
    text-decoration: none;
    color: #f5e27a;
    margin-left: 30px;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #fff;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px;
    background: url('https://i.ibb.co/KcwRDHbY/image.png') no-repeat center center/cover;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: #f5e27a;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: auto;
    color: #fff;
}

.btn {
    margin-top: 30px;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    color: #0a0a0a;
    background: #f5e27a;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 0 15px #f5e27a;
}

/* Sections */
section {
    padding: 80px 50px;
    max-width: 1200px;
    margin: auto;
}

section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #f5e27a;
    text-align: center;
}

section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ddd;
    text-align: center;
}

/* Feature Cards */
.feature-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.card {
    background: rgba(0,0,0,0.6);
    border: 2px solid #f5e27a;
    border-radius: 20px;
    padding: 30px;
    width: 250px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px #f5e27a;
}

.card img {
    width: 80px;
    margin-bottom: 20px;
}

/* Footer */
footer {
    padding: 30px 50px;
    text-align: center;
    background: rgba(0,0,0,0.7);
    color: #f5e27a;
    box-shadow: 0 -5px 20px rgba(245,226,122,0.5);
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
    }
    nav {
        margin-top: 10px;
    }
    .hero h2 {
        font-size: 2rem;
    }
    .feature-cards {
        flex-direction: column;
        align-items: center;
    }
}
