/* Main Layout with Enhanced Background */
.rccEddga_mainlayout {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
}

.rccEddga_mainlayout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../../img/rcc/Landing.png");
    background-position: top;
    background-size: cover;
    opacity: 0.8;
    z-index: 1;
}

.rccEddga_mainlayout::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    z-index: 2;
    animation: pulseGlow 4s ease-in-out infinite;
}

/* Floating Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffffff5d;
    border-radius: 50%;
    animation: float 8s linear infinite;
    box-shadow: 0 0 10px rgba(255, 245, 190, 0.781);
}

/* Animation Keyframes */
@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.1;
    }

    50% {
        opacity: 0.3;
    }
}

.rccEddga_logo {
    animation: gentlePulseGlow 3s ease-in-out infinite;
}

.rccEddga_rcclogo {
    animation: gentlePulseGlow 3s ease-in-out infinite 0.5s;
}

@keyframes gentlePulseGlow {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
    }

    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    }
}