/* ===== ROOT VARIABLES ===== */
:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --dark-gray: #2a2a2a;
    --medium-gray: #404040;
    --light-gray: #cccccc;
    
    --primary-red: #dc143c;
    --dark-red: #a01028;
    --light-red: #ff1744;
    --red-glow: rgba(220, 20, 60, 0.3);
    
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 12px 48px rgba(220, 20, 60, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== LIGHT THEME VARIABLES ===== */
[data-theme="light"] {
    --primary-black: #f5f5f7;
    --secondary-black: #ffffff;
    --dark-gray: #e8e8ed;
    --medium-gray: #d1d1d6;
    --light-gray: #3a3a3c;
    
    --primary-red: #dc143c;
    --dark-red: #a01028;
    --light-red: #ff1744;
    --red-glow: rgba(220, 20, 60, 0.15);
    
    --text-white: #1d1d1f;
    --text-gray: #6e6e73;
    
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 12px 48px rgba(220, 20, 60, 0.15);
}

/* ===== GLOBAL RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    color: var(--text-white);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== CONTAINER ===== */
.auth-container {
    display: flex;
    min-height: 100vh;
    position: relative;
}

/* ===== VIDEO SECTION (65%) ===== */
.video-section {
    flex: 0 0 65%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-red) 0%, var(--dark-red) 100%);
    opacity: 0.1;
    z-index: 1;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.7), transparent);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.video-overlay h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-overlay p {
    font-size: 1.15rem;
    color: var(--light-gray);
    max-width: 500px;
}

/* ===== FORM SECTION (35%) ===== */
.form-section {
    flex: 0 0 35%;
    background: var(--secondary-black);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--primary-red), transparent);
}

/* ===== FORM CARD ===== */
.form-card {
    width: 100%;
    max-width: 380px;
    background: var(--dark-gray);
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(220, 20, 60, 0.1);
    transition: var(--transition);
}

.form-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: rgba(220, 20, 60, 0.3);
}

.form-card h2 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--text-white);
    text-align: center;
}

.form-card .subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 0.85rem;
}

/* ===== FORM ELEMENTS ===== */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 4px;
    color: var(--light-gray);
    font-size: 0.78rem;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 9px 12px;
    background: var(--secondary-black);
    border: 2px solid var(--medium-gray);
    border-radius: 6px;
    color: var(--text-white);
    font-size: 0.85rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px var(--red-glow);
}

.form-group input::placeholder {
    color: var(--text-gray);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--secondary-black);
    color: var(--text-white);
}

/* Form Row for side-by-side fields */
.form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

/* ===== BUTTONS ===== */
.btn {
    width: 100%;
    padding: 9px 16px;
    border: none;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--text-white);
    margin-bottom: 10px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--red-glow);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: var(--text-white);
}

/* Text Link Button (smaller, link-style) */
.btn-link {
    background: transparent;
    border: none;
    color: var(--primary-red);
    padding: 8px;
    font-size: 0.8rem;
    text-decoration: underline;
    text-transform: none;
    letter-spacing: 0;
}

.btn-link:hover {
    color: var(--light-red);
    background: transparent;
    transform: none;
}

/* ===== LINKS ===== */
.form-links {
    text-align: center;
    margin-top: 15px;
}

.form-links a {
    color: var(--primary-red);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.form-links a:hover {
    color: var(--light-red);
    text-decoration: underline;
}

/* ===== MESSAGES/ALERTS ===== */
.messages {
    margin-bottom: 15px;
}

.alert {
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 0.85rem;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid rgba(40, 167, 69, 0.5);
    color: #5cb85c;
}

.alert-error {
    background: rgba(220, 20, 60, 0.2);
    border: 1px solid rgba(220, 20, 60, 0.5);
    color: var(--light-red);
}

/* ===== KVKK MODAL ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--dark-gray);
    padding: 40px;
    border-radius: 16px;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(220, 20, 60, 0.2);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content h3 {
    color: var(--primary-red);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

/* ===== PROFILE PAGE STYLES ===== */
/* Photo Card: Split Layout */
.photo-card .photo-card-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    align-items: center;
    margin-top: 20px;
}

.photo-preview-section {
    display: flex;
    justify-content: center;
}

.profile-image-preview {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--secondary-black);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(220, 20, 60, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.profile-image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-initials {
    font-size: 3rem;
    color: var(--primary-red);
    font-weight: 700;
}

.photo-actions-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.photo-buttons {
    display: flex;
    gap: 12px;
}

.photo-buttons .btn {
    flex: 1;
}

.photo-info {
    padding: 12px;
    background: rgba(220, 20, 60, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-red);
}

.photo-info p {
    margin: 6px 0;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.photo-info strong {
    color: var(--text-white);
}

.upload-message {
    text-align: center;
    font-size: 0.9rem;
    padding: 8px;
}

/* Form Icon Inline */
.icon-inline {
    color: var(--primary-red);
    margin-right: 6px;
    font-size: 0.9rem;
}

/* Account Info Grid */
.account-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.account-info-item {
    display: flex;
    gap: 15px;
    padding: 18px;
    background: rgba(220, 20, 60, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(220, 20, 60, 0.15);
    transition: var(--transition);
}

.account-info-item:hover {
    background: rgba(220, 20, 60, 0.08);
    border-color: rgba(220, 20, 60, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.15);
}

.account-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 10px;
    flex-shrink: 0;
}

.account-icon i {
    font-size: 1.4rem;
    color: white;
}

.account-details {
    flex: 1;
}

.account-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.account-value {
    font-size: 1.1rem;
    color: var(--text-white);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .photo-card .photo-card-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .photo-buttons {
        flex-direction: column;
    }
    
    .account-info-grid {
        grid-template-columns: 1fr;
    }
}

.modal-content p {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.modal-close {
    float: right;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
    margin-top: -10px;
}

.modal-close:hover {
    color: var(--primary-red);
}

/* ===== DASHBOARD ===== */
.dashboard-container {
    min-height: 100vh;
    padding: 40px;
}

.dashboard-header {
    text-align: center;
    padding: 60px 20px;
}

.dashboard-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dashboard-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.dashboard-actions {
    text-align: center;
    margin-top: 40px;
}

.dashboard-actions .btn {
    max-width: 300px;
    margin: 0 auto;
}

/* ===== RESPONSIVE ===== */
/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .auth-container {
        flex-direction: column;
        position: relative;
    }
    
    .video-section {
        flex: 0 0 45vh;
        min-height: 300px;
    }
    
    .form-section {
        flex: 1;
        padding: 30px 20px;
    }
    
    .form-section::before {
        display: none;
    }
    
    .video-overlay {
        padding: 40px;
    }
    
    .video-overlay h1 {
        font-size: 2.2rem;
    }
    
    .video-overlay p {
        font-size: 1rem;
    }
    
    .form-card {
        max-width: 450px;
        padding: 30px 25px;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .auth-container {
        flex-direction: column;
        position: relative;
    }
    
    .video-section {
        flex: 0 0 280px;
        min-height: 280px;
    }
    
    .form-section {
        flex: 1;
        padding: 20px 15px;
        position: relative;
        z-index: 10;
        margin-top: -40px;
    }
    
    .form-section::before {
        display: none;
    }
    
    .form-card {
        max-width: 100%;
        padding: 25px 20px;
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    }
    
    .video-overlay {
        padding: 25px;
        background: linear-gradient(to bottom, rgba(10, 10, 10, 0.6), rgba(10, 10, 10, 0.8));
    }
    
    .video-overlay h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .video-overlay p {
        font-size: 0.9rem;
        max-width: 100%;
    }
    
    .form-card h2 {
        font-size: 1.4rem;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-row {
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .form-group label {
        font-size: 0.75rem;
        margin-bottom: 4px;
    }
    
    .form-group input,
    .form-group select {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 11px;
        font-size: 0.85rem;
    }
    
    .btn-link {
        font-size: 0.75rem;
        padding: 6px;
    }
    
    .modal-content {
        margin: 15px;
        padding: 25px 20px;
        max-height: 85vh;
    }
    
    .modal-content h3 {
        font-size: 1.4rem;
    }
    
    .modal-content p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .video-section {
        flex: 0 0 240px;
        min-height: 240px;
    }
    
    .form-section {
        padding: 15px 10px;
        margin-top: -30px;
    }
    
    .form-card {
        padding: 20px 18px;
    }
    
    .video-overlay h1 {
        font-size: 1.5rem;
    }
    
    .video-overlay p {
        font-size: 0.85rem;
    }
    
    .form-card h2 {
        font-size: 1.2rem;
    }
    
    .form-card .subtitle {
        font-size: 0.75rem;
        margin-bottom: 18px;
    }
    
    .form-group {
        margin-bottom: 12px;
    }
    
    .form-row {
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .form-group label {
        font-size: 0.7rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 9px 11px;
        font-size: 0.8rem;
    }
    
    .btn {
        padding: 10px;
        font-size: 0.8rem;
        letter-spacing: 0.3px;
    }
    
    .btn-link {
        font-size: 0.7rem;
        padding: 5px;
    }
    
    .alert {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .form-links {
        font-size: 0.75rem;
    }
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-black);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--light-red);
}

/* ===== DASHBOARD LAYOUT ===== */
.dashboard-layout {
    display: flex;
    min-height: 100vh;
    background: var(--primary-black);
}

/* ===== SIDEBAR ===== */
.sidebar {
    width: 260px;
    background: var(--secondary-black);
    border-right: 1px solid rgba(220, 20, 60, 0.2);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 1000;
    transition: width 0.3s ease, transform 0.3s ease;
}

.sidebar.collapsed {
    width: 70px;
}

.sidebar.collapsed .sidebar-logo h2,
.sidebar.collapsed .sidebar-menu a span,
.sidebar.collapsed .sidebar-footer .btn-logout span {
    opacity: 0;
    visibility: hidden;
    width: 0;
    overflow: hidden;
}

.sidebar.collapsed .sidebar-toggle i {
    transform: rotate(180deg);
}

.sidebar-toggle {
    position: absolute;
    top: 85px;
    right: -15px;
    width: 30px;
    height: 30px;
    background: var(--secondary-black);
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition);
}

.sidebar-toggle:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

.sidebar-toggle i {
    color: var(--text-white);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.sidebar-logo {
    padding: 25px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(220, 20, 60, 0.2);
    transition: opacity 0.3s ease, visibility 0.3s ease, padding 0.3s ease;
}

.sidebar.collapsed .sidebar-logo {
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    height: 0;
    overflow: hidden;
}

.sidebar-logo img {
    width: 100%;
    max-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.sidebar-menu {
    flex: 1;
    padding: 20px 0;
    overflow-y: auto;
}

.sidebar-menu ul {
    list-style: none;
}

.sidebar-menu li {
    margin-bottom: 5px;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.sidebar-menu a:hover {
    background: rgba(220, 20, 60, 0.1);
    color: var(--text-white);
}

.sidebar-menu a.active {
    background: rgba(220, 20, 60, 0.2);
    color: var(--text-white);
    border-left: 3px solid var(--primary-red);
}

.sidebar-menu a i {
    font-size: 1.1rem;
    margin-right: 12px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.sidebar-menu a span {
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sidebar-footer {
    padding: 20px;
    border-top: none;
}

.sidebar.collapsed .sidebar-footer {
    padding: 15px 10px;
}

.sidebar-footer .btn-logout {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.sidebar.collapsed .sidebar-footer .btn-logout {
    padding: 10px;
    justify-content: center;
}

.sidebar.collapsed .sidebar-footer .btn-logout i {
    margin: 0;
}

.sidebar-footer .btn-logout span {
    transition: opacity 0.3s ease, visibility 0.3s ease;
    white-space: nowrap;
}

.sidebar-footer .btn-logout:hover {
    background: var(--primary-red);
    color: var(--text-white);
}

/* ===== MAIN CONTENT ===== */
.main-content {
    margin-left: 260px;
    flex: 1;
    min-height: 100vh;
    background: var(--primary-black);
    transition: margin-left 0.3s ease;
}

.main-content.expanded {
    margin-left: 70px;
}

.content-header {
    background: transparent;
    padding: 20px 0 20px 0;
    border-bottom: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content-header h1 {
    font-size: 1.8rem;
    color: var(--text-white);
    font-weight: 600;
}

.content-header .user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.content-header .user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.1rem;
}

.content-header .user-details {
    display: flex;
    flex-direction: column;
}

.content-header .user-name {
    font-weight: 600;
    color: var(--text-white);
    font-size: 0.95rem;
}

.content-header .user-role {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.content-body {
    padding: 28px 32px;
    max-width: 1600px;
    margin: 0 auto;
}

/* ===== DASHBOARD CARDS ===== */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 25px;
    max-width: 100%;
}

.dashboard-card {
    background: var(--secondary-black);
    border: 1px solid rgba(220, 20, 60, 0.1);
    border-radius: 10px;
    padding: 20px;
    transition: var(--transition);
    width: 100%;
    height: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dashboard-card:hover {
    border-color: rgba(220, 20, 60, 0.3);
    box-shadow: var(--shadow-hover);
}

.dashboard-card h3 {
    color: var(--text-white);
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dashboard-card h3 i {
    color: var(--primary-red);
    font-size: 1rem;
}

.dashboard-card p {
    color: var(--text-gray);
    line-height: 1.5;
    font-size: 0.82rem;
}

/* Welcome Card with Glassmorphism */
.welcome-card {
    grid-column: 1 / -1;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 20, 60, 0.3);
    max-width: 600px;
    min-height: auto !important;
    height: auto !important;
    aspect-ratio: auto !important;
    margin-bottom: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.welcome-card:hover {
    border-color: rgba(220, 20, 60, 0.5);
    box-shadow: 0 8px 32px rgba(220, 20, 60, 0.2);
}

.welcome-content h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-card .datetime {
    color: var(--text-gray);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.department-info {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: var(--text-white);
    font-size: 0.85rem;
    font-weight: 500;
}

.department-info i {
    color: var(--primary-red);
}

/* Modern Grid Layout */
.modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* Gradient Action Cards */
.action-card {
    position: relative;
    padding: 25px;
    border-radius: 12px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(220, 20, 60, 0.3);
}

.action-card:hover .card-icon {
    transform: scale(1.15) rotate(5deg);
}

.action-card:hover .card-glow {
    opacity: 1;
}

.gradient-card-1 {
    background: linear-gradient(135deg, #c21807 0%, #8e0e00 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-card-2 {
    background: linear-gradient(135deg, #dc143c 0%, #a01028 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-card-3 {
    background: linear-gradient(135deg, #8e0e00 0%, #5a0900 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-card-4 {
    background: linear-gradient(135deg, #a01028 0%, #6b0a1a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-icon {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.card-content h3 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.card-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 12px;
}

.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--text-white);
    font-weight: 500;
    margin-top: auto;
}

.card-badge i {
    font-size: 0.7rem;
}

.activity-badge {
    background: rgba(255, 255, 255, 0.1);
}

.activity-badge i {
    color: #4CAF50;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* Statistics Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 20, 60, 0.2);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(220, 20, 60, 0.4);
    transform: translateY(-3px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-white);
}

.stat-info h4 {
    color: var(--text-gray);
    font-size: 0.8rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.stat-value {
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

/* Glass Card Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 20, 60, 0.2);
    margin-bottom: 15px;
}

/* ===== SECTION BLOCK LAYOUT (Meetings Page) ===== */
.section-block {
    background: #1a1a1a;
    border-left: 4px solid var(--primary-red);
    border-radius: 8px;
    margin-bottom: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
}

[data-theme="light"] .section-block {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-left: 4px solid var(--primary-red);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.section-block:hover {
    border-left-color: var(--dark-red);
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.15);
}

[data-theme="light"] .section-block:hover {
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.1);
}

.section-header {
    background: #111;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}

[data-theme="light"] .section-header {
    background: #f5f5f7;
    border-bottom: 1px solid #e0e0e0;
}

.section-header i {
    color: var(--primary-red);
    font-size: 1.3rem;
}

.section-header h2 {
    color: #e0e0e0;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

[data-theme="light"] .section-header h2 {
    color: #1d1d1f;
}

.section-content {
    padding: 25px;
}

.section-description {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

[data-theme="light"] .section-description {
    color: #6e6e73;
    line-height: 1.5;
}

/* Captain Section Styling */
.captain-section {
    border-left-color: #ffd700;
}

.captain-section .section-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a0a 100%);
}

.captain-section .section-header i {
    color: #ffd700;
}

.badge-captain {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    color: #000;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Info Section Styling */
.info-section {
    border-left-color: #2196F3;
    background: rgba(33, 150, 243, 0.03);
}

.info-section .section-header i {
    color: #2196F3;
}

.info-text {
    color: #bbb;
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 12px 20px;
    background: rgba(33, 150, 243, 0.05);
    border-radius: 6px;
    border-left: 3px solid #2196F3;
}

[data-theme="light"] .info-text {
    color: #1d1d1f;
    background: rgba(33, 150, 243, 0.08);
}

/* Inline Form */
.inline-form {
    max-width: 100%;
}

.form-inline-group {
    display: flex;
    gap: 15px;
    align-items: flex-end;
}

.input-wide {
    flex: 1;
    background: #111;
    border: 2px solid #333;
    border-radius: 8px;
    padding: 14px 18px;
    color: var(--text-white);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

[data-theme="light"] .input-wide {
    background: #f5f5f7;
    border: 2px solid #d1d1d6;
    color: #1d1d1f;
}

.input-wide:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
    background: #0a0a0a;
}

[data-theme="light"] .input-wide:focus {
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.08);
}

.input-wide::placeholder {
    color: #666;
}

[data-theme="light"] .input-wide::placeholder {
    color: #86868b;
}

.btn-join {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--text-white);
    border: none;
    border-radius: 8px;
    padding: 14px 30px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-join:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.4);
}

.btn-join i {
    margin-right: 8px;
}

/* Action Buttons */
.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.btn-action {
    background: #111;
    border: 2px solid #333;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

[data-theme="light"] .btn-action {
    background: #f5f5f7;
    border: 2px solid #d1d1d6;
}

.btn-action:hover {
    border-color: var(--primary-red);
    background: #0a0a0a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.2);
}

[data-theme="light"] .btn-action:hover {
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.15);
}

.btn-instant:hover .btn-icon {
    background: linear-gradient(135deg, #ff1744 0%, #dc143c 100%);
}

.btn-scheduled:hover .btn-icon {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
}

.btn-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #333 0%, #222 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-white);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

[data-theme="light"] .btn-icon {
    background: linear-gradient(135deg, #e0e0e0 0%, #d1d1d6 100%);
    color: #1d1d1f;
}

.btn-text h4 {
    color: var(--text-white);
    font-size: 1rem;
    margin: 0 0 5px 0;
    font-weight: 600;
}

[data-theme="light"] .btn-text h4 {
    color: #1d1d1f;
}

.btn-text p {
    color: #888;
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.3;
}

[data-theme="light"] .btn-text p {
    color: #6e6e73;
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.3;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.3;
}

.empty-state p {
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive for Section Blocks */
@media (max-width: 768px) {
    .form-inline-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-join {
        width: 100%;
    }
    
    .section-header {
        padding: 16px 20px;
    }
    
    .section-header h2 {
        font-size: 1.1rem;
    }
    
    .section-content {
        padding: 20px;
    }
    
    .action-buttons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-block {
        border-left-width: 3px;
    }
    
    .section-header {
        padding: 14px 16px;
    }
    
    .section-header i {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 1rem;
    }
    
    .section-content {
        padding: 16px;
    }
    
    .btn-action {
        padding: 16px;
    }
    
    .btn-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

.welcome-card .user-stats {
    display: flex;
    gap: 25px;
    margin-top: 15px;
}

.welcome-card .stat-item {
    display: flex;
    flex-direction: column;
}

.welcome-card .stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-red);
}

.welcome-card .stat-label {
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-top: 4px;
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    background: var(--primary-red);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    color: var(--text-white);
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    background: var(--dark-red);
}

/* Responsive Dashboard */
@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .content-header {
        padding-left: 80px;
    }
}

@media (max-width: 768px) {
    .content-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
        padding: 20px 20px 20px 70px;
    }
    
    .content-header h1 {
        font-size: 1.5rem;
    }
    
    .content-body {
        padding: 20px;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .welcome-card h2 {
        font-size: 1.3rem;
    }
    
    .modern-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .action-card {
        min-height: 160px;
        padding: 20px;
    }
    
    .card-icon {
        font-size: 2rem;
    }
    
    .stats-section {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .sidebar {
        width: 100%;
    }
    
    .content-header {
        padding: 15px 15px 15px 60px;
    }
    
    .content-body {
        padding: 15px;
    }
    
    .dashboard-card {
        padding: 20px;
    }
    
    .action-card {
        min-height: 140px;
        padding: 18px;
    }
    
    .card-icon {
        font-size: 1.8rem;
    }
    
    .card-content h3 {
        font-size: 1rem;
    }
}

/* ===== THEME SWITCHER (Rocket & Sky Theme) ===== */
.theme-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
}

.theme-toggle {
    position: relative;
    width: 56px;
    height: 28px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e8ba3 100%);
    border-radius: 28px;
    cursor: pointer;
    overflow: hidden;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

[data-theme="light"] .theme-toggle {
    background: linear-gradient(135deg, #89CFF0 0%, #4A90E2 50%, #87CEEB 100%);
}

.theme-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.theme-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: var(--transition);
}

.theme-slider:before {
    position: absolute;
    content: "🌙";
    font-size: 14px;
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background: linear-gradient(135deg, #dc143c 0%, #a01028 100%);
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

[data-theme="light"] .theme-slider:before {
    content: "🚀";
    transform: translateX(28px);
    background: linear-gradient(135deg, #ff1744 0%, #dc143c 100%);
}

/* Profile Image Styles */
.content-header .user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.1rem;
    overflow: hidden;
    border: 2px solid rgba(220, 20, 60, 0.3);
}

.content-header .user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-image-upload {
    margin-top: 20px;
}

.profile-image-preview {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 15px auto;
    border: 3px solid var(--primary-red);
    background: var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-image-preview .placeholder {
    font-size: 3rem;
    color: var(--text-gray);
}

.file-input-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

.file-input-wrapper input[type=file] {
    position: absolute;
    left: -9999px;
}

.file-input-label {
    display: block;
    padding: 12px;
    background: var(--dark-gray);
    border: 2px dashed var(--medium-gray);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-gray);
}

.file-input-label:hover {
    border-color: var(--primary-red);
    color: var(--text-white);
}

.file-input-label i {
    margin-right: 8px;
    color: var(--primary-red);
}

.file-info {
    margin-top: 10px;
    font-size: 0.75rem;
    color: var(--text-gray);
    text-align: center;
}

.file-info .error {
    color: var(--light-red);
}

/* ===== REDUCED FONT SIZES (COMPACT DESIGN) ===== */
body {
    font-size: 13px;
}

.content-header h1 {
    font-size: 1.3rem !important;
}

.dashboard-card h3 {
    font-size: 0.9rem !important;
}

.dashboard-card p {
    font-size: 0.78rem !important;
}

.welcome-card h2 {
    font-size: 1.3rem !important;
}

.welcome-card .datetime {
    font-size: 0.78rem !important;
}

.form-group label {
    font-size: 0.78rem !important;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-size: 0.82rem !important;
    padding: 8px 12px !important;
}

.btn {
    font-size: 0.82rem !important;
    padding: 8px 16px !important;
}

.content-body {
    padding: 25px 30px !important;
}

.dashboard-card {
    padding: 16px !important;
}

.content-header {
    padding: 16px 28px !important;
}

/* ===== TABLET RESPONSIVE (768px - 1024px) ===== */
@media (max-width: 1024px) and (min-width: 769px) {
    .sidebar {
        width: 220px !important;
    }
    
    .sidebar.collapsed {
        width: 65px !important;
    }
    
    .main-content {
        margin-left: 220px !important;
    }
    
    .main-content.expanded {
        margin-left: 65px !important;
    }
    
    .sidebar-header {
        padding: 20px 15px !important;
    }
    
    .sidebar-header img {
        height: 35px !important;
    }
    
    .sidebar-menu a {
        padding: 10px 15px !important;
    }
    
    .sidebar-menu a span {
        font-size: 0.8rem !important;
    }
    
    .sidebar-menu a i {
        font-size: 1rem !important;
    }
    
    .content-header {
        padding: 18px 25px !important;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .content-header h1 {
        font-size: 1.3rem !important;
    }
    
    .content-body {
        padding: 25px !important;
    }
    
    .dashboard-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
        gap: 22px !important;
    }
    
    .dashboard-card {
        padding: 20px !important;
        min-height: 200px !important;
    }
    
    .dashboard-card h3 {
        font-size: 0.95rem !important;
    }
    
    .form-card {
        padding: 25px !important;
    }
    
    .form-card h2 {
        font-size: 1.4rem !important;
    }
}

/* ===== MOBILE RESPONSIVE (max-width: 768px) ===== */
@media (max-width: 768px) {
    body {
        font-size: 13px;
    }
    
    .sidebar {
        width: 260px !important;
        transform: translateX(-100%);
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .sidebar.collapsed {
        width: 260px !important;
    }
    
    .sidebar-toggle {
        display: none;
    }
    
    .main-content {
        margin-left: 0 !important;
        width: 100% !important;
    }
    
    .main-content.expanded {
        margin-left: 0 !important;
    }
    
    .sidebar-menu a span {
        font-size: 0.8rem !important;
    }
    
    .sidebar-menu a i {
        font-size: 1rem !important;
    }
    
    .content-header {
        padding: 15px 20px !important;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .content-header h1 {
        font-size: 1.2rem !important;
    }
    
    .content-header .user-info {
        width: 100%;
        justify-content: space-between;
    }
    
    .content-body {
        padding: 20px !important;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .dashboard-card {
        padding: 18px !important;
        min-height: 180px !important;
    }
    
    .dashboard-card h3 {
        font-size: 0.95rem !important;
    }
    
    .dashboard-card p {
        font-size: 0.8rem !important;
    }
    
    .welcome-card h2 {
        font-size: 1.3rem !important;
    }
    
    .welcome-card .datetime {
        font-size: 0.8rem !important;
    }
    
    .form-row {
        flex-direction: column !important;
    }
    
    .form-group {
        margin-bottom: 15px !important;
    }
    
    .btn {
        width: 100%;
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
    }
    
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    
    .stat-card {
        padding: 15px !important;
    }
    
    .quick-actions {
        grid-template-columns: 1fr !important;
    }
    
    .action-btn {
        padding: 12px !important;
        font-size: 0.85rem !important;
    }
    
    /* Tabs for mobile */
    .tabs {
        flex-direction: column !important;
        gap: 8px !important;
    }
    
    .tab-btn {
        width: 100%;
        padding: 10px 15px !important;
        font-size: 0.85rem !important;
    }
    
    /* Profile image preview */
    .profile-image-preview {
        width: 100px !important;
        height: 100px !important;
    }
    
    .profile-initials {
        font-size: 1.8rem !important;
    }
    
    /* Theme switcher mobile adjustment */
    .theme-switcher {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start !important;
    }
}

/* ===== SMALL MOBILE (max-width: 480px) ===== */
@media (max-width: 480px) {
    body {
        font-size: 12px;
    }
    
    .content-header {
        padding: 12px 15px !important;
    }
    
    .content-header h1 {
        font-size: 1.1rem !important;
    }
    
    .content-body {
        padding: 15px !important;
    }
    
    .dashboard-card {
        padding: 15px !important;
        min-height: 160px !important;
    }
    
    .dashboard-card h3 {
        font-size: 0.9rem !important;
    }
    
    .dashboard-card p {
        font-size: 0.75rem !important;
    }
    
    .welcome-card h2 {
        font-size: 1.1rem !important;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 8px 12px !important;
        font-size: 0.85rem !important;
    }
    
    .btn {
        padding: 10px 15px !important;
        font-size: 0.85rem !important;
    }
    
    .profile-image-preview {
        width: 80px !important;
        height: 80px !important;
    }
    
    .file-input-wrapper {
        flex-direction: column;
        align-items: stretch !important;
    }
    
    .file-input-wrapper span {
        margin-left: 0 !important;
        margin-top: 8px;
        text-align: center;
    }
}

/* ===== AUTH PAGE RESPONSIVE ===== */
@media (max-width: 1024px) {
    .video-section {
        flex: 0 0 50%;
    }
    
    .form-section {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .auth-container {
        flex-direction: column;
    }
    
    .video-section {
        flex: 1;
        min-height: 200px;
        height: 40vh;
    }
    
    .form-section {
        flex: 1;
        position: relative;
        z-index: 10;
        min-height: 60vh;
    }
    
    .form-card {
        position: static;
        transform: none;
        max-width: 100%;
        margin: 0;
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
    }
    
    .video-overlay h1 {
        font-size: 1.8rem !important;
    }
    
    .video-overlay p {
        font-size: 0.9rem !important;
    }
}

@media (max-width: 480px) {
    .video-section {
        height: 30vh;
    }
    
    .form-section {
        min-height: 70vh;
    }
    
    .form-card {
        padding: 20px !important;
    }
    
    .form-card h2 {
        font-size: 1.2rem !important;
    }
    
    .video-overlay h1 {
        font-size: 1.4rem !important;
    }
    
    .video-overlay p {
        font-size: 0.8rem !important;
    }
}

