/* Dusty Rose & Beige Elegant Personal Website CSS */
:root {
    --primary-gradient: linear-gradient(135deg, #EDE8D0 0%, #E8E0C7 50%, #E0D5B7 100%);
    --secondary-gradient: linear-gradient(135deg, #DCA1A1 0%, #D49494 100%);
    --accent-gradient: linear-gradient(135deg, #C78B8B 0%, #B97A7A 100%);
    --dusty-rose: linear-gradient(135deg, #DCA1A1 0%, #D49494 100%);
    --light-beige: linear-gradient(135deg, #EDE8D0 0%, #E8E0C7 100%);
    --medium-rose: linear-gradient(135deg, #C78B8B 0%, #B97A7A 100%);
    --dark-rose: linear-gradient(135deg, #A86B6B 0%, #954D4D 100%);
    
    --text-primary: #2C1810;
    --text-secondary: #5A453A;
    --text-light: #ffffff;
    --text-accent: #A86B6B;
    --text-banner: #1A0E08;
    --text-heading: #2C1810;
    
    --card-bg: rgba(255, 255, 255, 0.9);
    --card-border: rgba(220, 161, 161, 0.3);
    --card-shadow: 0 8px 32px rgba(44, 24, 16, 0.12);
    --card-shadow-hover: 0 16px 48px rgba(44, 24, 16, 0.18);
    
    --border-radius: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --primary-gradient: linear-gradient(135deg, #1a1612 0%, #2a2621 50%, #3d3730 100%) !important;
        --secondary-gradient: linear-gradient(135deg, #DCA1A1 0%, #D49494 100%) !important;
        --accent-gradient: linear-gradient(135deg, #C78B8B 0%, #B97A7A 100%) !important;
        --dusty-rose: linear-gradient(135deg, #DCA1A1 0%, #D49494 100%) !important;
        --light-beige: linear-gradient(135deg, #3d3730 0%, #332f28 100%) !important;
        --medium-rose: linear-gradient(135deg, #C78B8B 0%, #B97A7A 100%) !important;
        --dark-rose: linear-gradient(135deg, #A86B6B 0%, #954D4D 100%) !important;
        
        --text-primary: #f0e6d2 !important;
        --text-secondary: #d4c4a8 !important;
        --text-light: #ffffff !important;
        --text-accent: #DCA1A1 !important;
        --text-banner: #f5f0e8 !important;
        --text-heading: #f0e6d2 !important;
        
        --card-bg: rgba(45, 39, 32, 0.9) !important;
        --card-border: rgba(220, 161, 161, 0.4) !important;
        --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
        --card-shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.4) !important;
    }
    
    /* Dark mode body and background */
    body {
        background: linear-gradient(135deg, #1a1612 0%, #2a2621 50%, #3d3730 100%) !important;
        color: #f0e6d2 !important;
    }
    
    body::before {
        background: 
            radial-gradient(circle at 20% 50%, rgba(26, 22, 18, 0.9) 0%, transparent 60%),
            radial-gradient(circle at 80% 20%, rgba(220, 161, 161, 0.1) 0%, transparent 60%),
            radial-gradient(circle at 50% 80%, rgba(199, 139, 139, 0.08) 0%, transparent 70%),
            radial-gradient(circle at 30% 30%, rgba(168, 107, 107, 0.05) 0%, transparent 60%) !important;
    }
    
    /* Dark mode navbar */
    .navbar {
        background: rgba(26, 22, 18, 0.95) !important;
        backdrop-filter: blur(20px);
    }
    
    /* Dark mode banner */
    .banner-header {
        background: rgba(26, 22, 18, 0.8) !important;
    }
    
    .banner-header::before {
        background: linear-gradient(135deg, rgba(220, 161, 161, 0.03) 0%, rgba(199, 139, 139, 0.03) 100%) !important;
    }
    
    /* Dark mode mobile menu */
    .nav-menu {
        background: rgba(26, 22, 18, 0.98) !important;
    }
    
    /* Ensure all text elements are visible */
    .banner-title,
    .banner-subtitle,
    .banner-description,
    .section-title,
    h1, h2, h3, h4, h5, h6,
    p, span, div {
        color: var(--text-primary) !important;
    }
    
    .banner-subtitle {
        color: var(--text-accent) !important;
    }
    
    .banner-description {
        color: var(--text-secondary) !important;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Times New Roman', Times, serif;
    background: var(--primary-gradient);
    min-height: 100vh;
    color: var(--text-primary);
    line-height: 1.7;
    position: relative;
    overflow-x: hidden;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    color: var(--text-heading);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 { 
    font-size: 3.5rem; 
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

h2 { 
    font-size: 2.5rem; 
    font-weight: 700;
}

h3 { 
    font-size: 1.8rem; 
    font-weight: 600;
}

h4 { 
    font-size: 1.4rem; 
    font-weight: 600;
}

p, span, div {
    font-family: 'Times New Roman', Times, serif;
}

/* Animated dusty rose & beige background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(237, 232, 208, 0.7) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(220, 161, 161, 0.4) 0%, transparent 60%),
        radial-gradient(circle at 50% 80%, rgba(199, 139, 139, 0.3) 0%, transparent 70%),
        radial-gradient(circle at 30% 30%, rgba(168, 107, 107, 0.2) 0%, transparent 60%);
    z-index: -1;
    animation: elegantFloat 25s ease-in-out infinite;
}

@keyframes elegantFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.8;
    }
    33% { 
        transform: translateY(-15px) scale(1.02);
        opacity: 0.9;
    }
    66% { 
        transform: translateY(10px) scale(0.98);
        opacity: 0.7;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    position: relative;
    z-index: 1;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
    z-index: 9999;
    padding: 12px 0;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-banner);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--text-accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--text-accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

body {
    padding-top: 70px;
}

/* Banner Header Section */
.banner-header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
    padding: 40px 0;
    margin-bottom: 60px;
    position: relative;
}

.banner-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 234, 167, 0.1) 0%, rgba(253, 203, 110, 0.1) 100%);
    z-index: -1;
}

.banner-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 32px;
    max-width: 1000px;
}

.banner-info {
    max-width: 600px;
}

.banner-title {
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--text-banner);
    margin-bottom: 16px;
    line-height: 1.1;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.01em;
    font-style: italic;
}

.banner-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-accent);
    margin-bottom: 20px;
}

.banner-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 550px;
}

.banner-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
}

.banner-btn.primary {
    background: var(--dusty-rose);
    color: white;
    box-shadow: 0 4px 20px rgba(220, 161, 161, 0.4);
}

.banner-btn.secondary {
    background: rgba(255, 255, 255, 0.4);
    color: var(--text-primary);
    border: 1px solid var(--card-border);
}

.banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.banner-btn.primary:hover {
    box-shadow: 0 8px 30px rgba(220, 161, 161, 0.5);
}

.banner-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 20px 60px rgba(220, 161, 161, 0.4);
    transition: var(--transition);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.profile-photo:hover {
    transform: translateY(-8px) rotate(5deg);
    box-shadow: 0 30px 80px rgba(220, 161, 161, 0.5);
}

.avatar-placeholder {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--dusty-rose);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3.5rem;
    box-shadow: 0 20px 60px rgba(220, 161, 161, 0.4);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.avatar-placeholder:hover {
    transform: translateY(-8px) rotate(5deg);
    box-shadow: 0 30px 80px rgba(220, 161, 161, 0.5);
}

/* Main Content Layout */
.main-content {
    padding: 60px 0;
}

.section-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-heading);
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.08);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--dusty-rose);
    border-radius: 2px;
}

/* About Section */
.about-section {
    margin-bottom: 80px;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.about-text p {
    margin-bottom: 20px;
}

.quick-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.stat-item {
    background: var(--card-bg);
    padding: 24px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(15px);
    border: 1px solid var(--card-border);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
    background: rgba(255, 255, 255, 0.2);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-accent);
    margin-bottom: 8px;
}

.stat-item p {
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

/* Experience Section */
.experience-section {
    margin-bottom: 80px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--dusty-rose);
    border-radius: 1.5px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 80px;
}

.timeline-marker {
    position: absolute;
    left: 18px;
    top: 8px;
    width: 24px;
    height: 24px;
    background: var(--dusty-rose);
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 20px rgba(220, 161, 161, 0.5);
    backdrop-filter: blur(10px);
}

.timeline-content {
    background: var(--card-bg);
    padding: 28px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(15px);
    border: 1px solid var(--card-border);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateX(8px);
    box-shadow: var(--card-shadow-hover);
    background: rgba(255, 255, 255, 0.2);
}

.timeline-content h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.timeline-content h4 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-accent);
    margin-bottom: 8px;
}

.duration {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 16px;
    padding: 4px 12px;
    background: rgba(176, 106, 179, 0.1);
    border-radius: 20px;
    display: inline-block;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Skills Section */
.skills-section {
    margin-bottom: 80px;
}

/* Projects Section */
.projects-section {
    margin-bottom: 80px;
}

.skills-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.skill-category {
    background: var(--card-bg);
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(15px);
    border: 1px solid var(--card-border);
    transition: var(--transition);
}

.skill-category:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.skill-category h4 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.skill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-badge {
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.skill-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.skill-badge.expert {
    background: var(--dusty-rose);
    color: white;
}

.skill-badge.advanced {
    background: var(--light-beige);
    color: var(--text-primary);
}

.skill-badge.intermediate {
    background: var(--medium-rose);
    color: white;
}

/* Projects Section */
.projects-section {
    /* Inherits from grid */
}

.projects-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.project-card {
    background: var(--card-bg);
    padding: 28px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(15px);
    border: 1px solid var(--card-border);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
    background: rgba(255, 255, 255, 0.2);
}

.project-card h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.project-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-badge {
    background: var(--light-beige);
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.tech-badge:hover {
    transform: scale(1.05);
    background: var(--dusty-rose);
    color: white;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item i {
    font-size: 1.2rem;
    margin-right: 12px;
    color: #667eea;
    width: 20px;
}

.contact-item span {
    color: var(--text-primary);
    font-weight: 500;
}

/* Footer */
.footer-section {
    text-align: center;
    animation: slideInUp 0.8s ease-out 0.8s backwards;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 400;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 40px 30px;
    }
    
    .banner-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        justify-items: center;
        max-width: none;
    }
    
    .banner-title {
        font-size: 3.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .skills-section,
    .projects-section {
        margin-bottom: 60px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        left: 8px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 30px 20px;
    }
    
    .navbar .container {
        padding: 0 20px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 60px;
        gap: 40px;
        transition: left 0.3s ease;
        z-index: 9998;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .banner-header {
        padding: 30px 0;
    }
    
    .banner-title {
        font-size: 3rem;
    }
    
    .banner-subtitle {
        font-size: 1.3rem;
    }
    
    .banner-description {
        font-size: 1rem;
    }
    
    .banner-actions {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .profile-photo,
    .avatar-placeholder {
        width: 160px;
        height: 160px;
    }
    
    .avatar-placeholder {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-marker {
        left: 3px;
        width: 20px;
        height: 20px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .quick-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .stat-item {
        padding: 16px;
    }
    
    .stat-item h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 16px;
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
    
    .banner-subtitle {
        font-size: 1.1rem;
    }
    
    .banner-actions {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .banner-btn {
        width: 100%;
        justify-content: center;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .avatar-placeholder {
        width: 100px;
        height: 100px;
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .quick-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
    }
    
    .timeline-content h4 {
        font-size: 1rem;
    }
    
    .skill-category, .project-card, .timeline-content {
        padding: 16px;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    body::before {
        animation: none;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --card-bg: rgba(255, 255, 255, 0.1);
        --text-primary: #ecf0f1;
        --text-secondary: #bdc3c7;
    }
    
    .link-card {
        background: var(--card-bg);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .link-content h3 {
        color: var(--text-primary);
    }
}

/* Print styles */
@media print {
    body {
        background: white !important;
        color: black !important;
    }
    
    body::before {
        display: none;
    }
    
    .link-card {
        background: white !important;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        break-inside: avoid;
    }
    
    .profile-name, .profile-title, .profile-bio {
        color: black !important;
        text-shadow: none !important;
    }
}
