*, ::after, ::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    appearance: none;
}
:root {
    --c00: #ff0066;
    --c01: #000000;
    --c02: #e4e4e4;
    --c03: #e0e0e0;
    --ff: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
body {
    font-family: var(--ff);
    font-size: 16px;
    background: var(--c01);
    color: var(--c03);
}
a {
    color: var(--c03);
}
img {
    width: 100%;
}
section {
    margin: 0 auto;
    max-width: 1200px;
}
.hero-section {
    position: relative;
}
.hero-section .hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    gap: 0.2rem;
}
.hero-content .brand {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.hero-content img {
    width: 40px;
}
.hero-content h1 {
    font-size: 3em;
}
.hero-content a {
    text-decoration: none;
    padding: 0.5rem;
    color: #000;
    font-weight: 500;
}
.hero-content .btn-primary {
    padding: 0.7rem 1.5rem;
    font-size: 1em;
    border: 2px solid var(--c02);
    border-radius: 50px;
    font-family: var(--ff);
    margin-top: 0.5rem;
    font-weight: 500;
    color: var(--c01);
    background: var(--c02);
    cursor: pointer;
}

.download-section .container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    text-align: center;
}
.download-section .container .card {
    padding: 1rem;
    border: 2px solid var(--c02);
    border-radius: 1rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
}
.download-section .section-header {
    padding: 2rem 0;
}
.download-section .btn-primary {
    text-decoration: none;
    color: #000;
    padding: 0.5rem 1rem;
    border: 2px solid var(--c02);
    border-radius: 50px;
}

footer {
    width: 100%;
    text-align: center;
    font-size: 0.8em;
}
footer .container {
    padding: 2rem;
    color: var(--c03);
}
footer .container a {
    text-decoration: none;
    color: var(--c03);
    margin-left: 0.4rem;
}


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(50px);
    display: none;
}
.modal-overlay.active {
    display: block;
}
.close-modal {
    background: transparent;
    padding: 1rem;
    font-size: 2.3em;
    border: none;
    outline: none;
    cursor: pointer;
    color: var(--c02);
}
.modal-overlay form {
    max-width: 400px;
    margin: 1rem auto;
    display: flex;
    flex-direction: column;
    padding-top: 2rem;
}
.modal-overlay form .form-group {
    display: flex;
    flex-direction: column;
}
form .input-group {
    display: flex;
    align-items: center;
    border-radius: 5px;
    border: 2px solid var(--c02);
    padding-left: 0.5rem;
    margin-bottom: 0.4rem;

}
input {
    width: 100%;
    border-radius: 5px;
    padding: 0.5rem 0;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--ff);
    font-size: 1em;
    color: var(--c02);
    font-weight: 600;
}
form .btn-small {
    border: none;
    padding: 0.4rem;
    margin-bottom: 0.5rem;
    border-radius: 5px;
    border: 2px solid var(--c02);
    font-size: 0.8em;
    cursor: pointer;
}
form .btn-primary {
    background: var(--c02);
    color: var(--c01);
    border: none;
    padding: 0.7rem;
    font-family: var(--ff);
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
}
form .wait {
    padding-top: 0.5rem;
}
form .wait a {
    color: #000;
    font-weight: 500;
}

@media screen and (max-width: 600px) {
    .hero-content h1 {
        font-size: 2em;
        text-align: center;
    }
    .hero-section {
    margin-top: 5rem;
    margin-bottom: 4rem;
}
}