/* ==============================================
   SPOTLIGHT ROTATOR STYLES
   ============================================== */

/* Spotlight Items - Hidden by default */
.spotlight-item {
    display: none;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.spotlight-item.active {
    display: flex;
    animation: fadeInSpotlight 0.8s ease-in-out forwards;
}

@keyframes fadeInSpotlight {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Progress Dots Container */
.spotlight-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 8px 0;
}

/* Progress Dots */
.progress-dot {
    position: relative;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.progress-dot:hover {
    background: rgba(0, 217, 255, 0.3);
    border-color: rgba(0, 217, 255, 0.6);
    transform: scale(1.2);
}

.progress-dot.active {
    background: linear-gradient(135deg, #00D9FF, #7C3AED);
    border-color: #00D9FF;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
    transform: scale(1.3);
}

/* Animated progress indicator for active dot */
.progress-dot.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 50%;
    animation: dotPulse 6s linear infinite;
}

@keyframes dotPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Spotlight content layout adjustments */
.spotlight-content {
    display: flex;
    gap: 48px;
    align-items: center;
}

/* Visual container */
.spotlight-visual {
    flex-shrink: 0;
}

.spotlight-logo-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 15, 25, 0.8);
    border: 2px solid rgba(0, 217, 255, 0.2);
    border-radius: 24px;
    padding: 32px;
}

.spotlight-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.4));
}

.spotlight-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.2) 0%, transparent 70%);
    pointer-events: none;
    animation: glowPulse 3s ease-in-out infinite;
}

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

/* Info section */
.spotlight-info {
    flex: 1;
}

.spotlight-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #00D9FF, #7C3AED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.spotlight-tagline {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.spotlight-stats-mini {
    display: flex;
    gap: 32px;
    margin-bottom: 24px;
}

.mini-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mini-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00D9FF;
}

.mini-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.spotlight-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.spotlight-cta {
    display: flex;
    gap: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
    .spotlight-content {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .spotlight-stats-mini {
        justify-content: center;
    }

    .spotlight-cta {
        justify-content: center;
    }

    .spotlight-info h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .spotlight-logo-wrapper {
        width: 150px;
        height: 150px;
        padding: 24px;
    }

    .spotlight-info h2 {
        font-size: 1.75rem;
    }

    .spotlight-tagline {
        font-size: 1rem;
    }

    .spotlight-stats-mini {
        flex-wrap: wrap;
        gap: 16px;
    }

    .mini-stat-value {
        font-size: 1.25rem;
    }

    .spotlight-cta {
        flex-direction: column;
    }

    .progress-dot {
        width: 10px;
        height: 10px;
    }
}
