@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Pompiere&display=swap');
:root {
    --color-primary: #b9030f;
    --color-secondary: #9e0004;
    --color-accent: #70160e;
    --color-dark: #161917;
    --color-light: #e1e3db;
}


.download-section {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--color-light);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.background-text {
    position: absolute;
    font-family: 'Pompiere', sans-serif;
    font-size: 20vw;
    color: rgba(185, 3, 15, 0.1);
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
    animation: scrollText 20s linear infinite;
}

@keyframes scrollText {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.text-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.title {
    font-family: 'Pompiere', sans-serif;
    font-size: 4.5rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    line-height: 1;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease-out forwards;
}

.subtitle {
    font-family: 'Pompiere', sans-serif;
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease-out forwards 0.2s;
}

.emoji-mobile {
    display: none;
}

.emoji-desktop {
    display: inline;
}

.download-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lottie-container {
    width: 300px;
    height: 300px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease-out forwards 0.4s;
}

.download-section {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--color-light);
}
.download-button {
    font-family: 'Pompiere', sans-serif;
    font-size: 1.5rem;
    color: var(--color-light);
    background-color: var(--color-dark);
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease-out forwards 0.6s;
    margin-top: 1rem;
}

.download-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.download-button:hover::before {
    transform: translateX(0);
}

.download-text {
    position: relative;
    z-index: 1;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-message {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-dark);
    color: var(--color-light);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Pompiere', sans-serif;
    font-size: 1.5rem;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 100;
}

.success-message.show {
    top: 20px;
    opacity: 1;
}

@media (max-width: 968px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .title {
        font-size: 3.5rem;
    }

    .subtitle {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .emoji-desktop {
        display: none;
    }

    .emoji-mobile {
        display: inline;
    }

    .lottie-container {
        width: 200px;
        height: 200px;
    }
 
}

.language-options {
    margin-top: 1rem;
    display: none;
    gap: 1rem;
    position: relative;
    z-index: 10;
}

.language-options.show {
    display: flex;
}

.language-option {
    font-family: 'Pompiere', sans-serif;
    font-size: 1.2rem;
    color: var(--color-light);
    background-color: var(--color-dark);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 11;
}

.language-option:hover {
    background-color: var(--color-primary);
}

.footer {
    padding:0;
}