/* Global reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Base styles */
body {
    height: 100vh;
    color: var(--c-pink);
    font-family: SPACEMASSION, sans-serif;
    background: url("./assets/images/bg-image.png") no-repeat center / cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.background {
    height: 100%;
    width: 100%;
    position: relative;
}

.top-left {
    background: url("./assets/icons/deco-pc-top-left.png") no-repeat center / cover;
    width: 40vw;
    aspect-ratio: 1/1;
    position: absolute;
    top: 0;
    left: 0;
}

.top-right {
    background: url("./assets/icons/deco-pc-top-right.png") no-repeat center / cover;
    width: 25vw;
    aspect-ratio: 1/1;
    position: absolute;
    top: 0;
    right: 0;
}

.bottom-right {
    background: url("./assets/icons/deco-pc-bottom-right.png") no-repeat center / cover;
    width: 25vw;
    aspect-ratio: 1/1;
    position: absolute;
    bottom: 0;
    right: 0;
}

.hero-logo {
    align-self: flex-start;
    width: 100%;
    height: 100%;
    background: url("./assets/icons/PC-logo.png") no-repeat center / contain;
    position: absolute;
}

.hero-info {
    align-self: flex-start;
    width: 100%;
    height: 100%;
    background: url("./assets/icons/PC-tov.png") no-repeat center / contain;
    position: absolute;
}

/* Loading icon */
.loading {
    width: 100%;
    height: 100%;
    background: url("./assets/icons/PC-loading.png") no-repeat center / contain;
    position: absolute;
}

/* Medium desktop (1200px–1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
    .top-left {
        width: 36vw;
    }

    .top-right {
        width: 22vw;
    }
}

/* Tablet landscape (768px–1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .top-left {
        width: 36vw;
    }

    .top-right {
        width: 22vw;
    }
}

/* Mobile (<=768px) */
@media (max-width: 768px) {
    .top-left {
        width: 36vw;
    }

    .top-right {
        width: 22vw;
    }
}

/* Small mobile (<=425px) */
@media (max-width: 435px) {
    body {
        background: url("./assets/images/BG.png") no-repeat end / cover;
    }

    .top-left {
        background: url("./assets/icons/deco-mob-top-left.png") no-repeat center / cover;
        width: 45vw;
        aspect-ratio: 1/1;
    }

    .top-right {
        background: url("./assets/icons/deco-mob-top-right.png") no-repeat center / cover;
        width: 28vw;
        aspect-ratio: 1/1;
        right: 0;
    }

    .bottom-right {
        background: url("./assets/icons/deco-mob-bot-right.png") no-repeat center / cover;
        width: 60vw;
        aspect-ratio: 1/1;
        right: 0px;
    }

    .bottom-left {
        background: url("./assets/icons/deco-mob-bot-left.png") no-repeat center / cover;
        width: 40vw;
        aspect-ratio: 1/1;
        left: 0px;
        bottom: 0;
        position: absolute;
    }

    .hero-logo {
        background: url("./assets/icons/mob-Logo.png") no-repeat center / contain;
    }

    .hero-info {
        background: url("./assets/icons/mob-TOV.png") no-repeat center / contain;
    }

    /* Loading icon */
    .loading {
        background: url("./assets/icons/mob-loading.png") no-repeat center / contain;
    }
}
