/* MatchMate Dating App Styling */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #E91E63;
    --secondary-color: #9C27B0;
    --success-color: #4CAF50;
    --danger-color: #F44336;
    --warning-color: #FFC107;
    --info-color: #2196F3;
    --light-bg: #F5F5F5;
    --dark-text: #333;
    --border-color: #E0E0E0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: transparent;
    color: var(--dark-text);
    line-height: 1.6;
    min-height: 100vh;
}

/* Authentication Container */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    overflow: visible;
    background: none !important;
}

.auth-container::before {
    display: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

.auth-card {
    background: none;
    border-radius: 0;
    box-shadow: none;
    padding: 80px 30px 60px;
    width: 100%;
    max-width: 500px;
    animation: slideUp 0.7s ease-out;
    position: relative;
    z-index: 10;
    border: none;
    backdrop-filter: none;
    text-align: center;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo Section */
.logo-section {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    z-index: 5;
}

.heart-logo {
    font-size: 60px;
    margin-bottom: 15px;
    animation: heartbeatRomantic 1.2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(255, 107, 157, 0.3));
}

@keyframes heartbeatRomantic {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
    }
    25% { 
        transform: scale(1.15) rotate(-5deg); 
    }
    50% { 
        transform: scale(1.05) rotate(5deg); 
    }
    75% { 
        transform: scale(1.1) rotate(-2deg);
    }
}

.logo-section h1 {
    color: #ff1b6d;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 5px;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(255, 107, 157, 0.2);
}

.tagline {
    color: #c44569;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 8px;
}

.tagline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6b9d, transparent);
    border-radius: 1px;
}

/* Landing Page Styling */
.landing-heading {
    text-align: center;
    color: white;
    font-size: 42px;
    font-weight: 800;
    margin: 40px 0 20px;
    line-height: 1.3;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 5;
}

.landing-subheading {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 50px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 5;
}

.landing-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 50px;
    position: relative;
    z-index: 5;
}

.landing-btn {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.landing-btn.register {
    background: white;
    color: #ff1b6d;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.landing-btn.register:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.landing-btn.login {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff1b6d 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 27, 109, 0.3);
}

.landing-btn.login:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 27, 109, 0.5);
}

.landing-trust {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    margin-top: 40px;
    position: relative;
    z-index: 5;
}

/* Tabs */
.auth-tabs {
    display: none;
    gap: 0;
    margin-bottom: 35px;
    border-bottom: 3px solid #ffe5f0;
    position: relative;
    z-index: 5;
}

.tab-btn {
    flex: 1;
    padding: 16px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    color: #c44569;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
    bottom: -3px;
    letter-spacing: 0.5px;
}

.tab-btn a {
    text-decoration: none;
    color: inherit;
}

.tab-btn.active {
    color: #ff1b6d;
    border-bottom-color: #ff1b6d;
    text-shadow: 0 1px 2px rgba(255, 27, 109, 0.1);
}

.tab-btn:hover {
    color: #ff1b6d;
    transform: translateY(-2px);
}

/* Forms */
.auth-form {
    display: none;
    position: relative;
    z-index: 5;
}

.auth-form.active {
    display: block;
    animation: fadeInScale 0.4s ease-in;
}

.auth-form.active .form-group {
    display: block;
}

.auth-form.active .btn-primary {
    display: inline-block;
    width: 100%;
    margin-top: 20px;
}

.auth-form.active .form-footer {
    display: block;
}

.auth-form .form-group {
    display: block;
}

.auth-form .form-footer {
    display: block;
}

@keyframes fadeInScale {
    from { 
        opacity: 0; 
        transform: scale(0.95);
    }
    to { 
        opacity: 1; 
        transform: scale(1);
    }
}

.form-group {
    margin-bottom: 22px;
    display: block !important;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 12px;
    color: #c44569;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.form-group input {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #ffe5f0;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #fff9fc 0%, #ffedfa 100%);
}

.form-group input:focus {
    outline: none;
    border-color: #ff6b9d;
    box-shadow: 0 0 0 4px rgba(255, 107, 157, 0.15), inset 0 1px 2px rgba(255, 107, 157, 0.1);
    background: linear-gradient(135deg, #fff9fc 0%, #fff3f8 100%);
    transform: translateY(-2px);
}

/* Buttons */
.btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
    z-index: 1;
}

.btn:hover::before {
    left: 100%;
}

.btn > * {
    position: relative;
    z-index: 2;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff1b6d 50%, #e6005c 100%);
    color: white;
    box-shadow: 0 12px 35px rgba(255, 27, 109, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff1b6d 0%, #e6005c 50%, #d90066 100%);
    transform: translateY(-4px);
    box-shadow: 0 16px 45px rgba(255, 27, 109, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 27, 109, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background: #7B1FA2;
}

.btn-success {
    background: var(--success-color);
    color: white;
}

.btn-success:hover {
    background: #388E3C;
}

.btn-danger {
    background: var(--danger-color);
    color: white;
}

.btn-danger:hover {
    background: #D32F2F;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Form Footer */
.form-footer {
    text-align: center;
    margin-top: 25px;
    font-size: 13px;
    color: #888;
    position: relative;
    z-index: 5;
}

.form-footer::before {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff6b9d, transparent);
    margin: 15px auto 15px;
}

.form-footer a {
    color: #ff1b6d;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.form-footer a:hover {
    color: #c44569;
    text-decoration: underline;
}

/* Alerts */
.alert {
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 22px;
    font-size: 14px;
    border-left: 4px solid;
    position: relative;
    z-index: 5;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-error, .alert-danger {
    background: #ffe5e5;
    color: #d32f2f;
    border-left-color: #ff1b6d;
}

.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border-left-color: #4caf50;
}

.alert-info {
    background: #e3f2fd;
    color: #1565c0;
    border-left-color: #ff6b9d;
}

.alert-warning {
    background: #fff3e0;
    color: #e65100;
    border-left-color: #ffc107;
}

/* Dashboard Styles */
.dashboard-container {
    background: var(--light-bg);
    min-height: 100vh;
    padding: 20px;
}

.dashboard-header {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
}

.dashboard-header h2 {
    color: var(--dark-text);
    font-size: 24px;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.profile-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.profile-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    padding: 20px;
}

.profile-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 5px;
}

.profile-meta {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

.profile-bio {
    font-size: 13px;
    color: #777;
    line-height: 1.4;
    margin-bottom: 15px;
}

.profile-actions {
    display: flex;
    gap: 10px;
}

.profile-actions .btn {
    flex: 1;
    padding: 10px;
    font-size: 12px;
    text-transform: capitalize;
}

/* Admin Panel */
.admin-container {
    background: #f5f7fa;
    min-height: 100vh;
}

.admin-sidebar {
    background: #2c3e50;
    color: white;
    width: 250px;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    padding: 20px 0;
}

.admin-sidebar .logo {
    padding: 20px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.admin-sidebar ul {
    list-style: none;
}

.admin-sidebar li {
    margin: 0;
}

.admin-sidebar a {
    display: block;
    padding: 15px 20px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--primary-color);
}

.admin-main {
    margin-left: 250px;
    padding: 30px;
}

.admin-header {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Table Styles */
.table-responsive {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: #f5f5f5;
}

th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--dark-text);
    border-bottom: 2px solid var(--border-color);
}

td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

tr:hover {
    background: #fafafa;
}

/* Chat Styles */
.chat-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 20px;
    height: calc(100vh - 100px);
}

.chat-list {
    background: white;
    border-radius: 8px;
    overflow-y: auto;
}

.chat-window {
    background: white;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.chat-message {
    display: flex;
    margin-bottom: 15px;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-message.sent {
    justify-content: flex-end;
}

.chat-bubble {
    max-width: 70%;
    padding: 12px 15px;
    border-radius: 12px;
}

/* Couple Watermark Styles */
.couple-watermark {
    position: fixed;
    bottom: -120px;
    left: -60px;
    width: 550px;
    height: 550px;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    animation: slowFloat 10s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(255, 27, 109, 0.2));
}

.couple-watermark-photo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.85;
    z-index: 0;
    pointer-events: none;
    filter: grayscale(100%) drop-shadow(0 0 20px rgba(255, 27, 109, 0.15));
    object-fit: cover;
}

@keyframes slowFloat {
    0%, 100% { transform: translateY(0px) rotateZ(-5deg); }
    50% { transform: translateY(-20px) rotateZ(0deg); }
}
    word-wrap: break-word;
}

.chat-message.received .chat-bubble {
    background: #e0e0e0;
    color: #333;
}

.chat-message.sent .chat-bubble {
    background: var(--primary-color);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .auth-card {
        padding: 30px;
        max-width: 100%;
    }
    
    .profile-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .admin-container {
        display: block;
    }
    
    .admin-sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }
    
    .admin-main {
        margin-left: 0;
    }
    
    .chat-container {
        grid-template-columns: 1fr;
    }
    
    .dashboard-header {
        flex-direction: column;
        gap: 15px;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: #999; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.p-20 { padding: 20px; }
.hidden { display: none; }

/* Badge Styles */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-primary {
    background: #E3F2FD;
    color: #1565C0;
}

.badge-success {
    background: #E8F5E9;
    color: #2E7D32;
}

.badge-danger {
    background: #FFEBEE;
    color: #C62828;
}

/* Loading Spinner */
.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================================
   PREMIUM UI UPGRADE - Modern Glassmorphism & Animations
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #E91E63;
    --secondary-color: #9C27B0;
    --gradient-1: linear-gradient(135deg, #ff1b6d 0%, #45caff 100%);
    --gradient-2: linear-gradient(135deg, #E91E63 0%, #9C27B0 100%);
    --gradient-3: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-premium: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
    --glass-bg: rgba(255,255,255,0.15);
    --glass-border: rgba(255,255,255,0.3);
    --card-shadow: 0 20px 60px rgba(233,30,99,0.15);
    --hover-shadow: 0 30px 80px rgba(233,30,99,0.25);
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif !important;
}

/* -- DASHBOARD HEADER UPGRADE -- */
.dashboard-header {
    background: var(--gradient-2) !important;
    color: white !important;
    border-radius: 20px !important;
    padding: 24px 28px !important;
    box-shadow: var(--card-shadow) !important;
    border: none !important;
}
.dashboard-header h2 {
    color: white !important;
    font-weight: 700 !important;
    font-size: 22px !important;
    letter-spacing: 0.3px;
}
.dashboard-header .btn-secondary {
    background: rgba(255,255,255,0.2) !important;
    border: 1px solid rgba(255,255,255,0.4) !important;
    backdrop-filter: blur(10px);
    color: white !important;
    border-radius: 10px !important;
    font-size: 13px !important;
}
.dashboard-header .btn-secondary:hover {
    background: rgba(255,255,255,0.35) !important;
    transform: translateY(-2px);
}
.dashboard-header .btn-danger {
    background: rgba(255,60,60,0.7) !important;
    border: 1px solid rgba(255,150,150,0.4) !important;
    backdrop-filter: blur(10px);
    color: white !important;
    border-radius: 10px !important;
    font-size: 13px !important;
}

/* -- PROFILE CARDS UPGRADE -- */
.profile-card {
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.10) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border: 1px solid rgba(233,30,99,0.08) !important;
    position: relative;
}
.profile-card:hover {
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: var(--hover-shadow) !important;
    border-color: rgba(233,30,99,0.2) !important;
}
.profile-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(180deg, transparent 60%, rgba(233,30,99,0.05) 100%);
    pointer-events: none;
}
.profile-image {
    height: 260px !important;
    border-radius: 0 !important;
    position: relative;
    overflow: hidden;
}
.profile-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(transparent, rgba(0,0,0,0.3));
}
.profile-image img {
    transition: transform 0.6s ease !important;
}
.profile-card:hover .profile-image img {
    transform: scale(1.08) !important;
}
.profile-name {
    font-size: 17px !important;
    font-weight: 700 !important;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.profile-info {
    padding: 16px 18px 18px !important;
}

/* -- SUBSCRIPTION PLAN CARDS -- */
.dashboard-container > div[style*="white"] {
    border-radius: 20px !important;
}

/* Plan card hover upgrade */
div[onmouseover] {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

/* -- BUTTONS UPGRADE -- */
.btn-primary {
    background: var(--gradient-3) !important;
    border-radius: 14px !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 0.8px !important;
    box-shadow: 0 8px 25px rgba(245,87,108,0.5) !important;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #e8008a 0%, #f0306e 100%) !important;
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 14px 35px rgba(245,87,108,0.65) !important;
}

/* -- ALERTS UPGRADE -- */
.alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb) !important;
    border-left: 4px solid #28a745 !important;
    border-radius: 14px !important;
    font-weight: 600 !important;
}
.alert-error, .alert-danger {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb) !important;
    border-left: 4px solid #e91e63 !important;
    border-radius: 14px !important;
    font-weight: 600 !important;
}

/* -- SUBSCRIPTION PAGE -- */
.subscription-plan-header {
    background: var(--gradient-2) !important;
}

/* -- TABLE UPGRADE -- */
table {
    border-collapse: separate !important;
    border-spacing: 0 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
}
table thead tr th {
    background: var(--gradient-2) !important;
    color: white !important;
    padding: 14px 16px !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    letter-spacing: 0.5px;
}
table tbody tr:hover {
    background: rgba(233,30,99,0.04) !important;
}
table tbody tr td {
    padding: 12px 16px !important;
    border-bottom: 1px solid #f5f5f5 !important;
    font-size: 14px !important;
}

/* -- BADGE UPGRADE -- */
.badge {
    padding: 5px 12px !important;
    border-radius: 20px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
}
.badge-success {
    background: linear-gradient(135deg, #43e97b, #38f9d7) !important;
    color: #1a5c3a !important;
}
.badge-danger {
    background: linear-gradient(135deg, #f093fb, #f5576c) !important;
    color: white !important;
}
.badge-warning {
    background: linear-gradient(135deg, #FFD700, #FF8C00) !important;
    color: #5a3200 !important;
}

/* -- PAGE LOADING ANIMATION -- */
@keyframes pageEntrance {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.dashboard-container {
    animation: pageEntrance 0.5s ease-out;
    background: linear-gradient(160deg, #fce4ec 0%, #f3e5f5 50%, #e8eaf6 100%) !important;
}

/* -- MESSAGES PAGE -- */
.chat-bubble {
    border-radius: 18px !important;
    padding: 12px 18px !important;
}
.chat-bubble.sent {
    background: var(--gradient-2) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(233,30,99,0.3) !important;
}

/* -- FORM INPUTS GLOBAL -- */
input[type="text"], input[type="email"], input[type="password"],
input[type="number"], input[type="tel"], textarea, select {
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    font-family: 'Poppins', sans-serif !important;
}
input:focus, textarea:focus, select:focus {
    box-shadow: 0 0 0 3px rgba(233,30,99,0.15) !important;
    border-color: #E91E63 !important;
    outline: none !important;
}

/* -- SCROLLBAR UPGRADE -- */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #fce4ec; border-radius: 3px; }
::-webkit-scrollbar-thumb { background: linear-gradient(#E91E63, #9C27B0); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #E91E63; }

/* -- RESPONSIVE -- */
@media (max-width: 768px) {
    .dashboard-header { padding: 16px 18px !important; }
    .profile-card:hover { transform: translateY(-4px) !important; }
}
