* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

.landing-container {
    min-height: 100vh;
    background: url('../assets/images/background.png') center top / cover no-repeat;
    background-color: #1a0a2e;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

/* Logo */
.logo-section {
    padding: 30px 0;
}

.logo {
    max-width: 400px;
    height: auto;
}

/* Links Section */
.links-section {
    margin-top: auto;
    padding-bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.links-row {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 900px;
}

.link-item {
    display: flex;
    align-items: center;
    border-radius: 32px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    background: linear-gradient(180deg, #FFFFFF 46.34%, #999999 106.1%);
    position: relative;
    height: 50px;
    flex: 1;
}

.link-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.link-label {
    background: linear-gradient(180deg, #D99001 0%, #C08A1F 100%);
    color: white;
    padding: 0 20px;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    border-radius: 32px;
    position: relative;
    z-index: 2;
    height: 100%;
    white-space: nowrap;
}

.link-city {
    color: #333;
    font-size: 14px;
    font-weight: 700;
    padding: 0 15px;
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
}

/* Download Section */
.download-section {
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: center;
}

.download-image {
    width: 100%;
    height: auto;
}

.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .landing-container {
        background: url('../assets/images/background-mb.png') center top / cover no-repeat;
        background-color: #1a0a2e;
    }

    .logo {
        max-width: 225px;
    }

    .links-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .link-item {
        justify-content: flex-start;
        height: 38px;
        border-radius: 25px;
    }

    .link-label {
        padding: 0 15px;
        font-size: 12px;
        border-radius: 25px;
        min-width: auto;
    }

    .link-city {
        padding: 0 12px;
        font-size: 13px;
    }

    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .download-section {
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    .download-image {
        max-width: 100%;
        width: 100%;
    }
}

