
/* =====================================
   LOGO
====================================== */

.logo-container {
    position: relative;
    z-index: 2;

    width: 100%;
    text-align: center;

    padding-top: 45px;

    animation: slideDown 1s ease-out;
}

.logo-container img {
    height: 85px;
    max-width: 90%;

    object-fit: contain;

    filter:
        drop-shadow(0 4px 8px rgba(0, 0, 0, 0.18)) drop-shadow(0 8px 25px rgba(0, 0, 0, 0.15));
}

/* =====================================
   MAIN CONTENT
====================================== */

.content-wrapper {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px 80px;
}

.welcome-card {
    width: 100%;
    max-width: 520px;
    text-align: center;
    padding: 42px 45px 38px;
    border-radius: 24px;
    background: rgba(15, 12, 7, 0.40);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: cardFadeUp 1.2s ease-out;
}

.welcome-label {
    display: inline-block;

    margin-bottom: 12px;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 2.5px;

    text-transform: uppercase;

    color: #e4c76c;
}

.welcome-card h1 {
    margin: 0;

    font-size: 38px;
    line-height: 1.15;

    font-weight: 500;

    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.30);
}

.welcome-card .subtitle {
    max-width: 390px;

    margin: 14px auto 30px;

    font-size: 16px;
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.88);

    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

/* =====================================
   LOGIN BUTTON
====================================== */

.login-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 190px;

    padding: 14px 36px;

    background: linear-gradient(135deg,
            #b7943d,
            #d0ae57);

    color: #fff;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;

    text-decoration: none;

    font-size: 16px;
    font-weight: 600;

    letter-spacing: 0.3px;

    cursor: pointer;

    box-shadow:
        0 10px 30px rgba(183, 148, 61, 0.30);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        filter 0.3s ease;
}

.login-btn:hover {
    transform: translateY(-3px);

    filter: brightness(1.08);

    box-shadow:
        0 14px 35px rgba(183, 148, 61, 0.42);
}

/* =====================================
   DIVIDER
====================================== */

.divider {
    display: flex;

    align-items: center;

    gap: 12px;

    margin: 32px 0 22px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 12px;
}

.divider::before,
.divider::after {
    content: "";

    height: 1px;
    flex: 1;

    background: rgba(255, 255, 255, 0.18);
}

/* =====================================
   MOBILE DOWNLOAD
====================================== */

.mobile-title {
    margin: 0 0 6px;

    font-size: 15px;
    font-weight: 500;

    color: #fff;
}

.mobile-description {
    margin: 0 0 18px;

    font-size: 12px;

    color: rgba(255, 255, 255, 0.65);
}

.store-buttons {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 12px;

    flex-wrap: wrap;
}

.store-btn {
    min-width: 180px;
    height: 58px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 8px 17px;

    border-radius: 12px;

    background: rgba(0, 0, 0, 0.78);

    border: 1px solid rgba(255, 255, 255, 0.20);

    color: #fff;

    text-decoration: none;

    text-align: left;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.store-btn:hover {
    transform: translateY(-3px);

    background: rgba(0, 0, 0, 0.95);

    border-color: rgba(202, 163, 37, 0.65);
}

.store-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 30px;

    font-size: 29px;
}

.store-text {
    display: flex;
    flex-direction: column;
}

.store-small {
    font-size: 10px;
    line-height: 1;

    color: rgba(255, 255, 255, 0.72);
}

.store-name {
    margin-top: 3px;

    font-size: 16px;
    line-height: 1.1;

    font-weight: 600;
}

/* =====================================
   FOOTER
====================================== */

.footer {
    position: absolute;

    bottom: 18px;
    left: 0;

    z-index: 2;

    width: 100%;

    text-align: center;

    font-size: 11px;

    color: rgba(255, 255, 255, 0.55);
}

/* =====================================
   ANIMATIONS
====================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-25px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes cardFadeUp {
    from {
        transform: translateY(25px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* =====================================
   MOBILE
====================================== */

@media (max-width: 768px) {

    body {
        overflow: auto;
    }

    .logo-container {
        padding-top: 30px;
    }

    .logo-container img {
        height: 65px;
    }

    .content-wrapper {
        align-items: flex-start;

        padding-top: 55px;
        padding-bottom: 90px;
    }

    .welcome-card {
        max-width: 430px;

        padding: 32px 22px 30px;

        border-radius: 20px;
    }

    .welcome-card h1 {
        font-size: 29px;
    }

    .welcome-card .subtitle {
        font-size: 14px;

        margin-bottom: 24px;
    }

    .login-btn {
        width: 100%;

        min-width: unset;

        padding: 13px 28px;
    }

    .store-buttons {
        flex-direction: column;
    }

    .store-btn {
        width: 100%;
        max-width: 280px;
    }

    .divider {
        margin-top: 27px;
    }
}

@media (max-height: 700px) {

    .logo-container {
        padding-top: 25px;
    }

    .logo-container img {
        height: 60px;
    }

    .content-wrapper {
        padding-top: 15px;
        padding-bottom: 55px;
    }

    .welcome-card {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .welcome-card h1 {
        font-size: 30px;
    }

    .welcome-card .subtitle {
        margin-bottom: 20px;
    }

    .divider {
        margin-top: 22px;
        margin-bottom: 17px;
    }
}