/***********************************      Global Module Styles     ***********************************/

body {
    margin: 0;
    padding: 0;
    user-select: none;
    font-family: 'Inter', sans-serif;
}


.corner-developer-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    position: fixed;
    z-index: 1002;

    bottom: 6px;
    right: 8px;
}
.corner-developer-info h4 { font-weight: bold; }
.corner-developer-info h4, 
.corner-developer-info p {
    margin: 0;
    font-size: 12px;
}
.corner-developer-info img {
    width: 24px;
    height: auto;

    border-radius: 32px;
    object-fit: contain;
}



/***********************************      Module Toasts     ***********************************/
#toast-container {
    position: fixed;
    bottom: 20px;
    left: 30px;
    z-index: 9999;
}

.toast-icon {
    display: flex;
    align-items: center;
}
.toast-icon-img {
    width: 32px;
    height: auto;
    object-fit: contain;
}

.toast-item {
    display: flex;
    align-items: center;

    font-size: 18px;
    gap: 12px;
    opacity: 0;

    padding: 12px 16px;
    border-radius: 6px;

    transform: translateX(100%);
    transition: all 0.3s ease;
}
.toast-item.toast-in {
    opacity: 1;
    transform: translateX(0);
    animation: toast-in 0.3s ease forwards;
}

.toast-item.toast-out {
    animation: toast-out 0.3s ease forwards;
}

.toast-error { background: #F26D6D; border: 2px solid #c00; color: #900; }
.toast-success { background: #efe; border: 1px solid #0a0; color: #060; }
.toast-warning { background: #FFF3CD; border: 2px solid #FFC107; color: #856404; }

.toast-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    margin-left: auto;
}

@keyframes toast-in {
    from {
        opacity: 0;
        filter: blur(8px);
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0) scale(1);
    }
}

@keyframes toast-out {
    from {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        filter: blur(8px);
        transform: translateY(-10px) scale(0.95);
    }
}
/*********************************************************************************/



/***********************************      Module Header In-Pages     ***********************************/
.module-app-container-presentation-box {
    margin: 18px 8px auto 8px;
}

.presentation-module {
    position: relative;
    width: 100%;
    min-height: 380px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.image-presentation-module {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.image-presentation-module::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(15, 23, 42, 0.92) 0%,
        rgba(30, 58, 95, 0.75) 50%,
        rgba(15, 23, 42, 0.88) 100%
    );
    z-index: 2;
}

.image-presentation-module img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    
    filter: saturate(1.5) brightness(0.95);
    opacity: 0.8;
}

.label-presentation-module {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 380px;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.badge-module {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: #C81D25;
    border: 1px solid #8F1418;
    border-radius: 50px;
    color: var(--white-text-font);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.label-presentation-module h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--white-text-font);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}
.label-presentation-module h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #9B1C1F, #C81D25, #E35D63);
    margin: 1.25rem auto 0;
    border-radius: 4px;
}

.description-module {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    max-width: 540px;
}

/*********************************************************************************/
