/* Frontend Utility Classes - Zero Inline CSS Architecture */

/* Draft Mode Banner */
.draft-mode-banner {
    background: #ff9800;
    color: #000;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    z-index: 9999;
}

/* Spacing Utilities */
.mt-30 {
    margin-top: 30px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-0 {
    margin-top: 0;
}

/* Episode Badge */
.episode-badge {
    margin-top: auto;
    font-size: 10px;
    color: #8a2128;
    font-weight: bold;
}

/* Year Link Styling */
.year-link {
    font-weight: 400;
    color: #888;
    text-decoration: none;
}

/* Activation Result Colors */
.activation-title-success {
    color: #27ae60;
}

.activation-title-error {
    color: #e74c3c;
}

/* Spinner Animation */
.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}