@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

/* Reset and basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0d0d0d;
    font-family: 'Lato', sans-serif;
    color: #e0e0e0;
    overflow-x: hidden;
}

/* Hero Section Styles */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle, #1a1a1a 0%, #0d0d0d 100%);
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(3rem, 10vw, 8em);
    color: #00ffc8;
    text-shadow: 0 0 10px #00ffc8, 0 0 20px #00ffc8, 0 0 30px #00ffc8;
    letter-spacing: 5px;
    animation: pulse 4s infinite ease-in-out;
}

.hero p {
    font-size: clamp(1rem, 3vw, 2em);
    color: #a0a0a0;
    margin-top: 10px;
    letter-spacing: 1px;
}

.hero span {
    display: inline-flex;
    align-items: center;
    margin-top: 30px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 5px;
    backdrop-filter: blur(5px);
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
}

.hero span i {
    font-size: 1.2em;
    margin-right: 10px;
    animation: rotate 5s linear infinite;
}

/* Footer Styles */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 20px;
    font-size: 0.8em;
    color: #555;
}

/* Keyframe Animations */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.02); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Simple background effect (dots) */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#1a1a1a 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.2;
    z-index: -1;
}