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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #E8E3D9;
    background-image: url('bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(232, 227, 217, 0.3);
    pointer-events: none;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 400px;
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.brand-section {
    margin-bottom: 200px;
    animation: fadeInDown 0.8s ease-out;
}

.brand-logo {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-image {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
}

.slogan {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 22px;
    color: #7D756B;
    margin-top: 12px;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 280px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 14px 24px;
    background-color: #9CAF88;
    border-radius: 24px;
    color: white;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(156, 175, 136, 0.3);
    border: none;
    cursor: pointer;
    min-height: 56px;
}

.download-btn:hover {
    background-color: #8AA578;
    box-shadow: 0 6px 20px rgba(156, 175, 136, 0.4);
    transform: translateY(-2px);
}

.download-btn:active {
    background-color: #7A9568;
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 8px rgba(156, 175, 136, 0.3);
}

.download-btn:focus {
    outline: 2px solid #9CAF88;
    outline-offset: 2px;
}

.store-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    margin-right: 12px;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.store-subtitle {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0.3px;
}

.store-title {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.3px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 480px) {
    .brand-image {
        max-width: 160px;
    }

    .slogan {
        font-size: 20px;
    }

    .download-btn {
        padding: 12px 20px;
        min-height: 52px;
    }

    .store-icon {
        width: 24px;
        height: 24px;
        margin-right: 10px;
    }

    .store-title {
        font-size: 16px;
    }

    .store-subtitle {
        font-size: 10px;
    }
}

@media (max-width: 360px) {
    .brand-image {
        max-width: 140px;
    }

    .slogan {
        font-size: 18px;
    }

    .download-buttons {
        max-width: 260px;
    }
}