/* ========================================
   GOLDENAURA LOADING PAGE - MINIMAL STYLES
======================================== */

:root {
    --black: #0F0F0F;
    --green: #5DD62C;
    --white: #F8F8F8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--black);
    color: var(--white);
}

/* Loading Container */
.loading-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Logo Wrapper - Centered */
.logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
}

/* Loading Ring Animation */
.loading-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--green);
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Logo */
.logo {
    width: 120px;
    height: auto;
    z-index: 2;
}

/* Status Wrapper - Bottom of page */
.status-wrapper {
    position: absolute;
    bottom: 100px;
    text-align: center;
}

.status-text {
    font-size: 1rem;
    font-weight: 400;
    color: var(--green);
    letter-spacing: 0.05em;
}

/* Footer */
.footer {
    position: absolute;
    bottom: 30px;
    text-align: center;
    color: rgba(248, 248, 248, 0.3);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 600px) {
    .logo-wrapper {
        width: 160px;
        height: 160px;
    }

    .logo {
        width: 100px;
    }

    .status-text {
        font-size: 0.9rem;
    }

    .status-wrapper {
        bottom: 80px;
    }
}
