/* ==============FAN REGISTRATION PAGE STARTS========= */

.alert-warning {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    color: #856404;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background-color: #d4edda;
    border-left: 4px solid #28a745;
    color: #155724;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-warning i,
.alert-success i {
    font-size: 20px;
}



/* Fan Registration Section - Full Background */
.fan-registration-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
        background: radial-gradient(circle at center, #333261 0%, #2d3748 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    margin: 0;
    overflow-y: auto;
}

/* Optional: Add background effects */
.fan-registration-section::before {
    content: '';
    position: fixed;
    top: -50px;
    right: -50px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.fan-registration-section::after {
    content: '';
    position: fixed;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* Ensure the register container sits above the background effects */
.fan-registration-section .register-container {
    position: relative;
    z-index: 2;
}

/* Main container - matching login card style */
.register-container {
    width: 100%;
    max-width: 680px;
    padding: 15px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: slideUpFade 0.6s ease-out;
}

/* Card styling - LIGHT theme - MORE COMPACT */
.register-header {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(203, 213, 225, 0.8);
    border-radius: 8px 8px 0 0;
    padding: 20px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.12);
}

/* Glow effects - adjusted for compact height */
.register-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.register-header::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.register-header h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    font-family: 'Quicksand', sans-serif;
    margin: 5px 0 3px 0;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.register-header p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Form section - MORE COMPACT */
.register-form {
    background: #ffffff;
    border: 1px solid rgba(203, 213, 225, 0.8);
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 25px 30px;
    box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.08);
}

/* Alert messages - more compact */
.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    animation: slideIn 0.3s ease;
    font-size: 0.85rem;
    border-left: 4px solid transparent;
}

.alert-error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fee2e2;
    border-left-color: #ef4444;
}

.alert-success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #dcfce7;
    border-left-color: #10b981;
}

.alert i {
    font-size: 1rem;
}

/* Form grid - 2 columns on desktop */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 5px;
}

/* Full width items */
.form-grid .full-width {
    grid-column: span 2;
}

/* Form groups - more compact */
.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 4px;
    font-family: 'Tilt Neon', sans-serif;
    letter-spacing: 0.3px;
}

.form-group label i {
    color: #3b82f6;
    font-size: 0.8rem;
    width: 16px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #1e293b;
    font-family: 'Nunito', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Password requirements - more compact */
.password-requirements {
    font-size: 0.7rem;
    color: #64748b;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    background: #f1f5f9;
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.password-requirements i {
    color: #f59e0b;
    font-size: 0.65rem;
}

/* Password toggle styles */
.password-wrapper {
    position: relative;
    width: 100%;
}

.password-wrapper input {
    padding-right: 40px;
    width: 100%;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.toggle-password i {
    font-size: 1rem;
}

/* DOB Selector Styles - always horizontal */
.dob-selector {
    display: flex;
    gap: 8px;
    width: 100%;
}

.dob-select {
    flex: 1;
    padding: 10px 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #1e293b;
    font-family: 'Nunito', sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23475669' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 14px;
}

/* Register button - more compact */
.btn-register {
    width: auto;
    min-width: 280px;
    padding: 12px 24px;
    margin-top: 40px !important;
    background: linear-gradient(135deg, #37455d, #414d67, #4f4e74);
    background-size: 200% 200%;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: 'Quicksand', sans-serif;
    letter-spacing: 0.3px;
    margin: 15px auto 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Glossy highlight effect */
.btn-register::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: left 0.5s ease;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.btn-register i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}
/* Login link section - more compact */
.login-link {
    text-align: center;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #e2e8f0;
    font-size: 0.9rem;
    color: #64748b;
}

.login-link a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 6px;
}

.login-link a i {
    font-size: 0.75rem;
}

/* Footer text - more compact */
.footer-text {
    text-align: center;
    margin-top: 18px;
    font-size: 0.75rem;
    color: #94a3b8;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

/* Desktop/Tablet styles - fields side by side */
@media (min-width: 769px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-grid .full-width {
        grid-column: span 2;
    }
}

/* Mobile styles - regular fields stack, date fields stay horizontal */
@media (max-width: 768px) {
    .register-container {
        max-width: 500px;
        padding: 12px;
    }
    
    .register-header {
        padding: 18px 25px;
    }
    
    .register-header h1 {
        font-size: 1.4rem;
    }
    
    .register-form {
        padding: 22px 25px;
    }
    
    /* Regular form fields stack vertically */
    .form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .form-grid .full-width {
        grid-column: span 1;
    }
    
    /* Date of birth container - stays horizontal */
    .full-width .dob-selector {
        display: flex !important;
        flex-direction: row !important;
        gap: 8px;
    }
    
    /* Date selects - stay side by side */
    .full-width .dob-select {
        flex: 1;
        min-width: 0; /* Allows them to shrink equally */
    }
    
    .form-group input,
    .dob-select {
        padding: 9px 12px;
        font-size: 0.85rem;
    }
    
    .btn-register {
        padding: 11px 16px;
        font-size: 0.95rem;
        margin-top: 12px;
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    .register-container {
        max-width: 100%;
        padding: 8px;
    }
    
    .register-header {
        padding: 16px 18px;
    }
    
    .register-header h1 {
        font-size: 1.3rem;
        margin: 3px 0 2px 0;
    }
    
    .register-header p {
        font-size: 0.85rem;
    }
    
    .register-form {
        padding: 18px 16px;
    }
    
    /* Regular fields stack */
    .form-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    /* Date of birth - remains horizontal even on small mobile */
    .full-width .dob-selector {
        display: flex !important;
        flex-direction: row !important;
        gap: 5px;
    }
    
    .full-width .dob-select {
        flex: 1;
        padding: 8px 8px;
        font-size: 0.8rem;
        background-position: right 6px center;
        padding-right: 22px;
    }
    
    .form-group label {
        font-size: 0.8rem;
        margin-bottom: 3px;
    }
    
    .form-group input,
    .dob-select {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
    
    .password-requirements {
        font-size: 0.65rem;
        padding: 4px 6px;
    }
    
    .btn-register {
        padding: 10px 14px;
        font-size: 0.9rem;
        margin-top: 10px;
        gap: 8px;
    }
    
    .btn-register i {
        font-size: 1rem;
    }
    
    .login-link {
        margin-top: 16px;
        padding-top: 12px;
        font-size: 0.85rem;
    }
    
    .footer-text {
        font-size: 0.65rem;
        margin-top: 14px;
        padding-top: 10px;
    }
}

/* Form validation styling */
.form-group input:invalid:not(:placeholder-shown) {
    border-color: #ef4444;
}

.form-group input:valid:not(:placeholder-shown) {
    border-color: #10b981;
}



/* ===========UPDATE_PROFILE PAGE STARTS=============== */

        .profile-container {
            width: 100%;
            max-width: 500px;
            padding: 15px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            animation: slideUpFade 0.6s ease-out;
        }

        .profile-card {
            background: #ffffff;
            border: 1px solid rgba(203, 213, 225, 0.8);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.2);
        }

        .profile-header {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            padding: 20px 25px 15px;
            text-align: center;
            border-bottom: 1px solid #e2e8f0;
        }

        .profile-header h1 {
            font-size: 1.4rem;
            font-weight: 800;
            color: #1e293b;
            font-family: 'Tilt Neon', sans-serif;
            margin: 0 0 3px 0;
        }

        .profile-header p {
            font-size: 0.85rem;
            color: #64748b;
            margin: 0;
        }

        .welcome-message {
            background: #f0f9ff;
            border: 1px solid #bae6fd;
            border-radius: 8px;
            padding: 10px 15px;
            margin: 15px 20px 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .welcome-message i {
            font-size: 1.3rem;
            color: #3b82f6;
        }

        .welcome-message h3 {
            font-size: 0.95rem;
            font-weight: 700;
            color: #0369a1;
            margin: 0 0 2px 0;
            font-family: 'Quicksand', sans-serif;
        }

        .welcome-message p {
            font-size: 0.75rem;
            color: #475569;
            margin: 0;
        }

        .profile-content {
            padding: 15px 25px 25px;
        }

        .current-profile {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 15px;
        }

        .profile-image-wrapper {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid #ffffff;
            box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.2);
            margin-bottom: 8px;
            background: #f1f5f9;
            cursor: pointer;
            transition: transform 0.3s ease;
            position: relative;
        }

        .profile-image-wrapper:hover {
            transform: scale(1.05);
        }

        .profile-image-wrapper:hover::after {
            content: '\f030';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            border-radius: 50%;
        }

        .profile-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .profile-image-wrapper .placeholder-icon {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: #94a3b8;
            background: #f1f5f9;
        }

        .profile-name {
            font-size: 1.1rem;
            font-weight: 700;
            color: #1e293b;
            font-family: 'Quicksand', sans-serif;
            margin: 5px 0 0;
        }

        #image-preview {
            display: none;
        }

        .upload-section {
            background: #f8fafc;
            border: 2px dashed #c5841c;
            border-radius: 10px;
            padding: 15px;
            text-align: center;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }

        .upload-section:hover {
            border-color: #db8906;
            background: #f1f5f9;
        }

        .upload-section i {
            font-size: 2rem;
            color: #3b82f6;
            margin-bottom: 5px;
        }

        .upload-section h4 {
            font-size: 0.95rem;
            font-weight: 700;
            color: #1e293b;
            margin: 0 0 3px;
            font-family: 'Quicksand', sans-serif;
        }

        .upload-section p {
            font-size: 0.75rem;
            color: #64748b;
            margin: 0 0 10px;
        }

        .file-input-wrapper {
            position: relative;
            margin-bottom: 5px;
        }

        .file-input-wrapper input[type="file"] {
            position: absolute;
            left: -9999px;
            opacity: 0;
        }

        .file-label {
            display: inline-block;
            padding: 8px 18px;
            background: #ffffff;
            border: 1px solid #cbd5e1;
            border-radius: 6px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #475569;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .file-label:hover {
            background: #3b82f6;
            border-color: #3b82f6;
            color: #ffffff;
        }

        .file-label i {
            font-size: 0.85rem;
            margin-right: 5px;
        }

        .selected-file {
            font-size: 0.75rem;
            color: #64748b;
            margin-top: 5px;
        }

        .action-buttons {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }

        .btn-primary, .btn-secondary {
            flex: 1;
            padding: 10px 12px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            transition: all 0.3s ease;
            font-family: 'Quicksand', sans-serif;
            border: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, #67c0ec, #106be3);
            color: white;
            box-shadow: 0 3px 10px rgba(59, 130, 246, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
        }

        .btn-secondary {
            background: #f1f5f9;
            color: #475569;
            border: 1px solid #cbd5e1;
        }

        .btn-secondary:hover {
            background: #e2e8f0;
            transform: translateY(-2px);
        }

        .btn-primary i, .btn-secondary i {
            font-size: 0.9rem;
        }

        .alert {
            padding: 10px 14px;
            border-radius: 8px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            animation: slideIn 0.3s ease;
            font-size: 0.8rem;
            border-left: 4px solid transparent;
        }

        .alert-error {
            background: #fef2f2;
            color: #b91c1c;
            border: 1px solid #fee2e2;
            border-left-color: #ef4444;
        }

        .alert i {
            font-size: 0.95rem;
        }

        .login-link {
            text-align: center;
            margin-top: 12px;
            font-size: 0.8rem;
            color: #64748b;
        }

        .login-link a {
            color: #3b82f6;
            text-decoration: none;
            font-weight: 700;
        }

        @keyframes slideUpFade {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @media (max-width: 480px) {
            .profile-container {
                padding: 10px;
            }
            
            .profile-header {
                padding: 15px 20px 10px;
            }
            
            .profile-header h1 {
                font-size: 1.2rem;
            }
            
            .profile-content {
                padding: 15px 18px 20px;
            }
            
            .profile-image-wrapper {
                width: 90px;
                height: 90px;
            }
            
            .action-buttons {
                flex-direction: column;
            }
            
            .upload-section {
                padding: 12px;
            }
        }




        /* =============== FAN DASHBOARD STYLES =============== */
/* Complete CSS for Fan Dashboard - No :root, No variables */

/* Fan Dashboard Base */
.fan-dashboard {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    min-height: 100vh;
    font-family: 'Nunito', sans-serif;
}

.fan-dashboard-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Welcome Header */
.fan-welcome-header {
    background: linear-gradient(135deg, #2d3748 0%, #324461 100%);
    border: 1px solid rgba(71, 85, 105, 0.6);
    border-radius: 16px;
    padding: 25px 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.3);
}

.fan-welcome-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.fan-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ef4444;
    box-shadow: 0 8px 20px -5px rgba(239, 68, 68, 0.3);
    background: #f1f5f9;
}

.fan-avatar-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fan-welcome-text h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #f8fafc;
    font-family: 'Quicksand', sans-serif;
    margin: 0 0 5px 0;
    letter-spacing: -0.5px;
}

.fan-welcome-text p {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fan-welcome-text p i {
    color: #ef4444;
}

.fan-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.fan-badge.free {
    background: #334155;
    color: #f1f5f9;
    border: 1px solid #475569;
}

.fan-badge.premium {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.fan-welcome-stats {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 25px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.fan-stat-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.fan-stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ef4444;
    line-height: 1.2;
    font-family: 'Quicksand', sans-serif;
}

.fan-stat-label {
    font-size: 0.7rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stats Grid */
.fan-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.fan-stat-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(203, 213, 225, 0.8);
    box-shadow: 0 4px 10px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.fan-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.fan-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.fan-stat-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 3px 0;
    font-family: 'Quicksand', sans-serif;
}

.fan-stat-info p {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Main Dashboard Grid */
.fan-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 20px;
}

/* Cards */
.fan-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(203, 213, 225, 0.8);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px -8px rgba(0, 0, 0, 0.1);
}

.fan-card-header {
    padding: 15px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fan-card-header i {
    color: #ef4444;
    font-size: 1rem;
    width: 20px;
}

.fan-card-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    flex: 1;
}

.fan-card-link {
    font-size: 0.75rem;
    color: #ef4444;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.fan-card-link:hover {
    color: #b91c1c;
    text-decoration: underline;
}

.fan-card-body {
    padding: 20px;
}

/* Favorite Player */
.fan-favorite-player {
    display: flex;
    align-items: center;
    gap: 15px;
}

.fan-player-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444, #b91c1c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.fan-player-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 3px 0;
    font-family: 'Quicksand', sans-serif;
}

.fan-player-info p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

/* Match Items */
.fan-match-item {
    padding: 12px 0;
    border-bottom: 1px solid #edf2f7;
}

.fan-match-item:last-child {
    border-bottom: none;
}

.fan-match-date {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fan-match-date i {
    color: #ef4444;
    font-size: 0.75rem;
}

.fan-match-time {
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.7rem;
    color: #475569;
    font-weight: 600;
}

.fan-match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.fan-team {
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
}

.fan-our-team {
    color: #ef4444;
    font-weight: 700;
}

.fan-vs {
    font-size: 0.7rem;
    font-weight: 700;
    color: #94a3b8;
    background: #f1f5f9;
    padding: 3px 8px;
    border-radius: 20px;
}

.fan-match-competition {
    font-size: 0.7rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 4px;
}

.fan-match-competition i {
    font-size: 0.65rem;
    color: #f59e0b;
}

/* Result Items */
.fan-result-item {
    padding: 15px 0;
    border-bottom: 1px solid #edf2f7;
}

.fan-result-item:last-child {
    border-bottom: none;
}

.fan-result-date {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 8px;
}

.fan-result-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.fan-score {
    font-size: 1.1rem;
    font-weight: 800;
    font-family: 'Quicksand', sans-serif;
    padding: 4px 10px;
    border-radius: 30px;
}

.fan-score.win {
    background: #d1fae5;
    color: #065f46;
}

.fan-score.draw {
    background: #fef9c3;
    color: #713f12;
}

.fan-score.loss {
    background: #fee2e2;
    color: #7f1d1d;
}

.fan-result-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.fan-result-badge.win {
    background: #d1fae5;
    color: #065f46;
}

.fan-result-badge.draw {
    background: #fef9c3;
    color: #713f12;
}

.fan-result-badge.loss {
    background: #fee2e2;
    color: #7f1d1d;
}

/* Standings Preview */
.fan-standings-preview {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fan-standing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 0.8rem;
}

.fan-highlanders-row {
    background: #fee2e2;
    border-left: 3px solid #ef4444;
    font-weight: 700;
}

.fan-team-name {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #334155;
}

.fan-team-stats {
    display: flex;
    gap: 12px;
}

.fan-stat {
    min-width: 20px;
    text-align: center;
    color: #64748b;
}

.fan-points {
    font-weight: 700;
    color: #1e293b;
}

/* Player Rows */
.fan-player-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #edf2f7;
}

.fan-player-row:last-child {
    border-bottom: none;
}

.fan-player-rank {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #475569;
}

.fan-player-info {
    flex: 1;
}

.fan-player-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1e293b;
}

.fan-player-position {
    font-size: 0.65rem;
    color: #94a3b8;
}

.fan-player-goals {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ef4444;
}

/* Quick Links */
.fan-quick-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.fan-quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fan-quick-link:hover {
    background: #ef4444;
    border-color: #ef4444;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -5px rgba(239, 68, 68, 0.3);
}

.fan-quick-link:hover i,
.fan-quick-link:hover span {
    color: white;
}

.fan-quick-link i {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.fan-quick-link span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #334155;
    transition: color 0.3s ease;
}

/* Membership Card */
.fan-membership-card {
    border-top: 3px solid;
}

.fan-membership-card.free {
    border-top-color: #64748b;
}

.fan-membership-card.premium {
    border-top-color: #f59e0b;
}

.fan-membership-info {
    text-align: center;
}

.fan-membership-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.fan-membership-badge.free {
    background: #f1f5f9;
    color: #475569;
}

.fan-membership-badge.premium {
    background: #fef3c7;
    color: #92400e;
}

.fan-member-since {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 20px;
}

.fan-btn-upgrade {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.fan-btn-upgrade:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(245, 158, 11, 0.4);
}

/* Empty State */
.fan-empty-state {
    text-align: center;
    padding: 30px 15px;
    color: #94a3b8;
}

.fan-empty-state i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
    opacity: 0.5;
}

.fan-empty-state p {
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.fan-btn-small {
    display: inline-block;
    padding: 6px 15px;
    background: #ef4444;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.fan-btn-small:hover {
    background: #b91c1c;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .fan-dashboard-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .fan-grid-right {
        grid-column: span 2;
    }
}

@media (max-width: 992px) {
    .fan-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .fan-welcome-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fan-welcome-stats {
        width: 100%;
        justify-content: space-around;
    }
    
    .fan-dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .fan-grid-right {
        grid-column: span 1;
    }
    
    .fan-quick-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .fan-welcome-content {
        flex-direction: column;
        text-align: center;
    }
    
    .fan-welcome-stats {
        flex-wrap: wrap;
    }
    
    .fan-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .fan-quick-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fan-match-teams {
        flex-direction: column;
        gap: 10px;
    }
    
    .fan-result-teams {
        flex-direction: column;
        gap: 10px;
    }
}




/* ============= FAN ACCOUNT PAGE STARTS===================*/

.fans-success-message,
.fans-error-message {
    transition: opacity 0.5s ease;
}
/* MAIN GRID LAYOUT */
.fans-account-content-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 20px;
    margin-top: 20px;
}

/* LEFT COLUMN */
.fans-account-grid-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* LEFT COLUMN MOBILE */
@media (max-width: 992px) {
    .fans-account-content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .fans-account-grid-left {
        order: 1;
    }
    
    .fans-account-grid-right {
        order: 2;
    }
}

/* PROFILE CARD */
.fans-account-profile-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    margin-bottom: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fans-account-profile-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08),
                0 10px 10px -5px rgba(0, 0, 0, 0.03);
    border-color: transparent;
}

.fans-account-card-header {
    padding: 12px 18px;
    background: #fafbfc;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.fans-account-card-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #333b67;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Tilt Neon', sans-serif;
   
}

.fans-account-card-header h3 i {
    color: #3b82f6;
    font-size: 0.9rem;
}

.fans-account-card-body {
    padding: 20px;
}

/* PROFILE CARD MOBILE */
@media (max-width: 768px) {
    .fans-account-card-body {
        padding: 15px;
    }
    
    .fans-account-card-header {
        padding: 10px 15px;
    }
    
    .fans-account-card-header h3 {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .fans-account-card-body {
        padding: 14px;
    }
    
    .fans-account-card-header {
        padding: 8px 14px;
    }
    
    .fans-account-card-header h3 {
        font-size: 0.99rem;
    }
}

/* PROFILE IMAGE SECTION */
.fans-profile-image-section {
    text-align: center;
    margin-bottom: 24px;
}

.fans-avatar-container {
    position: relative;
    width: 210px;
    height: 210px;
    margin: 0 auto 12px;
    border-radius: 10%;
    overflow: hidden;
    background: linear-gradient(135deg, #4299e1 0%, #667eea 100%);
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.fans-avatar-container:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(66, 153, 225, 0.4);
}

.fans-avatar-container:active {
    transform: scale(0.98);
}

.fans-avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.fans-avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #4299e1 0%, #667eea 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.fans-avatar-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    padding: 6px;
    border-radius: 0 0 5px 5px;
    display: flex;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s;
}

.fans-avatar-container:hover .fans-avatar-overlay {
    opacity: 1;
}

.fans-avatar-upload-btn,
.fans-avatar-remove-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: transform 0.3s;
    padding: 3px 8px;
}

.fans-avatar-upload-btn:hover,
.fans-avatar-remove-btn:hover {
    transform: scale(1.05);
}

.fans-avatar-upload-btn i,
.fans-avatar-remove-btn i {
    font-size: 0.8rem;
}

/* PROFILE IMAGE MOBILE */
@media (max-width: 768px) {
    .fans-avatar-container {
        width: 135px;
        height: 135px;
    }
    
    .fans-avatar-placeholder {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .fans-avatar-container {
        width: 175px;
        height: 175px;
    }
    
    .fans-avatar-placeholder {
        font-size: 36px;
    }
}

/* BADGES */
.fans-membership-badge,
.fans-status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.fans-membership-badge {
    margin-right: 8px;
}

.fans-membership-badge.free {
    background: #e2e8f0;
    color: #4a5568;
}

.fans-membership-badge.premium {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.fans-status-badge.active {
    background: #d4edda;
    color: #155724;
}

.fans-status-badge.inactive {
    background: #f8d7da;
    color: #721c24;
}

/* BADGES MOBILE */
@media (max-width: 768px) {
    .fans-membership-badge,
    .fans-status-badge {
        padding: 3px 10px;
        font-size: 14px;
    }
}

/* FORM GRID */
.fans-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.fans-form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.fans-form-group label {
    font-size: 14px;
    font-weight: 700;
    color: #2e569c;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Quicksand', sans-serif;
    letter-spacing: -0.3px;
}

.fans-form-group label i {
    color: #6f6292;
    font-size: 11px;
    width: 14px;
}

.fans-form-group input,
.fans-form-group select {
    padding: 8px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 14px;
    color: #4a5568;
    background: #fff;
    transition: all 0.3s;
    font-family: 'Nunito', sans-serif;
    letter-spacing: -0.2px;
}

.fans-form-group input:focus,
.fans-form-group select:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 2px rgba(66, 153, 225, 0.1);
}

.fans-form-group input:hover,
.fans-form-group select:hover {
    border-color: #4299e1;
}

.fans-disabled-field {
    background: #f8fafc;
    color: #718096;
    cursor: not-allowed;
}

/* FORM GRID MOBILE */
@media (max-width: 768px) {
    .fans-form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .fans-form-group input,
    .fans-form-group select {
        padding: 7px 10px;
        font-size: 13px;
        letter-spacing: -0.2px;
    }
    
    .fans-form-group label {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .fans-form-grid {
        gap: 12px;
    }
}

/* PASSWORD INPUT */
.fans-password-input {
    position: relative;
}

.fans-password-input input {
    padding-right: 36px;
    width: 100%;
}

.fans-toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #a0aec0;
    cursor: pointer;
    padding: 5px;
    font-size: 14px;
    transition: color 0.3s;
}

.fans-toggle-password:hover {
    color: #4299e1;
}

/* FORM ACTIONS */
.fans-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

.fans-btn-primary,
.fans-btn-secondary {
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Nunito', sans-serif;
}

.fans-btn-primary {
    background: linear-gradient(135deg, #4299e1 0%, #203ec0 100%);
    color: white;
}

.fans-btn-primary:hover {
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(66, 153, 225, 0.3);
}

.fans-btn-secondary {
    background: #e2e8f0;
    color: #4a5568;
}

.fans-btn-secondary:hover {
    background: #cbd5e0;
    color: #2d3748;
    transform: translateY(-2px);
}

/* FORM ACTIONS MOBILE */
@media (max-width: 768px) {
    .fans-form-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .fans-btn-primary,
    .fans-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .fans-btn-primary,
    .fans-btn-secondary {
        padding: 7px 16px;
        font-size: 12px;
    }
}

/* SECURITY CARD */
.fans-security-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fans-security-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08),
                0 10px 10px -5px rgba(0, 0, 0, 0.03);
    border-color: transparent;
}

.fans-card-header {
    padding: 12px 18px;
    background: #fafbfc;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.fans-card-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #333b67;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Tilt Neon', sans-serif;
    
}

.fans-card-header h3 i {
    color: #3b82f6;
    font-size: 0.9rem;
}

.fans-card-body {
    padding: 20px;
}

/* SECURITY CARD MOBILE */
@media (max-width: 768px) {
    .fans-card-body {
        padding: 15px;
    }
    
    .fans-card-header {
        padding: 10px 15px;
    }
    
    .fans-card-header h3 {
        font-size: 0.99rem;
    }
}

@media (max-width: 480px) {
    .fans-card-body {
        padding: 14px;
    }
    
    .fans-card-header {
        padding: 8px 14px;
    }
    
    .fans-card-header h3 {
        font-size: 0.99rem;
    }
}

/* RIGHT COLUMN */
.fans-account-grid-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ACTIVITY CARD */
.fans-activity-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fans-activity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08),
                0 10px 10px -5px rgba(0, 0, 0, 0.03);
    border-color: transparent;
}

/* ACTIVITY STATS */
.fans-activity-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.fans-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.fans-stat-item:hover {
    background: #f5f3ff;
    border-color: #ddd6fe;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
}

.fans-stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    flex-shrink: 0;
}

.fans-stat-icon-logins {
    background: linear-gradient(135deg, #4299e1 0%, #203ec0 100%);
}

.fans-stat-icon-activities {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

.fans-stat-content {
    flex: 1;
}

.fans-stat-number {
    font-size: 22px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
    font-family: 'Tilt Neon', sans-serif;
}

.fans-stat-label {
    font-size: 11px;
    color: #64748b;
    margin-top: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ACTIVITY STATS MOBILE */
@media (max-width: 768px) {
    .fans-activity-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .fans-stat-item {
        padding: 10px;
    }
    
    .fans-stat-number {
        font-size: 20px;
    }
    
    .fans-stat-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .fans-stat-number {
        font-size: 18px;
    }
    
    .fans-stat-label {
        font-size: 10px;
    }
}

/* RECENT ACTIVITIES */
.fans-recent-activities h4 {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 700;
    color: #2e569c;
    font-family: 'Quicksand', sans-serif;
    letter-spacing: -0.3px;
}

.fans-activities-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fans-activity-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.fans-activity-item:hover {
    background: #f5f3ff;
    border-color: #ddd6fe;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.08);
}

.fans-activity-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, #4299e1 0%, #203ec0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
}

.fans-activity-content {
    flex: 1;
}

.fans-activity-title {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.fans-activity-desc {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 4px;
    line-height: 1.4;
}

.fans-activity-time {
    font-size: 10px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* RECENT ACTIVITIES MOBILE */
@media (max-width: 768px) {
    .fans-activity-item {
        padding: 10px;
        gap: 10px;
    }
    
    .fans-activity-icon {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .fans-activity-title {
        font-size: 12px;
    }
    
    .fans-activity-desc {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .fans-activity-title {
        font-size: 11px;
    }
    
    .fans-activity-desc {
        font-size: 10px;
    }
    
    .fans-activity-time {
        font-size: 9px;
    }
}

/* SUCCESS/ERROR MESSAGES */
.fans-success-message,
.fans-error-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    animation: fansSlideIn 0.3s ease;
}

.fans-success-message {
    background: #d4edda;
    color: #155724;
    border-left: 3px solid #28a745;
}

.fans-error-message {
    background: #f8d7da;
    color: #721c24;
    border-left: 3px solid #dc3545;
}

@keyframes fansSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* BREADCRUMB */
.fans-breadcrumb-nav {
    background: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    border: 1px solid #edf2f7;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #718096;
}

.fans-breadcrumb-nav a {
    color: #2daded;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.fans-breadcrumb-nav a:hover {
    color: #6d28d9;
}

.fans-breadcrumb-nav span {
    color: #2d3748;
    font-weight: 600;
}

.fans-breadcrumb-nav i.fa-chevron-right {
    font-size: 0.65rem;
    color: #cbd5e0;
}

/* BREADCRUMB MOBILE */
@media (max-width: 768px) {
    .fans-breadcrumb-nav {
        font-size: 0.75rem;
        padding: 8px 12px;
        flex-wrap: wrap;
    }
}

/* PAGE HEADER */
.fans-page-header {
    margin-bottom: 20px;
}

.fans-page-header h1 {
    margin: 0 0 6px 0;
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fans-page-header h1 i {
    color: #4299e1;
    font-size: 1.5rem;
}

.fans-page-description {
    margin: 0;
    color: #718096;
    font-size: 0.85rem;
}

/* PAGE HEADER MOBILE */
@media (max-width: 768px) {
    .fans-page-header h1 {
        font-size: 1.3rem;
    }
    
    .fans-page-header h1 i {
        font-size: 1.2rem;
    }
    
    .fans-page-description {
        font-size: 0.75rem;
    }
}