
        :root {
            --primary: #0a192f;
            --secondary: #172a45;
            --accent: #64ffda;
            --text: #ccd6f6;
            --text-secondary: #8892b0;
            --bg-light: #233554;
            --transition: all 0.25s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        body {
            background-color: var(--primary);
            color: var(--text);
            line-height: 1.6;
        }

        h1, h2, h3, h4 {
            color: var(--text);
            margin-bottom: 1rem;
        }

        a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }

        a:hover {
            opacity: 0.8;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(10, 25, 47, 0.9);
            backdrop-filter: blur(10px);
            z-index: 100;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

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

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--accent);
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 40px;
        }

        .nav-links a {
            color: var(--text);
            font-weight: 500;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--accent);
            transition: var(--transition);
        }

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

        .hamburger {
            display: none;
            cursor: pointer;
        }

        .bar {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px 0;
            background-color: var(--text);
            transition: var(--transition);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
        }

        .hero-content {
            width: 100%;
        }

        .hero-greeting {
            color: var(--accent);
            font-size: 18px;
            margin-bottom: 20px;
        }

        .hero-title {
            font-size: 70px;
            font-weight: 700;
            margin-bottom: 10px;
            line-height: 1.1;
        }

        .hero-subtitle {
            font-size: 50px;
            font-weight: 700;
            color: var(--text-secondary);
            margin-bottom: 25px;
        }

        .hero-description {
            max-width: 600px;
            color: var(--text-secondary);
            font-size: 18px;
            margin-bottom: 50px;
        }

        .cta-btn {
            display: inline-block;
            padding: 15px 30px;
            background-color: transparent;
            border: 1px solid var(--accent);
            color: var(--accent);
            font-weight: 500;
            border-radius: 4px;
            transition: var(--transition);
        }

        .cta-btn:hover {
            background-color: rgba(100, 255, 218, 0.1);
            transform: translateY(-3px);
        }

        /* Sections Common Styles */
        section {
            padding: 100px 0;
        }

        .section-title {
            display: flex;
            align-items: center;
            font-size: 28px;
            margin-bottom: 40px;
            color: var(--text);
        }

        .section-title::after {
            content: '';
            display: block;
            height: 1px;
            width: 300px;
            background-color: var(--bg-light);
            margin-left: 20px;
        }

        .section-title span {
            color: var(--accent);
            margin-right: 10px;
        }

        /* About */
        .about-content {
            display: grid;
            grid-template-columns: 3fr 2fr;
            gap: 50px;
            align-items: center;
        }

        .about-text p {
            color: var(--text-secondary);
            margin-bottom: 20px;
        }

        .skills-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-top: 20px;
        }

        .skills-list li {
            color: var(--text-secondary);
            list-style: none;
            position: relative;
            padding-left: 25px;
        }

        .skills-list li::before {
            content: '▹';
            position: absolute;
            left: 0;
            color: var(--accent);
        }

        .about-image {
            position: relative;
            max-width: 300px;
            border-radius: 5px;
            filter: grayscale(100%) contrast(1.2);
            transition: var(--transition);
            margin: 0 auto;
        }

        .about-image:hover {
            filter: none;
        }

        .image-wrapper {
            position: relative;
            width: 300px;
            height: 300px;
            margin: 0 auto;
        }

        .image-wrapper::after {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--accent);
            border-radius: 5px;
            z-index: -1;
            transition: var(--transition);
        }

        .image-wrapper:hover::after {
            top: 15px;
            left: 15px;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            border-radius: 5px;
            object-fit: cover;
        }

        /* Skills */
        .skills-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .skills-intro {
            color: var(--text-secondary);
            font-size: 16px;
            max-width: 700px;
            margin-bottom: 30px;
            margin-top: -20px;
            line-height: 1.6;
        }

        .skills-category {
            background-color: var(--secondary);
            padding: 25px;
            border-radius: 5px;
            border-left: 3px solid var(--accent);
            transition: var(--transition);
        }

        .skills-category:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(100, 255, 218, 0.1);
        }

        .skills-category-title {
            color: var(--accent);
            font-size: 18px;
            margin-bottom: 15px;
            font-weight: 600;
        }

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

        .skill-tag {
            background-color: rgba(100, 255, 218, 0.1);
            color: var(--accent);
            padding: 8px 12px;
            border-radius: 20px;
            font-size: 14px;
            border: 1px solid rgba(100, 255, 218, 0.3);
            transition: var(--transition);
            display: inline-block;
        }

        .skill-tag:hover {
            background-color: rgba(100, 255, 218, 0.2);
            border-color: var(--accent);
        }

        /* Experience */
        .experience-tabs {
            display: flex;
        }

        .tab-buttons {
            display: flex;
            flex-direction: column;
            border-left: 2px solid var(--bg-light);
            margin-right: 30px;
        }

        .tab-btn {
            padding: 15px 20px;
            border: none;
            background: transparent;
            color: var(--text-secondary);
            text-align: left;
            font-size: 16px;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
        }

        .tab-btn.active {
            color: var(--accent);
        }

        .tab-btn.active::before {
            content: '';
            position: absolute;
            left: -2px;
            width: 2px;
            height: 100%;
            background-color: var(--accent);
        }

        .tab-content {
            display: none;
            padding: 20px;
        }

        .tab-content.active {
            display: block;
        }

        .job-title {
            font-size: 22px;
            color: var(--text);
            margin-bottom: 5px;
        }

        .job-company {
            color: var(--accent);
            margin-bottom: 10px;
        }

        .job-duration {
            color: var(--text-secondary);
            font-size: 14px;
            margin-bottom: 20px;
        }

        .job-duties {
            color: var(--text-secondary);
        }

        .job-duties li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 10px;
            list-style: none;
        }

        .job-duties li::before {
            content: '▹';
            position: absolute;
            left: 0;
            color: var(--accent);
        }

        /* Projects */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }

        .project-card {
            position: relative;
            background-color: var(--secondary);
            border-radius: 5px;
            padding: 30px;
            transition: var(--transition);
        }

        .project-card:hover {
            transform: translateY(-5px);
        }

        .project-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .folder-icon {
            color: var(--accent);
            font-size: 40px;
        }

        .project-links a {
            margin-left: 15px;
            color: var(--text);
            font-size: 20px;
        }

        .project-title {
            font-size: 22px;
            margin-bottom: 10px;
        }

        .project-description {
            color: var(--text-secondary);
            margin-bottom: 20px;
        }

        .project-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            list-style: none;
        }

        .project-tech li {
            color: var(--text-secondary);
            font-size: 14px;
        }

        /* Education */
        .education {
            margin-bottom: 80px;
        }

        .education-item {
            margin-bottom: 40px;
            position: relative;
            padding-left: 30px;
            border-left: 2px solid var(--bg-light);
        }

        .education-item::before {
            content: '';
            position: absolute;
            left: -10px;
            top: 0;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background-color: var(--accent);
        }

        .education-date {
            color: var(--accent);
            font-size: 14px;
            margin-bottom: 5px;
        }

        .education-degree {
            font-size: 20px;
            margin-bottom: 5px;
            color: var(--text);
        }

        .education-institution {
            font-size: 16px;
            color: var(--text-secondary);
            margin-bottom: 10px;
        }

        .education-description {
            color: var(--text-secondary);
        }

        /* Contact */
        .contact-content {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        .contact-title {
            font-size: 22px;
            color: var(--accent);
            margin-bottom: 20px;
        }

        .contact-description {
            color: var(--text-secondary);
            margin-bottom: 40px;
        }

        .contact-btn {
            display: inline-block;
            padding: 18px 30px;
            background-color: transparent;
            border: 1px solid var(--accent);
            color: var(--accent);
            font-weight: 500;
            border-radius: 4px;
            transition: var(--transition);
        }

        .contact-btn:hover {
            background-color: rgba(100, 255, 218, 0.1);
            transform: translateY(-3px);
        }

        /* Footer */
        footer {
            padding: 20px 0 30px;
            text-align: center;
            color: var(--text-secondary);
        }

        .social-links {
            display: flex;
            justify-content: center;
            list-style: none;
            margin-bottom: 20px;
        }

        .social-links li {
            margin: 0 15px;
        }

        .social-links a {
            color: var(--text);
            font-size: 22px;
            transition: var(--transition);
        }

        .social-links a:hover {
            color: var(--accent);
            transform: translateY(-3px);
        }

        .footer-text {
            font-size: 14px;
        }

        .footer-text a {
            color: var(--accent);
        }

        /* Responsive */
        @media (max-width: 991px) {
            .hero-title {
                font-size: 60px;
            }
            
            .hero-subtitle {
                font-size: 40px;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .image-wrapper {
                margin-top: 50px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                flex-direction: column;
                background-color: var(--secondary);
                width: 100%;
                text-align: center;
                transition: var(--transition);
                padding: 20px 0;
            }

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

            .nav-links li {
                margin: 15px 0;
            }

            .hamburger {
                display: block;
            }

            .hamburger.active .bar:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active .bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }

            .hamburger.active .bar:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }

            .hero-title {
                font-size: 40px;
            }
            
            .hero-subtitle {
                font-size: 30px;
            }

            .section-title::after {
                width: 150px;
            }

            .projects-grid {
                grid-template-columns: 1fr;
            }

            .tab-buttons {
                flex-direction: row;
                overflow-x: auto;
                margin-right: 0;
                margin-bottom: 30px;
                border-left: none;
                border-bottom: 2px solid var(--bg-light);
            }

            .tab-btn.active::before {
                left: 0;
                bottom: -2px;
                width: 100%;
                height: 2px;
            }

            .experience-tabs {
                flex-direction: column;
            }

            .skills-content {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .hero-greeting {
                font-size: 16px;
            }

            .hero-title {
                font-size: 32px;
            }
            
            .hero-subtitle {
                font-size: 24px;
            }

            .section-title {
                font-size: 24px;
            }

            .section-title::after {
                width: 100px;
            }
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

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

        /* Scroll Bar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--primary);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--bg-light);
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--accent);
        }

        /* Dark Mode Toggle */
        .dark-mode-toggle {
            margin-left: 20px;
            cursor: pointer;
            font-size: 20px;
            color: var(--text);
        }

        /* ============================================
   CSS ADDITIONS FOR PORTFOLIO
   Add these to your existing PHP.css file
   ============================================ */

/* ============================================
   ACCESSIBILITY UTILITIES
   ============================================ */

/* Skip to Main Content Link */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color, #64ffda);
    color: var(--bg-color, #0a192f);
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 600;
    z-index: 100;
    border-radius: 0 0 4px 0;
}

.skip-to-main:focus {
    top: 0;
    outline: 2px solid var(--primary-color, #64ffda);
    outline-offset: 2px;
}

/* Screen Reader Only Content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus Visible (Better than :focus for accessibility) */
*:focus-visible {
    outline: 2px solid var(--primary-color, #64ffda);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Remove outline for mouse users */
*:focus:not(:focus-visible) {
    outline: none;
}

/* ============================================
   HEADER SCROLL EFFECTS
   ============================================ */

header {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
    box-shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.7);
    background-color: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
}

/* ============================================
   NO SCROLL (MOBILE MENU OPEN)
   ============================================ */

body.no-scroll {
    overflow: hidden;
    height: 100vh;
}

/* ============================================
   FADE IN ANIMATIONS
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Staggered animation delays */
.fade-in:nth-child(1) { transition-delay: 0.1s; }
.fade-in:nth-child(2) { transition-delay: 0.2s; }
.fade-in:nth-child(3) { transition-delay: 0.3s; }
.fade-in:nth-child(4) { transition-delay: 0.4s; }
.fade-in:nth-child(5) { transition-delay: 0.5s; }
.fade-in:nth-child(6) { transition-delay: 0.6s; }

/* ============================================
   ACTIVE NAVIGATION LINK
   ============================================ */

.nav-links a {
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a.active {
    color: var(--primary-color, #64ffda);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color, #64ffda);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* ============================================
   IMPROVED HAMBURGER MENU
   ============================================ */

.hamburger {
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 10px;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger:hover {
    opacity: 0.7;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color, #64ffda);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* ============================================
   MOBILE NAVIGATION IMPROVEMENTS
   ============================================ */

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--bg-color, #0a192f);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    /* Staggered menu item animations */
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.6s; }
}

/* ============================================
   TAB NAVIGATION IMPROVEMENTS
   ============================================ */

.tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(100, 255, 218, 0.1);
}

.tab-btn {
    padding: 10px 20px;
    background: transparent;
    border: none;
    color: var(--text-secondary, #8892b0);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

.tab-btn:hover {
    color: var(--primary-color, #64ffda);
    background-color: rgba(100, 255, 218, 0.1);
}

.tab-btn.active {
    color: var(--primary-color, #64ffda);
    border-bottom-color: var(--primary-color, #64ffda);
}

.tab-btn:focus-visible {
    outline: 2px solid var(--primary-color, #64ffda);
    outline-offset: 2px;
}

/* ============================================
   PROJECT CARDS HOVER EFFECTS
   ============================================ */

.project-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-card:focus-within {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    outline: 2px solid var(--primary-color, #64ffda);
    outline-offset: 2px;
}

/* ============================================
   IMPROVED LINK STYLES
   ============================================ */

a {
    transition: color 0.3s ease;
}

a:focus-visible {
    outline: 2px solid var(--primary-color, #64ffda);
    outline-offset: 2px;
    border-radius: 2px;
}

/* External link icon */
.project-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.project-links a:hover {
    background-color: rgba(100, 255, 218, 0.1);
    transform: translateY(-3px);
}

/* ============================================
   BUTTON IMPROVEMENTS
   ============================================ */

.cta-btn,
.contact-btn {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid var(--primary-color, #64ffda);
    color: var(--primary-color, #64ffda);
    background-color: transparent;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-btn::before,
.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color, #64ffda);
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-btn:hover::before,
.contact-btn:hover::before {
    left: 0;
}

.cta-btn:hover,
.contact-btn:hover {
    color: var(--bg-color, #0a192f);
}

.cta-btn:focus-visible,
.contact-btn:focus-visible {
    outline: 2px solid var(--primary-color, #64ffda);
    outline-offset: 4px;
}

/* ============================================
   LOADING STATE
   ============================================ */

body:not(.loaded) {
    opacity: 0;
}

body.loaded {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* ============================================
   IMAGE LOADING
   ============================================ */

img {
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded,
img[loading="lazy"][src] {
    opacity: 1;
}

/* ============================================
   FOOTER IMPROVEMENTS
   ============================================ */

footer {
    padding: 40px 0 20px;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(100, 255, 218, 0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color, #64ffda);
    color: var(--bg-color, #0a192f);
    transform: translateY(-5px);
}

.footer-text {
    color: var(--text-secondary, #8892b0);
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-copyright {
    color: var(--text-secondary, #8892b0);
    font-size: 12px;
    opacity: 0.7;
}

/* ============================================
   RESPONSIVE IMPROVEMENTS
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .image-wrapper {
        justify-self: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section-title {
        font-size: 24px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .tab-buttons {
        flex-direction: column;
        border-bottom: none;
        border-left: 2px solid rgba(100, 255, 218, 0.1);
    }

    .tab-btn {
        text-align: left;
        border-bottom: none;
        border-left: 2px solid transparent;
        margin-bottom: 0;
        margin-left: -2px;
    }

    .tab-btn.active {
        border-left-color: var(--primary-color, #64ffda);
        border-bottom-color: transparent;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .cta-btn,
    .contact-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    header,
    .hamburger,
    .social-links {
        display: none;
    }

    body {
        font-size: 12pt;
    }

    a[href^="http"]::after {
        content: " (" attr(href) ")";
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================
   DARK MODE SUPPORT (Optional)
   ============================================ */

@media (prefers-color-scheme: light) {
    /* Add light mode styles if needed */
    /* This is optional - most DevOps portfolios use dark themes */
}

/* ============================================
   HIGH CONTRAST MODE
   ============================================ */

@media (prefers-contrast: high) {
    * {
        border-width: 2px !important;
    }

    .cta-btn,
    .contact-btn {
        border-width: 3px !important;
    }
}