/*  Made by Alex1Dev for KoiLabs
    Protected by CopyRight.       */

@font-face {
    font-family: 'Zalando Sans Expanded';
    src: local('Zalando Sans Expanded'), local('Arial Black'), local('Impact');
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #0a0a0a;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    font-family: 'Zalando Sans Expanded', 'Arial Black', sans-serif;
}

#bg { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    z-index: 0; 
    pointer-events: none; 
    background-image: 
        radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px), 
        radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px); 
    background-size: 40px 40px; 
    background-position: 0 0, 20px 20px; 
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.2) 100%); 
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.2) 100%); 
} 

body::before { 
    content: ''; 
    position: fixed; 
    top: -50%; 
    left: -50%; 
    width: 200%; 
    height: 200%; 
    background: radial-gradient(circle at 50% 50%, rgba(79, 172, 254, 0.08), transparent 50%), 
                radial-gradient(circle at 80% 20%, rgba(240, 147, 251, 0.08), transparent 40%), 
                radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.08), transparent 40%); 
    z-index: -1; 
    animation: bgMove 20s ease-in-out infinite alternate; 
    pointer-events: none; 
} 

@keyframes bgMove { 
    0% { transform: translate(0, 0) scale(1); } 
    100% { transform: translate(-20px, -20px) scale(1.1); } 
} 

.hero, .page-content, .footer, .dashboard-container, .scene { 
    position: relative; 
    z-index: 1; 
} 

.scene {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.content-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.logo {
    width: 250px;
    max-width: 80vw;
    height: auto;
    opacity: 1;
    z-index: 2;
    backface-visibility: hidden;
}

.text-container {
    position: absolute;
    left: 90%; 
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    overflow: hidden; 
    padding-left: 20px; 
    height: 150px; 
    display: flex;
    align-items: center;
}

.logo-text {
    background: linear-gradient(to right, #ffffff, #ffffff, #ff9900, #ff7322, #ffffff, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Zalando Sans Expanded', 'Arial Black', sans-serif;
    font-size: 100px; 
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
    opacity: 0; 
    transform: translateY(100%); 
    animation: shimmer 6s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

.notification-menu {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-20px);
}

.notify-btn {
    width: 40px;
    height: 40px;
    background-color: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.notify-btn:hover {
    background-color: rgba(40, 40, 40, 0.356);
    border-color: rgba(255, 255, 255, 0.158);
    transform: translateY(-1px);
}

.bell-icon {
    width: 20px;
    height: 20px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.notify-badge {
    position: absolute;
    top: 8px;
    right: 11px;
    width: 6px;
    height: 6px;
    background-color: #ff3b30;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 10px rgba(255, 59, 48, 0.5);
}

.notify-badge.active {
    opacity: 1;
    transform: scale(1);
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7); }
    70% { box-shadow: 0 0 0 3px rgba(255, 59, 48, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0); }
}

/* Menu Styles */
.notify-menu {
    position: absolute;
    top: 50px;
    right: 0;
    width: 250px;
    background-color: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 8px;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px) scale(0.95);
    transform-origin: top right;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notify-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.notify-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.2s ease;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.discord-icon-small {
    width: 28px;
    height: 28px;
    background: #5865F2;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.card-title {
    color: white;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.card-desc {
    color: #aaa;
    font-size: 12px;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.card-btn {
    width: 100%;
    padding: 8px;
    background: #5865F2;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.card-btn:hover {
    background: #4752c4;
}

.countdown-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-unit span {
    color: white;
    font-family: 'Zalando Sans Expanded', 'Arial Black', monospace;
    font-size: 18px;
    font-weight: bold;
}

.time-unit label {
    color: #666;
    font-size: 9px;
    margin-top: 2px;
}

.time-separator {
    color: #444;
    font-weight: bold;
    margin-bottom: 12px;
}

/* 
   RESPONSIVE
              */
              
@media (max-width: 1180px) {
    .content-wrapper {
        flex-direction: column;
        justify-content: center;
    }

    .logo {
        width: 230px;
        margin-bottom: -30%;
    }

    .text-container {
        position: absolute;
        left: 50%;
        top: 120%;
        transform: translateX(-50%);
        padding-left: 0;
        margin-top: 20px;
        height: auto;
        width: 200%;
        justify-content: center;
    }

    .logo-text {
        font-size: 40px;
        white-space: normal;
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        line-height: 1;
        background: linear-gradient(315deg, #ffffff 0%, #ffffff 25%, #ff9900 40%, #ff7322 60%, #ffffff 75%, #ffffff 100%);
        background-size: 200% 200%;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: shimmer 6s linear infinite;
    }

    .notify-btn {
    width: 55px;
    height: 55px;
    background-color: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    } 

    .bell-icon {
    width: 25px;
    height: 25px;
    color: #ffffff;
    transition: transform 0.3s ease;
    }

    .notify-badge {
    position: absolute;
    top: 13px;
    right: 17px;
    width: 7px;
    height: 7px;
    background-color: #ff3b30;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 10px rgba(255, 59, 48, 0.5);
    }

    .notify-badge.active {
    opacity: 1;
    transform: scale(1);
    animation: pulse-red 2s infinite;
    }

    @keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7); }
    70% { box-shadow: 0 0 0 3px rgba(255, 59, 48, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0); }
    }
    
    .logo-text span {
        display: block;
    }
}