@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

body {
    background-color: #0a0a0a;
    color: #00ffff;
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    padding: 20px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.video-container {
    margin: 20px auto;
    width: 80%;
    max-width: 600px;
}

iframe {
    width: 100%;
    height: 300px;
    border: 2px solid #00ffff;
    border-radius: 5px;
}

.info, .features {
    background: rgba(0, 255, 255, 0.1);
    padding: 15px;
    margin: 10px auto;
    width: 80%;
    max-width: 600px;
    border-radius: 5px;
    box-shadow: 0 0 10px #00ffff;
}

.features ul {
    list-style: none;
    padding: 0;
}

.features ul li {
    padding: 5px 0;
    font-size: 1.2em;
}

.download-btn {
    background: #00ffff;
    color: #000;
    border: none;
    padding: 15px 30px;
    font-size: 1.5em;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 20px;
    transition: 0.3s;
}

.download-btn:hover {
    background: #008888;
    color: #fff;
}