body {
    margin: 0;
    background: #0a0a0a;
    color: #00ffea;
    font-family: 'Press Start 2P', cursive;
    text-align: center;
    overflow-x: hidden;
}

/* CRT Scanlines */
.scanlines {
    pointer-events: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255,255,255,0.03) 0px,
        rgba(255,255,255,0.03) 2px,
        transparent 2px,
        transparent 4px
    );
    z-index: 999;
}

header {
    padding: 40px 0;
}

.title {
    font-size: 48px;
    color: #ff006e;
    text-shadow: 0 0 10px #ff006e, 0 0 20px #ff2ba0;
}

.subtitle {
    font-size: 14px;
    color: #00f5d4;
    margin-top: 10px;
}

.hero iframe {
    width: 80%;
    height: 400px;
    border: 4px solid #00ffea;
    box-shadow: 0 0 20px #00ffea;
    margin-top: 20px;
}

.features h2,
.screenshots h2 {
    margin-top: 60px;
    font-size: 20px;
    color: #ffbe0b;
    text-shadow: 0 0 10px #ffbe0b;
}

.features ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.features li {
    margin: 12px 0;
    font-size: 12px;
}

.screenshots .grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px auto;
    flex-wrap: wrap;
}

.screenshots img {
    width: 280px;
    border: 3px solid #ff006e;
    box-shadow: 0 0 15px #ff006e;
    transition: transform 0.2s ease;
}

.screenshots img:hover {
    transform: scale(1.1);
}

.btn {
    display: inline-block;
    margin: 40px 0;
    padding: 15px 25px;
    background: #ff006e;
    color: white;
    text-decoration: none;
    border: 3px solid #ff2ba0;
    box-shadow: 0 0 15px #ff2ba0;
    transition: 0.2s;
}

.btn:hover {
    background: #ff2ba0;
    box-shadow: 0 0 25px #ff2ba0;
}

footer {
    margin-top: 60px;
    padding: 20px;
    font-size: 10px;
    color: #888;
}
.btn-secondary {
    display: inline-block;
    margin: 20px 0;
    padding: 12px 20px;
    background: #00ffea;
    color: #0a0a0a;
    text-decoration: none;
    border: 3px solid #00f5d4;
    box-shadow: 0 0 15px #00f5d4;
    transition: 0.2s;
    font-size: 12px;
}

.btn-secondary:hover {
    background: #00f5d4;
    box-shadow: 0 0 25px #00f5d4;
    transform: scale(1.05);
}
.download-btn {
    display: inline-block;
    padding: 15px 25px;
    margin-top: 20px;
    background: #ff006e;
    color: white;
    text-decoration: none;
    border: 3px solid #ff2ba0;
    box-shadow: 0 0 20px #ff2ba0;
    font-size: 12px;
    transition: 0.2s ease;
}

.download-btn:hover {
    background: #ff2ba0;
    box-shadow: 0 0 30px #ff2ba0;
    transform: scale(1.05);
}
.press-section a {
    color: #00f5d4;
    text-decoration: none;
    border-bottom: 2px solid #00f5d4;
    padding-bottom: 2px;
    transition: 0.2s;
}
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 56.25%;
    border: 3px solid #ff2ba0;
    box-shadow: 0 0 20px #ff2ba0;
    border-radius: 10px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
e;
}



