@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap');

/* ======================= */
/* GLOBAL */
/* ======================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Google Sans", "Poppins", "Montserrat", sans-serif;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    background: #0b46ff;
    color: #ffffff;
}

.landing-page {
    width: 100%;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* ======================= */
/* ROTATE NOTICE */
/* ======================= */

.rotate-notice {
    display: none;
}

/* ======================= */
/* HERO */
/* ======================= */

.hero {
    position: relative;
    flex: 1;
    min-height: 0;
    width: 100%;
    overflow: hidden;
    background: #0b46ff;
}

.hero picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
}

.hero-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    z-index: 0;
    background: #0b46ff;
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

/* ======================= */
/* BUTTONS */
/* ======================= */

.hero-buttons {
    position: absolute;
    left: 30%;
    top: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 1.3vw, 18px);
    transform: translate(-50%, -50%);
    pointer-events: auto;
}

.btn {
    min-width: clamp(105px, 9vw, 135px);
    padding: clamp(12px, 1.1vw, 16px) clamp(18px, 2.2vw, 32px);
    border-radius: clamp(13px, 1.3vw, 17px);
    text-decoration: none;
    text-align: center;
    font-size: clamp(13px, 1.1vw, 16px);
    font-weight: 700;
    border: 3.5px solid #ffffff;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    white-space: nowrap;
}

.btn i {
    font-size: clamp(13px, 1.2vw, 17px);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 11px 0 rgba(0, 0, 0, 0.25);
}

.btn-login,
.btn-playstore {
    background: #1841bd;
    color: #ffffff;
}

/* ======================= */
/* FOOTER */
/* ======================= */

.footer {
    width: 100%;
    height: clamp(145px, 20dvh, 300px);
    background: #000000;
    color: #ffffff;
    flex-shrink: 0;
    position: relative;
}

.footer-top {
    height: calc(100% - 42px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px clamp(24px, 5vw, 90px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    gap: 24px;
    overflow: hidden;
}

.footer-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    min-width: 0;
}

.footer-dpo-box {
    width: clamp(80px, 7vw, 110px);
    height: clamp(80px, 7vw, 110px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.footer-dpo-img {
    width: 82%;
    height: 82%;
    object-fit: contain;
    display: block;
}

.footer-info {
    max-width: 750px;
    min-width: 0;
}

.footer-info p {
    font-size: 13px;
    line-height: 1.7;
    color: #ffffff;
}

.footer-line {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-line i {
    width: 15px;
    min-width: 15px;
    margin-top: 5px;
    font-size: clamp(10px, 0.85vw, 13px);
    color: #ffffff;
    text-align: center;
}

.footer-line span {
    flex: 1;
}

/* ======================= */
/* FOOTER SOCIAL */
/* ======================= */

.footer-social {
    min-width: 260px;
    max-width: 330px;
    color: #ffffff;
}

.footer-social h4 {
    font-size: 18px;
    font-weight: bolder;
    letter-spacing: 0.5px;
    margin-top: 5px;
    color: #ffffff;
}

.footer-social p {
    margin-top: 10px;
    font-size: clamp(10px, 0.85vw, 11px);
    line-height: 1.2;
    color: #ffffff;
}

.social-icons {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: clamp(18px, 2vw, 30px);
}

.social-icons a {
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.social-icons a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

/* ======================= */
/* FOOTER BOTTOM */
/* ======================= */

.footer-bottom {
    height: 42px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    padding: 0 clamp(24px, 5vw, 30px);
    gap: 28px;
}

.footer-bottom p {
    font-size: clamp(9px, 0.75vw, 11px);
    color: #ffffff;
    text-align: left;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(24px, 3vw, 25px);
    text-align: right;
    justify-self: end;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(9px, 0.75vw, 11px);
    font-weight: 400;
    white-space: nowrap;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-language {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    font-size: clamp(9px, 0.75vw, 11px);
    color: #ffffff;
    justify-self: end;
}

.footer-language i {
    font-size: 10px;
}

/* ======================= */
/* LANDSCAPE RESPONSIVE */
/* ======================= */

@media (orientation: landscape) {
    .hero-cover {
        object-fit: cover;
        object-position: center center;
    }

    .hero-buttons {
        left: 30%;
        top: 60%;
    }
}

@media (orientation: landscape) and (max-width: 1180px) {
    .hero-buttons {
        left: 25%;
        top: 54%;
        gap: 14px;
    }

    .btn {
        min-width: 100px;
        padding: 8px 22px;
        font-size: 14px;
    }

    .btn i {
        font-size: 15px;
    }

    .footer-top {
        padding: 10px 30px;
    }

    .footer-social {
        min-width: 230px;
    }

    .footer-links {
        gap: 28px;
    }
}

@media (orientation: landscape) and (max-height: 650px) {
    .footer {
        height: 135px;
    }

    .footer-top {
        height: 100px;
        padding: 8px 35px;
    }

    .footer-bottom {
        height: 35px;
    }

    .footer-dpo-box {
        width: 75px;
        height: 75px;
    }

    .footer-info p {
        font-size: 9px;
        line-height: 1.18;
    }

        .footer-info strong.embm {
        font-size: 11px !important;
        line-height: 1.1;
    }

    .footer-social h4 {
        font-size: 10px;
        margin-bottom: 8px;
    }

    .footer-social p {
        font-size: 9px;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .social-icons {
        gap: 18px;
    }

    .footer-links {
        gap: 24px;
    }

    .footer-links a,
    .footer-bottom p,
    .footer-language {
        font-size: 9px;
    }

    .btn {
        min-width: 90px;
        padding: 9px 15px;
        font-size: 11px;
    }
}

/* ======================= */
/* MOBILE VIEW */
/* ======================= */

@media (max-width: 767px) {
    html,
    body {
        width: 100%;
        min-height: 100%;
        height: auto;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .landing-page {
        width: 100%;
        min-height: 100dvh;
        height: auto;
        display: flex;
        flex-direction: column;
        overflow-x: hidden;
        overflow-y: auto;
        background: #0b46ff;
    }

    .hero {
        position: relative;
        flex: 0 0 auto;
        width: 100%;
        height: calc(100dvh - 190px);
        min-height: 430px;
        overflow: hidden;
    }

    .hero picture {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        display: block;
    }

    .hero-cover {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    .hero-content {
        position: absolute;
        inset: 0;
        z-index: 2;
        pointer-events: none;
    }

    .hero-buttons {
        position: absolute;
        left: 50%;
        top: auto;
        bottom: 22px;
        width: 100%;
        padding: 0 18px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        transform: translateX(-50%);
        pointer-events: auto;
    }

    .btn {
        min-width: 96px;
        max-width: 125px;
        padding: 8px 12px;
        font-size: 11px;
        border-radius: 13px;
        border: 2.5px solid #ffffff;
        box-shadow: 0 3px 0 rgba(0, 0, 0, 0.35);
        gap: 7px;
    }

    .btn i {
        font-size: 12px;
    }

    .footer {
        flex: 0 0 auto;
        width: 100%;
        height: auto;
        min-height: 190px;
        background: #000000;
    }

 

    .footer-top {
        height: auto;
        min-height: 128px;
        display: block;
        padding: 30px 24px 0px 24px;
        overflow: visible;
    }

    .footer-left {
        width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 72px;
        align-items: center;
        column-gap: 10px;
    }

    .footer-info {
        grid-column: 1;
        grid-row: 1;
        max-width: 100%;
        min-width: 0;
        margin-top: 0;
    }

        .footer-info strong.embm {
        font-size: 13px !important;
        line-height: 1.1;
    }

    .footer-info p {
        padding-left: 0;
        margin-top: 0;
        font-size: 8.5px;
        line-height: 1.25;
        color: #ffffff;
    }

    .footer-info p:first-child {
        margin-bottom: 8px;
    }

    .footer-line {
        display: flex;
        align-items: flex-start;
        gap: 6px;
        margin-top: 4px;
        min-width: 0;
    }

    .footer-line i {
        width: 12px;
        min-width: 12px;
        margin-top: 2px;
        font-size: 9px;
        text-align: center;
    }

    .footer-line span {
        display: block;
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .footer-dpo-box {
        grid-column: 2;
        grid-row: 1;
        width: 72px;
        height: 72px;
        margin: 0;
        justify-self: end;
        align-self: center;
    }

    .footer-dpo-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .footer-social {
        display: none;
    }

    .footer-bottom {
        height: auto;
        min-height: 62px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 8px 10px 10px;
    }

    .footer-links {
        order: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-wrap: nowrap;
    }

    .footer-links a {
        font-size: 8px;
        white-space: nowrap;
    }

    .footer-bottom p {
        order: 2;
        text-align: center;
        font-size: 7.8px;
        line-height: 1.2;
    }

    .footer-language {
        display: none;
    }
}

/* ======================= */
/* SMALL PHONES */
/* ======================= */

@media (max-width: 380px) {
    .hero {
        height: calc(100dvh - 180px);
        min-height: 420px;
    }

    .hero-buttons {
        bottom: 18px;
        gap: 7px;
        padding: 0 14px;
    }

    .btn {
        min-width: 90px;
        padding: 7px 9px;
        font-size: 10px;
    }

    .btn i {
        font-size: 11px;
    }

    .footer {
        min-height: 180px;
    }

    .footer-top {
        min-height: 120px;
         padding: 30px 24px 0px 24px;
    }

    .footer-left {
        grid-template-columns: minmax(0, 1fr) 62px;
        column-gap: 8px;
    }

    .footer-dpo-box {
        width: 62px;
        height: 62px;
    }

    .footer-info p {
        font-size: 7.7px;
        line-height: 1.2;
    }

    .footer-line {
        gap: 5px;
        margin-top: 3px;
    }

    .footer-line i {
        width: 10px;
        min-width: 10px;
        font-size: 8px;
    }

    .footer-bottom {
        min-height: 60px;
        padding: 7px 8px;
    }

    .footer-links {
        gap: 8px;
    }

    .footer-links a,
    .footer-bottom p {
        font-size: 7.6px;
    }
}

/* ======================= */
/* EXTRA SMALL PHONES */
/* ======================= */

@media (max-width: 330px) {
    .hero {
        height: calc(100dvh - 175px);
        min-height: 415px;
    }

    .hero-buttons {
        bottom: 16px;
        gap: 6px;
        padding: 0 10px;
    }

    .btn {
        min-width: 84px;
        padding: 7px 8px;
        font-size: 9.5px;
    }

    .footer-left {
        grid-template-columns: minmax(0, 1fr) 58px;
    }

    .footer-dpo-box {
        width: 58px;
        height: 58px;
    }

    .footer-info p {
        font-size: 7.2px;
    }

    .footer-links {
        gap: 7px;
    }

    .footer-links a,
    .footer-bottom p {
        font-size: 7.2px;
    }
}

/* ======================= */
/* iPAD / TABLET PORTRAIT */
/* ======================= */

@media (min-width: 768px) and (max-width: 1180px) and (orientation: portrait) {
    .hero,
    .footer {
        display: none;
    }

    .landing-page {
        width: 100%;
        height: 100dvh;
        background: #000000;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 24px;
    }

    .rotate-notice {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 18px;
        width: 100%;
        max-width: 430px;
        min-height: 260px;
        padding: 32px 24px;
        border-radius: 28px;
        background: rgba(0, 0, 0, 0.28);
        border: 2px solid rgba(255, 255, 255, 0.45);
        text-align: center;
        color: #ffffff;
    }

    .rotate-notice i {
        font-size: 58px;
    }

    .rotate-notice p {
        font-size: 22px;
        font-weight: 700;
        line-height: 1.35;
    }
}

