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

.logo {
    position: fixed;
}

html,
body {
    overflow: visible !important;
    background-color: black;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #e6e6e6;
}

h1, h2, h3 {
    font-family: "Amaranth", sans-serif;
}

/* ===== Layout ===== */
.CustomPage {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.CustomPage section {
    margin: 3rem 0;
}

h1,
h2,
h3 {
    font-weight: bold;
    margin-bottom: 1rem;
    color: #27d374;
    /* Neon green accent */
}

p {
    margin-bottom: 1rem;
}

/* ===== Intro Section ===== */
.intro {
    text-align: center;
    margin-top: 2rem;
}

.title {
    font-size: 3rem;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.2rem;
    font-style: italic;
    color: #ffcc00d2;
    margin-top: 0.5rem;
}

/* ===== Trailer & Description ===== */
.trailer-and-description {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.trailer {
    flex: 1 1 400px;
}

.trailer iframe {
    width: 100%;
    height: 315px;
    border-radius: 8px;
}

.description {
    flex: 1 1 400px;
}

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

.description li {
    margin-bottom: 0.5rem;
}

/* ===== Gallery ===== */
.gallery {
    text-align: center;
}

.gallery p {
    font-style: italic;
    color: #999;
}

/* ===== Downloads Section ===== */
.downloads {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.downloads .free,
.downloads .pro {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 10px;
}

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

.downloads li {
    margin-bottom: 0.5rem;
}

.downloads a {
    color: #00ffcc;
    text-decoration: none;
}

.downloads a:hover {
    text-decoration: underline;
}

.pro-bonus {
    grid-column: span 2;
    font-size: 0.95rem;
    color: #ccc;
    margin-top: 1rem;
    background: #262626;
    padding: 1rem;
    border-radius: 8px;
}

/* ===== Footer ===== */
footer.thanks {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #aaa;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .trailer {
        flex: 1 1;
    }

    .downloads {
        grid-template-columns: 1fr;
    }

    .pro-bonus {
        grid-column: span 1;
    }
}

@media (max-width: 700px) {
    .title {
        font-size: 2.2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .trailer-and-description {
        flex-direction: column;
    }

    .trailer iframe {
        height: 200px;
    }
}

@media (max-width: 500px) {
    main {
        padding: 1rem;
    }

    .title {
        font-size: 1.8rem;
    }

    h2,
    h3 {
        font-size: 1.2rem;
    }

    p,
    li {
        font-size: 0.9rem;
    }
}