@font-face {
    font-family: "Awo";
    src: url(../fonts/Audiowide-Regular.woff2);
}

@font-face {
    font-family: "italicTitles";
    src: url(../fonts/Exo2-BlackItalic.woff2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Awo', sans-serif;
}

body {
    background-color: #0a0a0a;
    color: white;
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    backdrop-filter: blur(10px);
    background-color: rgba(0,0,0,0.4);
    z-index: 100;
}

header a {
    text-decoration: none;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    transition: background 0.3s;
}

header a:hover, header a.active {
    background-color: rgba(255,255,255,0.1);
}

/* Download Hero Section */
.download-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 150px 20px 50px;
    background: linear-gradient(135deg, #1f1f1f, #0a0a0a);
}

.download-hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: 15px;
    font-family: "italicTitles", sans-serif;
    background: linear-gradient(90deg, #6349B7, #AE56D7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.download-hero p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    margin-bottom: 50px;
    color: #ccc;
}

.video-container {
    width: 80%;
    max-width: 800px;
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(163, 85, 218, 0.5);
}

.video-container video {
    width: 100%;
    display: block;
}

/* Download Button */
.download-hero button {
    padding: 18px 50px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg,#6349B7,#AE56D7);
    color: white;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(163,85,218,0.5);
}

.download-hero button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(163,85,218,0.6);
    background: linear-gradient(135deg,#AE56D7,#6349B7);
}

/* Responsive */
@media screen and (max-width: 768px) {
    header {
        padding: 15px 30px;
    }

    .download-hero {
        padding: 130px 15px 50px;
    }

    .video-container {
        width: 90%;
    }
}

@media screen and (max-width: 480px) {
    header {
        padding: 12px 20px;
    }

    .download-hero {
        padding: 100px 10px 40px;
    }

    .download-hero h1 {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .download-hero button {
        width: 90%;
    }
}

.video-container {
    width: 80%;
    max-width: 800px;
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(163, 85, 218, 0.5);
    position: relative;
    padding-bottom: 30%; /* ratio 16:9  56.25 */
    height: 0;
    max-height: 200px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
