/* Font definitions */
@import url('https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,900;1,900&display=swap');

.seven-loading-screen {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999999;
    background-color: #131313;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease;
    opacity: 1;
}

.seven-loading-screen.hidden {
    display: none !important;
}

.seven-loading-screen.opacity-0 {
    opacity: 0;
}

.seven-loading-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.seven-logo-container {
    position: relative;
    width: 7rem;
    height: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: seven-heartbeat 1.5s ease-in-out infinite;
}

@media (min-width: 640px) {
    .seven-logo-container {
        width: 9rem;
        height: 9rem;
    }
}

.seven-logo-aura {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #00a8e8;
    filter: blur(24px);
    opacity: 0.2;
    border-radius: 9999px;
    animation: seven-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.seven-logo-img {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(0,168,232,0.8));
}

.seven-loading-text {
    color: #00a8e8;
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    letter-spacing: 0.1em;
    font-size: 1.25rem;
    line-height: 1.75rem;
    text-align: center;
    margin: 0;
}

@media (min-width: 640px) {
    .seven-loading-text {
        font-size: 1.5rem;
        line-height: 2rem;
    }
}

@media (min-width: 768px) {
    .seven-loading-text {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
}

.seven-loading-text span {
    color: #ffffff;
}

.seven-loader-dots {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.seven-dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 9999px;
    animation: seven-bounce 1s infinite;
}

.seven-dot.dot-1 {
    background-color: #00a8e8;
    animation-delay: -0.3s;
}

.seven-dot.dot-2 {
    background-color: #73cbf5;
    animation-delay: -0.15s;
}

.seven-dot.dot-3 {
    background-color: #ffffff;
    animation-delay: 0s;
}

@keyframes seven-heartbeat {
    0%, 100% { transform: scale(1); }
    14% { transform: scale(1.1); }
    28% { transform: scale(1); }
    42% { transform: scale(1.1); }
    70% { transform: scale(1); }
}

@keyframes seven-pulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.1; }
}

@keyframes seven-bounce {
    0%, 100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8,0,1,1);
    }
    50% {
        transform: none;
        animation-timing-function: cubic-bezier(0,0,0.2,1);
    }
}
