/**
 * Fan Upload System - Cleaned CSS Styles
 * Contains only the 80 CSS classes used in fan_upload.php and fan_upload_success.php
 * Based on css_classes_analysis.txt
 */

/* 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;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

/* Refresh button styles */
.refresh-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0.7;
    margin-left: 15px;
}

.refresh-btn:hover {
    opacity: 1;
    background: rgba(102, 126, 234, 0.1);
    transform: rotate(180deg);
}

.refresh-btn:active {
    transform: rotate(180deg) scale(0.95);
}

.refresh-btn.refreshing {
    animation: spin 1s linear infinite;
    opacity: 0.5;
    pointer-events: none;
}

/* Refresh success indicator */
.refresh-success-indicator {
    display: inline-flex;
    align-items: center;
    background: #27ae60;
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 12px;
    margin-left: 8px;
    opacity: 0;
    transform: translateX(-10px) scale(0.8);
    transition: all 0.3s ease-out;
    white-space: nowrap;
}

.refresh-success-indicator.show {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.refresh-success-indicator.hide {
    opacity: 0;
    transform: translateX(10px) scale(0.8);
}

/* Last refresh timestamp */
.last-refresh {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
    font-style: italic;
    opacity: 0;
    animation: fadeIn 0.3s ease-out 0.2s forwards;
}

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

/* 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;
}

/* Loading overlay for sections */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100;
    backdrop-filter: blur(2px);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f0f0f0;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

.loading-text {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Data refresh animation */
.data-refreshed {
    animation: dataRefreshPulse 0.5s ease-out;
}

@keyframes dataRefreshPulse {
    0% {
        background-color: rgba(102, 126, 234, 0.1);
    }
    100% {
        background-color: transparent;
    }
}

/* Error message for sections */
.error-message {
    background: #ff6b6b;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    display: none;
    animation: slideDown 0.3s ease-out;
}

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

.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 {
    position: relative;
    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: flex-start;
    text-align: left;
    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 Navigation Buttons - Enhanced */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(103, 126, 234, 0.2);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    color: #667eea;
    cursor: pointer;
    z-index: 15;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(103, 126, 234, 0.1);
    border-color: #667eea;
    box-shadow: 0 6px 20px rgba(103, 126, 234, 0.3);
    transform: translateY(-50%) scale(1.05);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: rgba(200, 200, 200, 0.8);
    color: #999;
    border-color: rgba(200, 200, 200, 0.5);
}

.carousel-btn:disabled:hover {
    transform: translateY(-50%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* Enhanced visibility on mobile */
@media (max-width: 768px) {
    .carousel-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    }
    
    .carousel-prev {
        left: 8px;
    }
    
    .carousel-next {
        right: 8px;
    }
}

/* 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;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.media-modal-content {
    position: relative;
    margin: 5% auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.media-modal-close {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1001;
}

.media-modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

/* Animation for modal open */
.media-modal.modal-open {
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(8px);
    }
}

.media-modal.modal-open .media-modal-content {
    animation: modalSlideIn 0.3s ease-out;
}

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

#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;
}

/* Champion Paused Message Styles */
.champion-paused-message {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(255, 193, 7, 0.3);
    margin: 30px 0;
}

.pause-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
    opacity: 0.9;
    width: 25%;
    max-width: 120px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.champion-paused-message h3 {
    color: #856404;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.champion-paused-message p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.champion-paused-message p:last-child {
    margin-bottom: 0;
}

/**
 * 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 - See comprehensive styles at end of file */

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

/* Fan Requests Page - Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Fan requests specific classes - refined for sharp mobile look */
    .fan-requests-card {
        margin: 0 10px 15px 10px;
        padding: 20px 16px;
    }
    
    .fan-header {
        padding: 16px;
    }
    
    .fan-details {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .no-requests-section {
        padding: 20px 16px;
    }
    
    .requests-section {
        padding: 0 12px 16px 12px;
    }
    
    .requests-list {
        gap: 12px;
    }
    
    .request-card {
        margin: 0;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    .request-header {
        padding: 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .request-info {
        width: 100%;
    }
    
    .request-meta {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 6px;
        font-size: 0.8rem;
    }
    
    .request-champion-name {
        font-size: 1rem;
        font-weight: 600;
    }
    
    .request-champion-sport {
        font-size: 0.75rem;
        color: #667eea;
        font-weight: 500;
    }
    
    .request-content {
        padding: 0 12px 12px;
    }
    
    .request-question {
        padding: 8px;
        margin-bottom: 8px;
        border-radius: 6px;
        border-left-width: 2px;
    }
    
    .request-question h5 {
        font-size: 0.75rem;
        margin-bottom: 4px;
    }
    
    .request-text {
        font-size: 0.8rem;
        line-height: 1.35;
    }
    
    .request-videos-section {
        padding: 8px;
        margin-bottom: 8px;
        border-radius: 6px;
        border-left-width: 2px;
    }
    
    .request-videos-section h5 {
        font-size: 0.75rem;
        margin-bottom: 6px;
    }
    
    .response-info {
        padding: 8px;
        margin-bottom: 8px;
        border-radius: 6px;
        border-left-width: 2px;
    }
    
    .response-date {
        font-size: 0.75rem;
    }
    
    .pending-response {
        padding: 8px;
        border-radius: 6px;
        border-left-width: 2px;
    }
    
    .pending-response h5 {
        font-size: 0.75rem;
        margin-bottom: 4px;
    }
    
    .pending-response p {
        font-size: 0.75rem;
    }
}

/* Default styles for fan details mobile stack wrapper */
.fan-details-mobile-stack {
    display: contents; /* On larger screens, behaves as if wrapper doesn't exist */
}

@media (max-width: 480px) {
    .fan-requests-card {
        margin: 0 10px 15px 10px;
        padding: 20px 16px;
    }
    
    .fan-header {
        padding: 12px;
    }
    
    .fan-details {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }
    
    .fan-details-mobile-stack {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
    
    .detail-item {
        padding: 8px 6px;
    }
    
    .detail-label {
        font-size: 0.65rem;
    }
    
    .detail-value {
        font-size: 0.8rem;
    }
    
    .request-header {
        padding: 12px;
        gap: 8px;
    }
    
    .request-content {
        padding: 0 12px 12px;
    }
    
    .request-champion-name {
        font-size: 0.95rem;
    }
    
    .request-champion-sport {
        font-size: 0.7rem;
    }
    
    .request-meta {
        font-size: 0.75rem;
        gap: 4px;
    }
    
    .request-id {
        font-size: 0.7rem;
    }
    
    .request-date {
        font-size: 0.7rem;
    }
    
    .request-status {
        padding: 3px 6px;
        font-size: 0.65rem;
        border-radius: 6px;
    }
    
    .expand-icon {
        font-size: 1rem;
    }
    
    .request-question {
        padding: 6px;
        margin-bottom: 6px;
    }
    
    .request-question h5 {
        font-size: 0.7rem;
        margin-bottom: 3px;
    }
    
    .request-text {
        font-size: 0.75rem;
    }
    
    .request-videos-section {
        padding: 6px;
        margin-bottom: 6px;
    }
    
    .request-videos-section h5 {
        font-size: 0.7rem;
        margin-bottom: 4px;
    }
    
    .response-info {
        padding: 6px;
        margin-bottom: 6px;
    }
    
    .response-date {
        font-size: 0.7rem;
    }
    
    .pending-response {
        padding: 6px;
    }
    
    .pending-response h5 {
        font-size: 0.7rem;
        margin-bottom: 3px;
    }
    
    .pending-response p {
        font-size: 0.7rem;
    }
}

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

.request-card {
    background: #e9ecef;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #dee2e6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Enhanced styling for pending requests */
.request-card.request-pending {
    transform: rotate(-2deg);
    background: #d6dbdf;
    border-color: #adb5bd;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.request-card:hover {
    background: #dee2e6;
    transform: translateY(-2px) rotate(0deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #adb5bd;
}

/* Enhanced hover effect for pending requests */
.request-card.request-pending:hover {
    background: #c8d0d6;
    border-color: #98a2aa;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

/* Remove tilt when expanded */
.request-card.expanded {
    transform: rotate(0deg);
}

.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 20px 16px;
    border-top: 1px solid rgba(102, 126, 234, 0.1);
    animation: slideDown 0.3s ease-out;
}

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

.fan-request-section h4,
.champion-response-section h4,
.response-upload-section h4 {
    color: #374151;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.request-question {
    background: rgba(102, 126, 234, 0.02);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 12px;
    border-left: 2px solid rgba(102, 126, 234, 0.3);
}

.request-question h5 {
    color: #374151;
    font-size: 0.8rem;
    font-weight: 500;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.request-question p,
.request-text {
    color: #6b7280;
    line-height: 1.4;
    margin: 0;
    font-size: 0.85rem;
    font-weight: 400;
}

/* Request Videos Section */
.request-videos-section {
    background: rgba(102, 126, 234, 0.02);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 12px;
    border-left: 2px solid rgba(102, 126, 234, 0.3);
}

.request-videos-section h5 {
    color: #374151;
    margin-bottom: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.response-info {
    background: rgba(5, 150, 105, 0.02);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 12px;
    border-left: 2px solid rgba(5, 150, 105, 0.3);
}

.pending-response {
    background: rgba(251, 191, 36, 0.02);
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    border-left: 2px solid rgba(251, 191, 36, 0.3);
}

.pending-response h5 {
    color: #374151;
    font-size: 0.8rem;
    font-weight: 500;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.pending-response p {
    color: #6b7280;
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
    font-weight: 400;
}

.response-date {
    color: #059669;
    font-size: 0.8rem;
    font-weight: 400;
    margin: 0;
}

.response-date strong {
    font-weight: 500;
}

.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 - Modern TikTok-style */
.media-carousel {
    position: relative;
    width: 100%;
    margin: 20px 0;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    padding: 0 50px; /* Space for navigation buttons */
}

.carousel-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer/Edge */
}

.carousel-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.carousel-item {
    flex: 0 0 auto;
    width: 160px;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.carousel-item img,
.carousel-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.carousel-item video {
    pointer-events: none; /* Prevent video controls in carousel */
}

/* Media overlay for videos */
.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px;
    pointer-events: none;
}

/* Play button for videos */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.play-button:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Media category tag */
.media-category {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
    backdrop-filter: blur(4px);
}

.media-title {
    color: white;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    max-height: 32px;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}

/* 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;
}

/**
 * Success Page Styles
 * Specific styles for fan_upload_success.php following the same design patterns as fan_upload.php
 */

/* Success Page Body */
body.success-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: block;
    font-family: 'Inter', sans-serif;
}

.success-page-container {
    max-width: 100%;
    width: 100%;
    min-height: 100vh;
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* Success Hero Section - matches fan_upload hero */
.success-page .hero-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    margin: 20px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Success Content Wrapper - matches fan_upload main content wrapper */
.success-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 20px;
}

/* Success Card Styles - matches champion card and upload section styles */
.success-message-card,
.request-preview-card,
.next-steps-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 24px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Success Message Card Specific Styles */
.success-message-card {
    text-align: center;
}

.success-message-card .success-icon {
    margin-bottom: 20px;
}

.success-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.success-card-message {
    margin-bottom: 24px;
}

.success-card-message p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0 0 8px 0;
}

.success-card-message p:last-child {
    margin-bottom: 0;
}

/* Card Title - common style for all cards */
.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin: 0 0 16px 0;
    text-align: center;
}

/* Request Preview Card Styles */
.request-preview-card .request-text {
    background: rgba(102, 126, 234, 0.05);
    padding: 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #374151;
    margin-bottom: 16px;
    border-left: 4px solid #667eea;
}

.request-preview-card .video-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(5, 150, 105, 0.05);
    border-radius: 12px;
    color: #059669;
    font-weight: 500;
    font-size: 0.85rem;
}

.request-preview-card .video-icon {
    font-size: 1.1rem;
}

/* Next Steps Card Styles - reusing existing step styles with container adjustments */
.next-steps-card .steps-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.next-steps-card .step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
}

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

.next-steps-card .step-text {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.4;
}

/* Action Buttons - matching existing button styles */
.success-message-card .action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.success-message-card .btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 16px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    text-align: center;
    display: inline-block;
}

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

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

.success-message-card .btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #374151;
    border: 2px solid #e5e7eb;
}

.success-message-card .btn-secondary:hover {
    background: white;
    border-color: #d1d5db;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Desktop Responsive */
@media (min-width: 768px) {
    .success-page-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 20px;
    }

    .success-page .hero-section {
        margin: 0 0 24px 0;
    }

    .success-content-wrapper {
        margin: 0;
    }

    .success-message-card .action-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 16px;
    }

    .success-message-card .btn {
        width: auto;
        min-width: 180px;
    }

    .success-card-title {
        font-size: 1.75rem;
    }

    .card-title {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .success-page-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 40px;
    }

    .success-content-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 30px;
        align-items: start;
    }

    .success-message-card {
        grid-column: 1 / -1;
    }

    .request-preview-card {
        grid-column: 1;
    }

    .next-steps-card {
        grid-column: 2;
    }

    .success-page .hero-section {
        margin: 0 0 30px 0;
        padding: 32px;
    }

    .success-message-card,
    .request-preview-card,
    .next-steps-card {
        padding: 32px;
    }
}

/* Small mobile optimizations */
@media (max-width: 480px) {
    .success-page-container {
        padding: 15px 0;
    }

    .success-page .hero-section {
        margin: 0 10px 15px 10px;
        padding: 20px 16px;
    }

    .success-content-wrapper {
        margin: 0 10px 15px 10px;
        gap: 15px;
    }

    .success-message-card,
    .request-preview-card,
    .next-steps-card {
        padding: 20px 16px;
    }

    .success-card-title {
        font-size: 1.3rem;
    }

    .card-title {
        font-size: 1rem;
    }

    .success-card-message p {
        font-size: 0.85rem;
    }

    .next-steps-card .step-text {
        font-size: 0.85rem;
    }

    .success-message-card .btn {
        padding: 14px;
        font-size: 0.9rem;
    }
}

/* Animation for smooth transitions */
.success-message-card,
.request-preview-card,
.next-steps-card {
    animation: slideUp 0.3s ease-out;
}

.success-message-card {
    animation-delay: 0.1s;
}

.request-preview-card {
    animation-delay: 0.2s;
}

.next-steps-card {
    animation-delay: 0.3s;
}

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

/* Accessibility improvements */
.success-message-card .btn:focus,
.request-preview-card:focus-within,
.next-steps-card:focus-within {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Enhanced checkmark animation - reusing existing styles with success page context */
.success-message-card .checkmark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #28a745;
    stroke-miterlimit: 10;
    margin: 0 auto 20px auto;
    box-shadow: inset 0px 0px 0px #28a745;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.success-message-card .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;
}

.success-message-card .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;
}

.success-message-card .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;
}

/**
 * Fan Upload Page Styles - Mobile-First Design
 * Specific styles for fan_upload.php page following modern UX patterns
 */

/* Fan Upload Page Body and Container */
body.fan-upload-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: block;
    font-family: 'Inter', sans-serif;
}

.fan-upload-container {
    max-width: 100%;
    width: 100%;
    min-height: 100vh;
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* Hero Section */
.hero-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    margin: 20px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Main Content Wrapper for Side-by-Side Layout */
.main-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 20px;
}

.hero-subtitle {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
}

/* Champion Card */
.champion-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.champion-header {
    padding: 24px 20px 20px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

/* Champion Details Grid */
.champion-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 16px 0;
    padding: 0 4px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 12px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 12px;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
}

.detail-item:hover {
    background: rgba(102, 126, 234, 0.08);
    border-left-color: #667eea;
    transform: translateX(2px);
}

.detail-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 4px;
}

.detail-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.2;
}

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

.bio-title {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin: 0 0 8px 0;
}

.bio-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #6b7280;
    margin: 0;
}

/* Media Carousel */
.champion-media {
    padding: 0 20px 24px 20px;
}

/* Upload Form Section */
.upload-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 24px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.upload-header {
    text-align: center;
    margin-bottom: 24px;
}

.upload-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.upload-description {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.4;
    margin: 0;
}

/* Champion Paused State */
.champion-paused {
    text-align: center;
    padding: 32px 20px;
}

.pause-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ef4444;
    margin: 0 0 12px 0;
}

.pause-message {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.4;
    margin: 0 0 8px 0;
}

/* Form Styles */
.upload-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.char-counter {
    font-weight: 400;
    color: #6b7280;
    font-size: 0.8rem;
}

.field-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
}

.char-count {
    font-size: 0.8rem;
    color: #6b7280;
    transition: color 0.2s ease;
}

.char-count.valid {
    color: #059669;
}

.char-count.invalid {
    color: #dc2626;
}

/* File Upload */
.file-upload-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 4px;
}

.file-upload-hint {
    font-size: 0.8rem;
    color: #6b7280;
}

/* Submit Button */
.submit-button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
}

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

.submit-button:active {
    transform: translateY(0);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Loading States */
.form-loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Media Carousel Optimizations */
.champion-media .media-carousel-section {
    margin: 0;
}

.champion-media .media-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin: 0 0 12px 0;
    text-align: center;
}

.champion-media .carousel-container {
    padding: 0 40px;
}

.champion-media .carousel-item {
    width: 120px;
    height: 200px;
    border-radius: 12px;
}

.champion-media .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid rgba(103, 126, 234, 0.3);
    color: #667eea;
    backdrop-filter: blur(8px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.champion-media .carousel-btn:hover {
    background: rgba(103, 126, 234, 0.15);
    border-color: #667eea;
    transform: translateY(-50%) scale(1.08);
}

.champion-media .carousel-prev {
    left: 6px;
}

.champion-media .carousel-next {
    right: 6px;
}

.champion-media .play-button {
    width: 36px;
    height: 36px;
    font-size: 16px;
}

/* Border color state classes */
.border-error {
    border-color: #ef4444 !important;
}

.border-success {
    border-color: #059669 !important;
}

.border-default {
    border-color: #e5e7eb !important;
}

/* File upload success state */
.file-upload-label.file-selected {
    border-color: #059669;
    background: rgba(5, 150, 105, 0.05);
}

.file-upload-label.file-selected .file-upload-icon {
    color: #059669;
}

.file-upload-label.file-selected .file-upload-text {
    color: #059669;
}

/* Validation error popup */
.validation-error-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border: 2px solid #ef4444;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    max-width: 400px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.validation-error-popup h4 {
    color: #dc2626;
    margin: 0 0 16px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.validation-error-popup ul {
    margin: 0 0 20px 0;
    padding-left: 20px;
    color: #374151;
}

.validation-error-popup li {
    margin-bottom: 8px;
    line-height: 1.4;
}

.validation-error-popup button {
    background: #ef4444;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s ease;
    width: 100%;
}

.validation-error-popup button:hover {
    background: #dc2626;
}

/* Backdrop for popup */
.validation-error-popup::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

/* Loading Overlay and Progress Bar */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.loading-overlay.show {
    display: flex;
}

.loading-content {
    text-align: center;
    max-width: 400px;
    width: 90%;
    padding: 32px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.loading-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    animation: pulse 1.5s ease-in-out infinite;
}

.loading-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.loading-subtitle {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0 0 24px 0;
}

.progress-container {
    width: 100%;
    height: 8px;
    background: #f3f4f6;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    width: 0%;
    transition: width 0.3s ease;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

.progress-text {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Animated loading dots */
.loading-dots {
    display: inline-block;
}

.loading-dots::after {
    content: '';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% {
        content: '';
    }
    40% {
        content: '.';
    }
    60% {
        content: '..';
    }
    80%, 100% {
        content: '...';
    }
}

/* Desktop Responsive */
@media (min-width: 768px) {
    .champion-media .carousel-container {
        padding: 0 50px;
    }

    .champion-media .carousel-item {
        width: 140px;
        height: 240px;
    }

    .champion-media .carousel-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
        background: rgba(255, 255, 255, 0.98);
        border: 2px solid rgba(103, 126, 234, 0.25);
    }

    .champion-media .carousel-prev {
        left: 12px;
    }

    .champion-media .carousel-next {
        right: 12px;
    }

    .champion-media .play-button {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .fan-upload-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 20px;
    }

    .hero-section {
        margin: 0 0 24px 0;
    }

    .main-content-wrapper {
        margin: 0;
    }

    .champion-card,
    .upload-section {
        margin: 0;
    }

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

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

    .champion-details {
        grid-template-columns: repeat(4, 1fr);
    }

    .form-row {
        flex-direction: row;
    }

    .form-row .form-group:first-child,
    .form-row .form-group:last-child {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .fan-upload-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px;
    }

    .main-content-wrapper {
        flex-direction: row;
        gap: 30px;
        align-items: flex-start;
    }

    .champion-card {
        flex: 1;
        min-width: 400px;
    }

    .upload-section {
        flex: 1;
        min-width: 400px;
    }

    .hero-section {
        margin: 0 0 30px 0;
        padding: 32px;
    }

    .champion-card,
    .upload-section {
        padding: 32px;
    }
}

/* Fan Requests - Mobile Carousel Optimizations */
@media (max-width: 768px) {
    /* Reduce carousel margins specifically for fan requests page */
    .fan-requests-card .carousel-container {
        padding: 0 22px; /* Further reduced from 30px */
    }
    
    .fan-requests-card .carousel-btn {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
    
    .fan-requests-card .carousel-prev {
        left: 3px; /* Moved even closer to edge */
    }
    
    .fan-requests-card .carousel-next {
        right: 3px; /* Moved even closer to edge */
    }
}

@media (max-width: 480px) {
    /* Even tighter spacing for very small screens - fan requests specific */
    .fan-requests-card .carousel-container {
        padding: 0 10px; /* Maximum aggressive reduction for small screens */
    }
    
    .fan-requests-card .carousel-btn {
        width: 26px;
        height: 26px;
        font-size: 9px;
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(103, 126, 234, 0.3);
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    }
    
    .fan-requests-card .carousel-prev {
        left: -2px; /* Pushed outside container edge */
    }
    
    .fan-requests-card .carousel-next {
        right: -2px; /* Pushed outside container edge */
    }
    
    /* Reduce gap between carousel items in fan requests */
    .fan-requests-card .carousel-track {
        gap: 3px; /* Minimal gap for maximum content space */
    }
    
    /* Tighter spacing for request videos section */
    .request-videos-section {
        padding: 2px; /* Absolute minimal padding */
        margin-bottom: 2px;
    }
}

@media (max-width: 360px) {
    /* Ultra-tight spacing for very small devices - fan requests only */
    .fan-requests-card .carousel-container {
        padding: 0 8px; /* Absolute maximum width utilization for tiny screens */
    }
    
    .fan-requests-card .carousel-btn {
        width: 22px;
        height: 22px;
        font-size: 7px;
        border: 1px solid rgba(103, 126, 234, 0.4);
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    }
    
    .fan-requests-card .carousel-prev {
        left: -3px; /* Push further outside container for maximum content space */
    }
    
    .fan-requests-card .carousel-next {
        right: -3px; /* Push further outside container for maximum content space */
    }
    
    .fan-requests-card .carousel-track {
        gap: 2px; /* Absolute minimum possible gap */
    }
    
    /* Maximum space utilization for request videos section */
    .request-videos-section {
        padding: 1px; /* Absolute minimal padding */
        margin-bottom: 1px;
    }
}

/* Small mobile optimizations */
@media (max-width: 480px) {
    .fan-upload-container {
        padding: 15px 0;
    }

    .hero-section {
        margin: 0 10px 15px 10px;
        padding: 20px 16px;
    }

    .main-content-wrapper {
        margin: 0 10px 15px 10px;
        gap: 15px;
    }

    .champion-card,
    .upload-section {
        padding: 20px 16px;
    }

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

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

    .champion-details {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .detail-item {
        padding: 10px 8px;
    }

    .detail-label {
        font-size: 0.7rem;
    }

    .detail-value {
        font-size: 0.8rem;
    }

    .champion-media .carousel-container {
        padding: 0 35px;
    }

    /* General carousel responsive styles for all carousels */
    .carousel-item {
        width: 100px;
        height: 180px;
    }

    .carousel-track {
        gap: 10px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .carousel-prev {
        left: 4px;
    }

    .carousel-next {
        right: 4px;
    }

    .carousel-container {
        padding: 0 35px;
    }

    /* Specific champion media styles (keeping for backwards compatibility) */
    .champion-media .carousel-item {
        width: 100px;
        height: 180px;
    }

    .champion-media .carousel-track {
        gap: 10px;
    }

    .champion-media .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .champion-media .carousel-prev {
        left: 4px;
    }

    .champion-media .carousel-next {
        right: 4px;
    }

    .form-input,
    .form-textarea {
        padding: 14px;
        font-size: 0.95rem;
    }

    .file-upload-label {
        padding: 24px 16px;
    }

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

    .submit-button {
        padding: 16px;
        font-size: 0.95rem;
    }

    .loading-content {
        padding: 24px 20px;
        margin: 0 16px;
    }

    .loading-icon {
        font-size: 2.5rem;
    }

    .loading-title {
        font-size: 1.1rem;
    }

    .loading-subtitle {
        font-size: 0.85rem;
    }
}

/* Accessibility improvements */
.form-input:focus,
.form-textarea:focus,
.file-upload-label:focus-within {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}
