/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    overflow-x: hidden;
}

#page {
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

.header {
    width: 100%;
    margin-bottom: 0.4rem;
}

.logo-container2 {
    background-color: rgba(10, 10, 12, 0.4);
    padding: 0.2rem 0.3rem;
    display: flex;
    align-items: center;
}

.logo-img2 {
    width: 2.52rem;
    /* height: 0.88rem; */
}

.main-content2 {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Download Page Specific */
.download-page {
    background-image: url('../img/bg2.png');
    background-size: 7.5rem 16.24rem;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: RGBA(10, 16, 18, 1);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.download-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 800px;
    margin: auto;
}

.mobile-mockup-centered {
    width: 100%;
    display: flex;
    justify-content: center;
}

.mockup-img-large {
    width: 4.61rem;
    height: 9.46rem;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    padding: 0 1rem;
    margin-top: 0.75rem;
    gap: 0.4rem;
}

.grid-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s;
}

.grid-btn:hover {
    transform: scale(1.05);
}

.grid-icon {
    width: 100%;
    max-width: 300px;
    height: auto;
}
