@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Orbitron', sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
}

#equalizer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: black;
}

#intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 2s ease;
}

.intro-title {
    font-size: 4em;
    background: linear-gradient(90deg, #ff0080, #40e0d0, #8000ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation: fadeIn 3s forwards;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

.hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero .overlay {
    text-align: center;
    z-index: 1;
    padding: 20px;
}

.title {
    font-size: 4em;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #ff0080, #40e0d0, #8000ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.4em;
    margin-bottom: 25px;
    opacity: 0.85;
}

section {
    padding: 80px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.screenshot img {
    width: 85%;
    border-radius: 15px;
    margin-top: 20px;
    border: 2px solid #444;
    box-shadow: 0 0 25px #ff0080;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    border-radius: 12px;
    background: linear-gradient(90deg, #ff0080, #40e0d0, #8000ff);
    box-shadow: 0 0 20px #ff0080;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn.big {
    font-size: 1.5em;
    padding: 18px 40px;
}

.btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 35px #40e0d0;
}

/* ==== Footer ==== */
footer {
    padding: 30px 20px;
    text-align: center;
    font-size: 0.9em;
    opacity: 0.7;
    background: rgba(0,0,0,0.6);
}
