/* ========================================
   MOBILE STYLESHEET - For Mobile Devices Only
   ======================================== */

/* Import the same CSS variables and base styles */
:root {
    /* Colors */
    --navy-dark: #0a1128;
    --navy-medium: #1e2749;
    --navy-light: #34495e;
    --gold-primary: #d4af37;
    --gold-light: #f4d03f;
    --white: #ffffff;
    --white-soft: #ecf0f1;
    --gray-light: #bdc3c7;

    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
}

/* Dark Mode Variables */
body.dark-mode {
    --navy-dark: #0d1117;
    --navy-medium: #161b22;
    --navy-light: #21262d;
    --white: #c9d1d9;
    --white-soft: #8b949e;
    --gray-light: #30363d;
}

/* ========================================
   GLOBAL RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-medium) 100%);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    font-size: 16px;
}

/* ========================================
   LOADING ANIMATION
   ======================================== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.royal-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid var(--navy-light);
    border-top: 3px solid var(--gold-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader-text {
    color: var(--gold-primary);
    font-family: var(--font-serif);
    font-size: 1rem;
    letter-spacing: 2px;
}

/* ========================================
   SCROLL PROGRESS INDICATOR
   ======================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    z-index: 9999;
    transition: width 0.1s ease;
}

/* ========================================
   NAVIGATION BAR - MOBILE OPTIMIZED
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.75rem 4%;
    background: rgba(10, 17, 40, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    padding: 0.5rem 4%;
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-decoration: none;
    letter-spacing: 1px;
    transition: all var(--transition-fast);
}

.logo:hover {
    color: var(--gold-light);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Mobile Menu */
.nav-menu {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgba(10, 17, 40, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 0;
    padding: 2rem 0;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.nav-menu.active {
    left: 0;
}

.nav-menu li {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 1rem;
    display: block;
    transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-primary);
}

.dark-mode-toggle {
    background: transparent;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: all var(--transition-fast);
    margin: 1rem auto;
    display: block;
}

.dark-mode-toggle:hover {
    background: var(--gold-primary);
    color: var(--navy-dark);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gold-primary);
    transition: all var(--transition-fast);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ========================================
   FLOATING BACKGROUND SHAPES - SIMPLIFIED
   ======================================== */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.05;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 150px;
    height: 150px;
    background: var(--gold-primary);
    border-radius: 50%;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 100px;
    height: 100px;
    background: var(--gold-light);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 60%;
    right: 5%;
    animation-delay: 5s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: var(--gold-primary);
    transform: rotate(45deg);
    bottom: 20%;
    left: 10%;
    animation-delay: 10s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

/* ========================================
   HERO SECTION - MOBILE
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 5% 3rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.hero-text h1 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.hero-text .subtitle {
    font-size: 1.2rem;
    color: var(--white-soft);
    margin-bottom: 1rem;
    animation: fadeInUp 1.2s ease;
}

.hero-text .intro {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--gray-light);
    animation: fadeInUp 1.4s ease;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    animation: fadeInUp 1.6s ease;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-medium);
    display: inline-block;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: var(--navy-dark);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
}

.btn-secondary:hover {
    background: var(--gold-primary);
    color: var(--navy-dark);
    transform: translateY(-2px);
}

/* Tech Orbit - Mobile Optimized */
.hero-3d {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    order: -1;
}

.tech-orbit-wrapper {
    width: 280px;
    height: 280px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-core {
    position: absolute;
    width: 90px;
    height: 90px;
    background: radial-gradient(circle at 35% 35%, rgba(244, 208, 63, 0.25), rgba(212, 175, 55, 0.08));
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.5);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4), 0 0 60px rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: corePulse 4s ease-in-out infinite;
    z-index: 5;
}

@keyframes corePulse {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.4), 0 0 60px rgba(212, 175, 55, 0.2);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 50px rgba(212, 175, 55, 0.7), 0 0 90px rgba(212, 175, 55, 0.35);
        transform: scale(1.06);
    }
}

.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-icon {
    position: absolute;
    top: -23px;
    width: 46px;
    height: 46px;
    background: rgba(10, 17, 40, 0.85);
    border: 2px solid rgba(212, 175, 55, 0.45);
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4), 0 0 12px rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-icon svg {
    width: 30px;
    height: 30px;
}

/* Single orbit ring — mobile */
.single-ring {
    position: absolute;
    width: 260px;
    height: 260px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: singleRingRotate 14s linear infinite;
}

.single-ring .orbit-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -23px;
    margin-left: -23px;
}

.single-ring .orbit-icon:nth-child(1) {
    animation: icon0m 14s linear infinite;
}

.single-ring .orbit-icon:nth-child(2) {
    animation: icon90m 14s linear infinite;
}

.single-ring .orbit-icon:nth-child(3) {
    animation: icon180m 14s linear infinite;
}

.single-ring .orbit-icon:nth-child(4) {
    animation: icon270m 14s linear infinite;
}

@keyframes singleRingRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

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

@keyframes icon0m {
    from {
        transform: rotate(0deg) translateY(-110px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateY(-110px) rotate(-300deg);
    }
}

@keyframes icon90m {
    from {
        transform: rotate(90deg) translateY(-110px) rotate(-90deg);
    }

    to {
        transform: rotate(450deg) translateY(-110px) rotate(-390deg);
    }
}

@keyframes icon180m {
    from {
        transform: rotate(180deg) translateY(-110px) rotate(-180deg);
    }

    to {
        transform: rotate(540deg) translateY(-110px) rotate(-480deg);
    }
}

@keyframes icon270m {
    from {
        transform: rotate(270deg) translateY(-110px) rotate(-270deg);
    }

    to {
        transform: rotate(630deg) translateY(-110px) rotate(-570deg);
    }

}

@keyframes ringRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

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

@keyframes iconCounter {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   SECTIONS
   ======================================== */
section {
    padding: 3rem 5%;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--gold-primary);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    margin: 0.75rem auto 0;
}

.container {
    max-width: 100%;
    margin: 0 auto;
}

/* ========================================
   GLASS CARDS
   ======================================== */
.glass-card {
    background: rgba(30, 39, 73, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
    margin-bottom: 1.5rem;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), var(--shadow-gold);
    border-color: var(--gold-primary);
}

.text-center {
    text-align: center;
}

/* ========================================
   TIMELINE (About Page) - MOBILE
   ======================================== */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold-primary);
}

.timeline-item {
    margin-bottom: 2rem;
    position: relative;
    padding-left: 50px;
}

.timeline-content {
    width: 100%;
    background: rgba(30, 39, 73, 0.6);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    transition: all var(--transition-medium);
}

.timeline-content:hover {
    transform: scale(1.02);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.timeline-dot {
    position: absolute;
    left: 11px;
    top: 0;
    width: 18px;
    height: 18px;
    background: var(--gold-primary);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

/* ========================================
   SKILLS PAGE - MOBILE
   ======================================== */
.skills-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.skill-card {
    background: rgba(30, 39, 73, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all var(--transition-medium);
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
    border-color: var(--gold-primary);
}

.skill-card h3 {
    font-family: var(--font-serif);
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.skill-item {
    margin-bottom: 1.5rem;
}

.skill-name {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.skill-bar {
    width: 100%;
    height: 8px;
    background: var(--navy-light);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    border-radius: 10px;
    width: 0;
    transition: width 1.5s ease;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.skill-card.animate .skill-progress {
    width: var(--progress);
}

/* ========================================
   PROJECT CARDS - MOBILE
   ======================================== */
.projects-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.project-card {
    background: rgba(30, 39, 73, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.project-card:hover::before {
    opacity: 1;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
    border-color: var(--gold-primary);
}

.project-card h3 {
    font-family: var(--font-serif);
    color: var(--gold-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.project-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold-light);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

/* ========================================
   CONTACT FORM - MOBILE
   ======================================== */
.contact-container {
    max-width: 100%;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item {
    background: rgba(30, 39, 73, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 1.25rem;
    text-align: center;
    transition: all var(--transition-medium);
}

.contact-item:hover {
    transform: translateY(-3px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-bottom: 0.75rem;
}

.contact-form {
    background: rgba(30, 39, 73, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 2rem 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    background: rgba(10, 17, 40, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

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

/* Flash Messages */
.flash-messages {
    margin-bottom: 1.5rem;
}

.flash {
    padding: 1rem 1.25rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    animation: slideInDown 0.5s ease;
    font-size: 0.95rem;
}

.flash.success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid #4caf50;
    color: #81c784;
}

.flash.error {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid #f44336;
    color: #e57373;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   FOOTER - MOBILE
   ======================================== */
footer {
    background: rgba(10, 17, 40, 0.95);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2rem 5%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 100%;
    margin: 0 auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-link {
    color: var(--gold-primary);
    font-size: 1.3rem;
    transition: all var(--transition-fast);
}

.social-link:hover {
    color: var(--gold-light);
    transform: translateY(-3px);
}

.footer-text {
    color: var(--white-soft);
    font-size: 0.85rem;
}

/* ========================================
   FADE-IN ANIMATION ON SCROLL
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center {
    text-align: center;
}

/* Grid layouts for mobile */
div[style*="grid-template-columns"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
}

/* ========================================
   ADMIN & LOGIN STYLES (Mobile)
   ======================================== */

.admin-wrapper {
    padding: 5rem 1rem 3rem;
}

.admin-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.admin-header h1 {
    font-size: 1.8rem;
}

.admin-logout-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.admin-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
}

.stat-card {
    padding: 1.25rem;
}

.stat-card .stat-num {
    font-size: 2rem;
}

.admin-tabs {
    gap: 0.3rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

.admin-tabs::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.admin-tab-btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    white-space: nowrap;
}

.admin-section {
    padding: 1.5rem;
}

.admin-section h2 {
    font-size: 1.15rem;
}

.admin-form {
    grid-template-columns: 1fr;
    gap: 1.2rem;
}

.btn-add {
    width: 100%;
    align-self: flex-start;
}

.admin-table {
    font-size: 0.85rem;
}

.admin-table th,
.admin-table td {
    padding: 0.75rem 0.6rem;
}

.message-card {
    padding: 1rem;
}

.message-meta {
    flex-direction: column;
    gap: 0.2rem;
}

.admin-login-card {
    padding: 2.5rem 1.5rem;
}

.admin-login-card h1 {
    font-size: 1.7rem;
}