root: {
	--mainc: #7f00ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    overflow: hidden;
}

/* ================= Enhanced Loading Screen ================ */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 1s ease-in-out;
    overflow: hidden;
}

.loader-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.neon-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid #7f00ff;
    border-radius: 50%;
    box-shadow: 0 0 30px #7f00ff,
                inset 0 0 30px #7f00ff;
    animation: pulse 2s infinite;
}

.quantum-loader {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotate 4s linear infinite;
}

.quantum-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #7f00ff;
    border-radius: 50%;
    transform-origin: 150px;
    animation: dot-pulse 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

@keyframes dot-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.5); }
}

.holographic-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(127, 0, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(127, 0, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: grid-move 20s linear infinite;
}

.loading-progress {
    position: absolute;
    bottom: 20%;
    color: #7f00ff;
    font-size: 1.5rem;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 10px rgba(127, 0, 255, 0.8);
}

.neon-text {
    position: absolute;
    top: 20%;
    color: #7f00ff;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 10px rgba(127, 0, 255, 0.8);
    animation: text-glitch 2s infinite;
}

@keyframes grid-move {
    0% { background-position: 0 0; }
    100% { background-position: 30px 30px; }
}

@keyframes text-glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

.energy-beam {
    position: absolute;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        #7f00ff 50%, 
        transparent 100%);
    animation: beam-sweep 3s ease-in-out infinite;
    left: 50%;
}

@keyframes beam-sweep {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #7f00ff;
    border-radius: 50%;
    animation: particle-float 3s infinite;
}

@keyframes particle-float {
    0%, 100% { transform: translateY(0); opacity: 0; }
    50% { transform: translateY(-20px); opacity: 1; }
}
.container{
	background: url('https://d.latintimes.com/en/full/568208/trump-inauguration-viewings-01222025-1.jpg') center/cover;
}
.container {
    display: none;
    position: relative;
    width: 100%;
    height: 100vh;
}

.timer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 2rem;
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.5);
}

.time-unit {
    text-align: center;
}

.time-unit span {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 10px rgba(127, 0, 255, 0.8);
}

.label {
    color: #7f00ff;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

