/**
 * Base Styles - Global Reset, Typography, and Animations
 * Foundation styles used across all pages
 */

/* Global Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
}

/* Typography */
.title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.success-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.success-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.subsection-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

/* Common Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInFromTop {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 1000px;
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #27ae60;
    }
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Utility Classes */
.section-hidden {
    display: none;
}

.placeholder {
    text-align: center;
    color: #888;
    font-style: italic;
    padding: 40px 0;
}

.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading .submit-btn {
    background: #ccc;
}

.bio-value {
    max-width: 400px;
    display: inline-block;
    white-space: pre-line;
}
/**
 * Layout Styles - Structural Components
 * Containers, Topbar, Navigation, and Main Layout
 */

/* Container Styles */
.registration-container,
.success-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.6s ease-out;
}

.fan-upload-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    max-width: 1000px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.6s ease-out;
}

.fan-requests-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    max-width: 1000px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.6s ease-out;
}

/* Dashboard Top Bar */
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar-right {
    display: flex;
    align-items: center;
}

/* Dashboard Main Content */
.main-content {
    max-width: 900px;
    margin: 100px auto 0 auto;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
    padding: 40px 32px 32px 32px;
    min-height: 500px;
}

/* Profile Sections */
.profile-section,
.media-section,
.settings-section {
    margin-bottom: 32px;
}

.profile-info-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.profile-info-label {
    color: #666;
    font-weight: 500;
}

.profile-info-value {
    color: #222;
    font-weight: 600;
}

.settings-section .profile-info-row {
    border-bottom: none;
}

/* Share Section */
.share-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-top: 32px;
}

.share-btns {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.share-btn {
    background: #111;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 8px 18px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.link-text {
    font-family: monospace;
    background: #f5f5f5;
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0;
    word-break: break-all;
    border: 1px solid #ddd;
}

.credentials {
    margin-top: 20px;
    text-align: left;
}

.credential-row {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.credential-label {
    color: #333;
    width: 100px;
    display: inline-block;
}

.credential-value {
    color: #667eea;
    background: #fff;
    padding: 5px 10px;
    border-radius: 6px;
    border: 1px solid #e0e6ed;
    cursor: pointer;
}

.steps-list {
    text-align: left;
    margin: 20px 0;
}

.step-item {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.step-item:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* Referral Section Layout */
.referral-section {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.referral-link-container {
    margin-top: 15px;
}

.referral-link-box {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
}

#referral-link,
#profile-link {
    flex: 1;
    background: none;
    border: none;
    font-family: monospace;
    font-size: 0.9rem;
    color: #495057;
    margin-right: 10px;
    outline: none;
    cursor: pointer;
}

.copy-btn {
    background: #667eea;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.copy-btn:hover {
    background: #5a6fd8;
}

.copy-btn.copied {
    background: #28a745;
}

.referral-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #495057;
    margin: 0 0 8px 0;
}

.referral-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Earnings Grid Layout */
.earnings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.earnings-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #dee2e6;
}

.earnings-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #495057;
    margin: 0;
}

.earnings-icon {
    font-size: 1.5rem;
}

.earnings-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.stat-label {
    color: #6c757d;
    font-weight: 500;
    font-size: 0.9rem;
}

.stat-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: #495057;
}

/* Card Action Styles */
.card-action {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(108, 117, 125, 0.2);
}

/* Champion Info Section */
.champion-info-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.champion-name {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    text-align: center;
}

.champion-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.champion-detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.champion-detail-item:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.detail-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
}

.detail-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.highlight-price {
    font-size: 1.3rem;
    color: #667eea;
    font-weight: 700;
}

/* Upload Form Layout */
.upload-form-section {
    margin-top: 30px;
}

.upload-intro {
    text-align: center;
    margin-bottom: 30px;
}

.upload-intro h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.upload-intro p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.upload-form {
    max-width: 600px;
    margin: 0 auto;
}

/* Next Steps Section */
.next-steps {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
}

.next-steps h3 {
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step {
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-text {
    color: #666;
    line-height: 1.5;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
}

/* Video Info */
.video-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #667eea;
    font-weight: 500;
}

.video-icon {
    font-size: 1.2rem;
}

/* Page Headers */
.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.page-subtitle {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.steps-section-title {
    margin-bottom: 15px;
    color: #555;
}

.note-spaced {
    margin-top: 30px;
}
/**
 * Component Styles - Reusable UI Components
 * Buttons, Forms, Cards, Modals, and other components
 */

/* Form Styles */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #555;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-textarea,
.form-select {
    padding: 15px 20px;
    border: 2px solid #e0e6ed;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
    outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: scale(1.02);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-input.valid {
    border-color: #27ae60;
    animation: pulse 0.3s ease;
}

/* Form error styling */
.form-group input.error,
.form-group textarea.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.field-error {
    display: none;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    font-weight: 500;
}

.field-error:before {
    content: "⚠ ";
    margin-right: 5px;
}

/* Button Styles */
.submit-btn,
.dashboard-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 30px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.submit-btn:hover,
.dashboard-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.submit-btn:active,
.dashboard-btn:active {
    transform: translateY(0);
}

.dashboard-btn {
    padding: 18px 40px;
    width: auto;
}

.menu-btn {
    background: #fff;
    color: #111;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 16px;
    padding: 8px 22px;
    border: none;
    margin-right: 4px;
    transition: background 0.2s, color 0.2s;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
}

.menu-btn.selected,
.menu-btn:focus {
    background: #111;
    color: #fff;
}

.action-btn {
    background: #111;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 24px;
    padding: 10px 32px;
    border: none;
    margin-left: 8px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
}

.logo-btn {
    background: #111;
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
    border-radius: 16px;
    padding: 8px 22px;
    border: none;
    letter-spacing: 2px;
    margin-right: 4px;
    font-family: 'Inter', sans-serif;
}

.discrete-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(102, 126, 234, 0.1);
    color: #495057;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.discrete-btn:hover {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.15);
}

.discrete-btn:active {
    transform: translateY(0);
}

.discrete-btn-icon {
    font-size: 0.7rem;
    opacity: 0.8;
}

.discrete-btn-text {
    font-size: 0.75rem;
}

/* Card Styles */
.earnings-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.earnings-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.clickable-card {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.clickable-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.clickable-card:hover::before {
    left: 100%;
}

.summary-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    padding: 20px;
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.summary-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 150px;
}

.summary-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 5px;
}

.summary-value {
    font-size: 1.3rem;
    font-weight: 700;
}

.summary-value.highlight {
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* File Upload Styles */
.file-upload-container {
    position: relative;
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px dashed #e0e6ed;
    border-radius: 12px;
    background: #fafbfc;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 20px;
}

.file-upload-container:hover {
    border-color: #667eea;
    background: #f0f4ff;
    transform: scale(1.01);
}

.file-upload-container.has-file {
    border-color: #27ae60;
    background: #f1f8f1;
}

.file-upload-container.has-file:before {
    content: "✓";
    position: absolute;
    top: 10px;
    right: 15px;
    background: #27ae60;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.file-upload-container.drag-over {
    border-color: #667eea;
    background: #f0f4ff;
    transform: scale(1.02);
}

.file-info p {
    margin: 0 0 5px 0;
    color: #555;
}

.file-selected {
    color: #27ae60;
}

/* Media Components */
.media-gallery {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.media-thumb {
    border-radius: 10px;
    overflow: hidden;
    border: 1.5px solid #e0e6ed;
    width: 140px;
    height: 140px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-thumb img,
.media-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-btn:not(:disabled):hover {
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* Modal Styles */
.media-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.media-modal-content {
    position: relative;
    margin: 5% auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    background: white;
    border-radius: 15px;
    text-align: center;
}

.media-modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
}

.media-modal-close:hover {
    color: #333;
}

#media-modal-body img,
#media-modal-body video {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 10px;
}

/* Error and Message Styles */
.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    animation: shake 0.5s ease-in-out;
}

.general-error {
    background: #fee;
    border: 1px solid #fcc;
    color: #c33;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 0.9rem;
}

.dev-notice {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    color: #0c5460;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.clear-form-btn {
    background: none;
    border: 1px solid #0c5460;
    color: #0c5460;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    float: right;
}

/* Progress Components */
.upload-progress {
    margin-top: 15px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 0%;
    transition: width 0.3s ease;
}

.progress-text {
    color: #667eea;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Status Components */
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-active {
    background: #d4edda;
    color: #155724;
}

.status-inactive {
    background: #f8d7da;
    color: #721c24;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-suspended {
    background: #f5c6cb;
    color: #721c24;
}

.status-responded {
    background: rgba(39, 174, 96, 0.15);
    color: #27ae60;
}

/* Form Section Progress */
.form-section {
    margin-bottom: 40px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
}

.form-section h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.3rem;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

.form-section.completed {
    border-left: 4px solid #27ae60;
}

.form-section.completed h3 {
    color: #27ae60;
}

/* Animation for upload form section */
.upload-form-section.animate-in {
    animation: slideUp 0.6s ease-out;
}

/* Debug Components */
.debug-form {
    width: 100%;
}

.debug-description {
    background: rgba(41, 182, 246, 0.1);
    color: #0277bd;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    border: 1px solid #29b6f6;
}

.debug-switch-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.debug-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.debug-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.debug-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.debug-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .debug-slider {
    background-color: #29b6f6;
}

input:focus + .debug-slider {
    box-shadow: 0 0 1px #29b6f6;
}

input:checked + .debug-slider:before {
    transform: translateX(26px);
}

.debug-label {
    color: #0277bd;
    font-weight: 600;
    font-size: 0.9rem;
}

.debug-status {
    text-align: center;
    font-size: 0.8rem;
    color: #0277bd;
    min-height: 20px;
}

.debug-status.active {
    color: #2e7d32;
    font-weight: 600;
}

.debug-status.inactive {
    color: #d32f2f;
}
/**
 * Page-Specific Styles
 * Styles for specific page types and functionality
 */

/* Registration Page Specific */
body.registration-page {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.registration-container {
    transform: translateY(0);
    transition: all 0.3s ease;
}

.registration-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Success Page Specific */
body.success-page {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.success-container {
    padding: 50px 40px;
    text-align: center;
}

/* Dashboard Page Specific */
body.dashboard-page {
    color: #222;
}

/* Fan Upload Page Styles */
body.fan-upload-page {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    min-height: 100vh;
}

/* Fan Requests Page Styles */
body.fan-requests-page {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    min-height: 100vh;
}

/* Request Cards */
.requests-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.request-card {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.request-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #e0e0e0;
}

.request-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.request-header:hover {
    background: rgba(102, 126, 234, 0.05);
}

.request-info h3 {
    color: #333;
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.fan-email {
    color: #666;
    font-size: 0.9rem;
}

.request-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: right;
}

.request-date {
    color: #888;
    font-size: 0.9rem;
}

.request-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.expand-icon {
    color: #667eea;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.request-card.expanded .expand-icon {
    transform: rotate(180deg);
}

.request-content {
    padding: 0 25px 25px;
    border-top: 1px solid #e0e0e0;
    animation: slideDown 0.3s ease-out;
}

.fan-request-section,
.champion-response-section,
.response-upload-section {
    margin-bottom: 25px;
}

.fan-request-section h4,
.champion-response-section h4,
.response-upload-section h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.request-question {
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 4px solid #667eea;
}

.request-question p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.request-video h5,
.response-video h5 {
    color: #555;
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 500;
}

.video-player video,
.response-video video {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.champion-response-section {
    background: rgba(39, 174, 96, 0.05);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #27ae60;
}

.response-date {
    color: #27ae60;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.response-upload-section {
    background: rgba(102, 126, 234, 0.05);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.response-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.response-form textarea {
    min-height: 80px;
    padding: 12px;
    border: 2px solid #e0e6ed;
    border-radius: 8px;
    font-family: inherit;
    resize: vertical;
}

.response-form textarea:focus {
    border-color: #667eea;
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.response-upload-area {
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.response-upload-area:hover {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}

.response-upload-area.has-file {
    border-color: #27ae60;
    background: rgba(39, 174, 96, 0.05);
}

.response-submit-btn {
    padding: 12px 24px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.response-submit-btn:hover {
    background: #5a6fd8;
    transform: translateY(-2px);
}

.response-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* No Requests State */
.no-requests {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.no-requests h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.no-requests p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Request Details and Preview */
.request-details,
.request-preview {
    padding: 20px;
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: left;
}

.request-details h3,
.request-preview h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 500;
    color: #666;
}

.detail-value {
    font-weight: 600;
    color: #333;
}

.request-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Media Carousel */
.media-carousel {
    position: relative;
    max-width: 600px;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 15px;
    background: #f8f9fa;
}

.carousel-container {
    display: flex;
    transition: transform 0.3s ease;
}

.carousel-item {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 20px;
}

.carousel-item img,
.carousel-item video {
    max-width: 100%;
    max-height: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.carousel-item:hover img,
.carousel-item:hover video {
    transform: scale(1.02);
}

.media-title {
    margin-top: 10px;
    font-weight: 500;
    color: #333;
}

/* Missing CSS Classes - Added during audit */

/* Page body classes */
.admin-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.dashboard-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.registration-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.fan-requests-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.success-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

/* Button classes */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: #f8f9fa;
    color: #495057;
    border: 1px solid #dee2e6;
}

.btn-secondary:hover {
    background: #e9ecef;
    transform: translateY(-1px);
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

/* Credential components */
.credential-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.credential-item:last-child {
    border-bottom: none;
}

.credentials-box {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.credentials-title {
    color: #495057;
    font-size: 18px;
    margin-bottom: 15px;
}

/* Carousel components */
.carousel-track {
    display: flex;
    transition: transform 0.3s ease;
}

/* Champion specific */
.champion-bio {
    color: #666;
    line-height: 1.6;
    margin: 15px 0;
}

.champion-response {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
}

.champion-sport {
    color: #667eea;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* Fan components */
.fan-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.fan-name {
    font-weight: 600;
    color: #333;
}

/* File upload components */
.file-upload-icon {
    margin-right: 8px;
    font-size: 18px;
}

.file-upload-input {
    display: none;
}

.file-upload-label {
    display: inline-block;
    padding: 12px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-label:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Form extensions */
.full-width {
    grid-column: 1 / -1;
}

.highlight {
    background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

/* Media components */
.media-carousel-section {
    margin: 20px 0;
}

.media-section-group {
    margin-bottom: 30px;
}

.media-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

/* Navigation states */
.selected {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
}

/* Request components */
.no-requests-icon {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.pending-response {
    color: #f39c12;
    font-weight: 600;
}

.referral-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.referral-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.request-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.request-id {
    font-family: 'Courier New', monospace;
    color: #666;
    font-size: 12px;
}

.submit-response-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.submit-response-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

/* Success components */
.success-icon {
    font-size: 64px;
    margin-bottom: 20px;
    text-align: center;
}

/* Checkmark animation */
.checkmark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #28a745;
    stroke-miterlimit: 10;
    margin: 10px auto;
    box-shadow: inset 0px 0px 0px #28a745;
    animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #28a745;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-kick {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

.checkmark-stem {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #28a745;
    }
}

/**
 * Admin Dashboard Styles
 * Specific styles for admin dashboard functionality
 */

/* Admin Body */
body.admin-page {
    color: #222;
}

/* Admin Table Styles */
.admin-table-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin-top: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.admin-table th,
.admin-table td {
    padding: 15px 12px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.admin-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #495057;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-table tr:hover {
    background: rgba(102, 126, 234, 0.05);
}

.admin-table td {
    color: #666;
}

/* Admin Action Buttons */
.admin-action-btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 8px;
}

.view-btn {
    background: #667eea;
    color: white;
}

.view-btn:hover {
    background: #5a6fd8;
    transform: translateY(-2px);
}

.edit-btn {
    background: #28a745;
    color: white;
}

.edit-btn:hover {
    background: #218838;
    transform: translateY(-2px);
}

.delete-btn {
    background: #dc3545;
    color: white;
}

.delete-btn:hover {
    background: #c82333;
    transform: translateY(-2px);
}

/* Database Wipe Styles (Development) */
.danger-card {
    background: linear-gradient(135deg, #fee5e5 0%, #fecaca 100%);
    border: 2px solid #f87171;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.danger-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(248, 113, 113, 0.3), transparent);
    transition: left 0.5s;
}

.danger-card:hover::before {
    left: 100%;
}

.danger-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f87171;
}

.danger-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #991b1b;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.danger-icon {
    font-size: 1.5rem;
    color: #ef4444;
}

.danger-description {
    color: #7f1d1d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 500;
}

.danger-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Wipe Form Styles */
.wipe-form {
    width: 100%;
}

.danger-warning {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    border: 1px solid #f87171;
}

.wipe-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #f87171;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: white;
    margin-bottom: 15px;
}

.wipe-input:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.wipe-input.valid {
    border-color: #dc2626;
    background: rgba(220, 38, 38, 0.05);
}

.wipe-btn {
    width: 100%;
    padding: 12px 20px;
    background: #9ca3af;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: not-allowed;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.wipe-btn:enabled {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    cursor: pointer;
    animation: dangerPulse 2s infinite;
}

.wipe-btn:enabled:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
    animation: none;
}

.wipe-btn:active {
    transform: translateY(0);
}

.wipe-btn.processing {
    background: #f59e0b;
    cursor: not-allowed;
    animation: spin 1s linear infinite;
}

.wipe-status {
    min-height: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.wipe-status.success {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.wipe-status.error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid #fecaca;
}

/* Animation for dangerous actions */
@keyframes dangerPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

.wipe-confirmation {
    background: rgba(248, 113, 113, 0.1);
    border: 1px solid #f87171;
    border-radius: 6px;
    padding: 10px;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #7f1d1d;
    display: none;
}

.wipe-confirmation.show {
    display: block;
    animation: slideDown 0.3s ease-out;
}

.wipe-warning {
    font-weight: 600;
    color: #991b1b;
    text-align: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

/* Debug Card Styles */
.debug-card {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 2px solid #29b6f6;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.debug-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(41, 182, 246, 0.3), transparent);
    transition: left 0.5s;
}

.debug-card:hover::before {
    left: 100%;
}

.debug-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #29b6f6;
}

.debug-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0277bd;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.debug-icon {
    font-size: 1.5rem;
    color: #29b6f6;
}

/* Debug Status Notifications */
.debug-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: linear-gradient(135deg, #29b6f6 0%, #0288d1 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 1002;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(41, 182, 246, 0.3);
}

.debug-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.debug-notification::before {
    content: "🔧 ";
}

/* Admin Stats Cards */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.admin-stat-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.admin-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.admin-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 8px;
}

.admin-stat-label {
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.admin-stat-change {
    font-size: 0.8rem;
    margin-top: 5px;
}

.admin-stat-change.positive {
    color: #28a745;
}

.admin-stat-change.negative {
    color: #dc3545;
}

.admin-stat-change.neutral {
    color: #6c757d;
}

/* Admin Dashboard Sections */
.admin-section {
    margin-bottom: 40px;
}

.admin-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.admin-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #495057;
    margin: 0;
}

.admin-section-actions {
    display: flex;
    gap: 10px;
}

.admin-filter-btn {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #495057;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-filter-btn:hover,
.admin-filter-btn.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

/* Quick Actions Panel */
.quick-actions {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border: 2px solid #ffb74d;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.quick-actions-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.quick-actions-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e65100;
    margin: 0;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.quick-action-btn {
    background: white;
    border: 1px solid #ffb74d;
    color: #e65100;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 0.9rem;
}

.quick-action-btn:hover {
    background: #ffb74d;
    color: white;
    transform: translateY(-2px);
}

/* Admin Dashboard Empty States */
.admin-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.admin-empty-state-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.admin-empty-state-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 10px;
}

.admin-empty-state-description {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

/* System Status Indicators */
.system-status {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-indicator.online {
    background: #28a745;
}

.status-indicator.warning {
    background: #ffc107;
}

.status-indicator.offline {
    background: #dc3545;
}

.status-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #495057;
}
/**
 * Responsive Styles - Media Queries
 * Mobile and responsive design styles
 */

/* Tablet and Small Desktop */
@media (max-width: 1024px) {
    .topbar {
        padding: 20px 30px;
    }
    
    .main-content {
        margin-top: 90px;
        padding: 30px 25px;
    }
    
    .earnings-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .champion-details-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    /* Base Layout */
    .registration-container,
    .success-container {
        padding: 30px 20px;
        margin: 10px;
    }

    .fan-upload-container,
    .fan-requests-container {
        padding: 30px 20px;
        margin: 10px;
    }

    /* Form Layout */
    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Typography */
    .title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .success-title {
        font-size: 2rem;
    }

    .success-message {
        font-size: 1.1rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .champion-name {
        font-size: 2rem;
    }

    /* Navigation */
    .topbar {
        flex-direction: column;
        gap: 12px;
        padding: 18px 8px;
        position: relative;
    }

    .topbar-left {
        gap: 8px;
    }

    .menu-btn {
        padding: 6px 16px;
        font-size: 0.9rem;
    }

    .main-content {
        padding: 18px 6px;
        margin-top: 20px;
    }

    /* Cards and Grids */
    .earnings-grid {
        grid-template-columns: 1fr;
    }

    .champion-details-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .summary-card {
        flex-direction: column;
        text-align: center;
    }

    .summary-item {
        min-width: auto;
        width: 100%;
    }

    /* Referral Section */
    .referral-link-box {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    #referral-link,
    #profile-link {
        margin-right: 0;
        text-align: center;
    }

    /* Media Components */
    .media-gallery {
        justify-content: center;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    .carousel-item {
        min-width: 200px;
    }

    /* Request Cards */
    .request-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .request-meta {
        align-self: flex-end;
        text-align: right;
    }
    
    .request-content {
        padding: 0 15px 20px;
    }
    
    .video-player video,
    .response-video video {
        max-width: 100%;
    }

    /* Admin Tables */
    .admin-table-container {
        padding: 20px;
    }
    
    .admin-table {
        font-size: 12px;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 10px 8px;
    }
    
    .admin-action-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    /* Stack table cells vertically on mobile */
    .admin-table thead {
        display: none;
    }
    
    .admin-table,
    .admin-table tbody,
    .admin-table tr,
    .admin-table td {
        display: block;
        width: 100%;
    }
    
    .admin-table tr {
        border: 1px solid #e9ecef;
        border-radius: 10px;
        margin-bottom: 15px;
        padding: 15px;
        background: white;
    }
    
    .admin-table td {
        border: none;
        border-bottom: 1px solid #f8f9fa;
        position: relative;
        padding-left: 50% !important;
        text-align: right;
    }
    
    .admin-table td:before {
        content: attr(data-label);
        position: absolute;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        font-weight: 600;
        color: #495057;
    }
    
    .admin-table td:last-child {
        border-bottom: none;
    }

    /* Admin Stats */
    .admin-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .quick-actions-grid {
        grid-template-columns: 1fr;
    }
}

/* Large Mobile */
@media (max-width: 600px) {
    /* File Upload */
    .file-upload-container {
        flex-direction: column;
        text-align: center;
    }

    /* Form Sections */
    .form-section {
        padding: 20px 15px;
    }

    /* Upload Form */
    .upload-form {
        padding: 0 10px;
    }

    .upload-intro h2 {
        font-size: 1.5rem;
    }

    /* Champion Details */
    .champion-detail-item {
        padding: 12px;
    }

    /* Media Modal */
    .media-modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 15px;
    }

    /* Share Buttons */
    .share-btns {
        flex-direction: column;
        gap: 8px;
    }

    .share-btn {
        width: 100%;
        text-align: center;
    }

    /* Action Buttons */
    .action-buttons {
        flex-direction: column;
        gap: 10px;
    }

    /* Request Forms */
    .response-form {
        gap: 12px;
    }

    .response-upload-area {
        padding: 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    /* Base Containers */
    .registration-container,
    .success-container,
    .fan-upload-container,
    .fan-requests-container {
        padding: 20px 15px;
        margin: 5px;
    }

    /* Typography */
    .title,
    .success-title,
    .page-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .champion-name {
        font-size: 1.8rem;
    }

    /* Navigation */
    .topbar {
        padding: 12px 10px;
    }

    .menu-btn {
        padding: 5px 12px;
        font-size:  0.85rem;
        margin-right: 2px;
    }

    .logo-btn {
        padding: 6px 16px;
        font-size: 1.1rem;
    }

    /* Main Content */
    .main-content {
        padding: 15px 10px;
        margin-top: 15px;
    }

    /* Cards */
    .earnings-card {
        padding: 15px;
    }
    
    .summary-card {
        padding: 15px;
    }

    .referral-section {
        padding: 15px;
        margin-bottom: 15px;
    }

    /* Form Elements */
    .form-input,
    .form-textarea,
    .form-select {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .form-label {
        font-size: 0.85rem;
    }

    .submit-btn,
    .dashboard-btn {
        padding: 15px;
        font-size: 1rem;
    }

    /* Request Cards */
    .request-card {
        margin-bottom: 15px;
    }

    .request-header {
        padding: 15px 20px;
    }

    .request-content {
        padding: 0 20px 20px;
    }

    /* Admin Overview */
    .earnings-grid {
        grid-template-columns: 1fr;
    }
    
    .topbar {
        padding: 10px 15px;
    }
    
    .menu-btn {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .main-content {
        padding: 15px;
    }
    
    .section-title {
        font-size: 24px;
    }

    /* Admin Cards */
    .danger-card,
    .debug-card {
        padding: 15px;
    }

    .danger-title,
    .debug-title {
        font-size: 1.1rem;
    }

    .wipe-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    /* Admin Stats */
    .admin-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .admin-stat-card {
        padding: 15px;
    }

    .admin-stat-value {
        font-size: 1.5rem;
    }

    /* Debug Components */
    .debug-switch {
        width: 50px;
        height: 28px;
    }

    .debug-slider:before {
        height: 22px;
        width: 22px;
        left: 3px;
        bottom: 3px;
    }

    input:checked + .debug-slider:before {
        transform: translateX(22px);
    }

    /* Media Components */
    .media-thumb {
        width: 100px;
        height: 100px;
    }

    .carousel-item img,
    .carousel-item video {
        max-height: 300px;
    }

    /* Modal */
    .media-modal-content {
        margin: 15% auto;
        padding: 10px;
    }

    .media-modal-close {
        top: 5px;
        right: 15px;
        font-size: 1.5rem;
    }

    /* Upload Progress */
    .progress-bar {
        height: 6px;
    }

    /* File Upload */
    .file-upload-container {
        padding: 12px;
    }

    .file-icon {
        font-size: 2rem;
    }

    .upload-icon {
        font-size: 1.5rem;
    }

    /* Status Badges */
    .status-badge {
        font-size: 10px;
        padding: 3px 8px;
    }

    /* Debug Notifications */
    .debug-notification {
        right: 10px;
        top: 80px;
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    /* Quick Actions */
    .quick-action-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    /* System Status */
    .system-status {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 12px 15px;
    }

    .status-item {
        justify-content: center;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .registration-container,
    .success-container,
    .fan-upload-container,
    .fan-requests-container {
        padding: 15px 10px;
    }

    .title,
    .success-title,
    .page-title {
        font-size: 1.6rem;
    }

    .champion-name {
        font-size: 1.6rem;
    }

    .topbar {
        padding: 10px 8px;
    }

    .menu-btn {
        padding: 4px 8px;
        font-size: 0.8rem;
    }

    .main-content {
        padding: 10px 8px;
    }

    .form-input,
    .form-textarea,
    .form-select {
        padding: 10px 12px;
    }

    .submit-btn,
    .dashboard-btn {
        padding: 12px;
        font-size: 0.95rem;
    }

    .media-thumb {
        width: 100px;
        height: 100px;
    }

    .request-header,
    .request-content {
        padding: 12px 15px;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .topbar {
        padding: 12px 20px;
    }

    .main-content {
        margin-top: 70px;
    }

    .registration-container,
    .success-container {
        max-width: 500px;
    }

    .fan-upload-container,
    .fan-requests-container {
        max-width: 700px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .media-thumb img,
    .media-thumb video,
    .carousel-item img,
    .carousel-item video {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles */
@media print {
    .topbar,
    .debug-notification,
    .dev-mode-indicator,
    .wipe-btn,
    .danger-card,
    .debug-card {
        display: none !important;
    }

    .main-content {
        margin-top: 0;
        box-shadow: none;
        background: white;
    }

    .admin-table {
        page-break-inside: avoid;
    }

    .admin-table th,
    .admin-table td {
        border: 1px solid #000;
    }
}
