* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

body {
    font-family: "Mulish", sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    h1{
        font-weight: 1000;
        font-size: 3rem;
        text-align: center;
    }
    h2{
        font-weight: 800;
        font-size: 2rem;
        text-align: center;
    }
}

.download-apk {
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;

    img{
        max-height: 3rem;
        width: auto;
    }
}

.content{
    img{
        width: 100%;
        border-radius: 2rem;
    }

    width: 40vw;
    display: flex;
    flex-direction: column;
    align-items: center;

    ul{
        list-style-position: inside;
    }

    padding: 3rem 0;
    gap: 1rem;

    .hero-bottom-image{
        width: 20rem;
        height: auto;
    }
}

header {
    width: 100vw;
    padding: 2rem 3rem;
    background-color: black;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    .logo-and-title {
        a {
            font-weight: 1000;
            font-size: 2rem;
            display: flex;
            align-items: center;
            text-decoration: none;
            color: white;
            img{
                width: 3rem;
            }
            gap: 1rem;
        }
    }

    .site-menu {
        a {
            background-color: white;
            padding: 0.5rem 1.5rem;
            text-decoration: none;
            color: black;
            border-radius: 1rem;
            font-weight: 900;
            transition: 0.3s ease-in-out;
            &:hover{
                transform: scale(1.1);
            }
        }
        padding: .5rem;
        display: flex;
        flex-direction: row;
        gap: 2rem;
    }
}

.text-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
}

.text-section-image {
    display: flex;
    flex-direction: column;
    align-items: center;

    background-image: url("/files/src/bg.jpeg");
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.7);
    background-blend-mode: darken;

    width: 100vw;
    color: white;
}

.hero {
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;

    background-image: url("/files/src/bg.jpeg");
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.8);
    background-blend-mode: darken;

    color: white;

    .content{
        padding: 2rem 0 0 0;
    }
}

footer{
    display: flex;
    flex-direction: row;
    width: 100vw;
    justify-content: space-between;
    background-color: black;
    padding: 2rem 3rem;
    color: white;

    .footer-menu{
        display: flex;
        flex-direction: row;
        gap: 2rem;
        a{
            color: white;
            text-decoration: none;
        }
    }
}

.faq-item {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    background: white;
}

.faq-question {
    width: 100%;
    padding: 1rem;
    font-weight: bold;
    font-size: 1.4rem;
    text-align: left;
    background: white;
    border: none;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 1rem;
    font-size: 1.5rem;
    line-height: 1;
}

.faq-question.active::after {
    content: "−";
}

.faq-answer {
    max-height: 0;
    overflow: auto;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #f9f9f9;
    font-size: 1.1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 1rem;
}

.faq-question.active + .faq-answer {
    padding: 2rem 1rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    font-size: 1rem;
}

table th,
table td {
    text-align: left;
    padding: 0.75rem 1rem;
    vertical-align: top;
}

table th {
    font-weight: 800;
    color: #000;
    white-space: nowrap;
}

table td {
    color: #333;
}

table tr:nth-child(even) {
    background-color: #f9f9f9;
}

table tr {
    border-bottom: 1px solid #ddd;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #fff;
}

.feature-list li {
    position: relative;
    padding-left: 2.2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    overflow: hidden;
}

.feature-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0.1rem;
    font-size: 1.2rem;
    color: #00ff88;
    font-weight: bold;
}

.download-guide {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.download-guide li {
    counter-increment: step-counter;
    position: relative;
    background: #f8f8f8;
    border-left: 4px solid #00c66f;
    border-radius: 6px;
    padding: 1rem 1rem 1rem 3rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333;
}

.download-guide li::before {
    content: counter(step-counter);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: #00c66f;
    color: white;
    font-weight: bold;
    border-radius: 50%;
    width: 1.6rem;
    height: 1.6rem;
    text-align: center;
    line-height: 1.6rem;
    font-size: 0.9rem;
}



@media (max-width: 800px) {

    .content{
        width: 95vw;
    }

    header{
        flex-direction: column;
    }

    .site-menu {
        flex-direction: column !important;
        text-align: center;
    }
    footer{
        flex-direction: column;
    }

    .footer-menu{
        flex-direction: column !important;
        text-align: center;
    }

}
