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

:root {
    --primary-color: #5b6cf9;
    --primary-dark: #4854e0;
    --secondary-color: #64b5f6;
    --accent-warm: #f093fb;
    --accent-orange: #f5af19;
    --bg-dark: #0d1117;
    --bg-card: #161b22;
    --bg-card-hover: #1f2937;
    --text-primary: #e6edf3;
    --text-secondary: #8b949e;
    --border-color: rgba(139, 148, 158, 0.15);
    --accent-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --card-gradient: linear-gradient(145deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

/* Light Theme */
[data-theme="light"] {
    --bg-dark: #fafbfc;
    --bg-card: #ffffff;
    --bg-card-hover: #f6f8fa;
    --text-primary: #24292f;
    --text-secondary: #57606a;
    --border-color: rgba(0, 0, 0, 0.1);
    --card-gradient: linear-gradient(145deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    transition: background-color 0.4s ease, color 0.4s ease;
    font-weight: 400;
    letter-spacing: -0.01em;
}

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

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(13, 17, 23, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

[data-theme="light"] header {
    background: rgba(250, 251, 252, 0.85);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

nav h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

/* Theme Toggle Button */
.theme-toggle {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.theme-toggle:hover {
    background: var(--bg-card-hover);
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.theme-toggle svg {
    width: 22px;
    height: 22px;
    color: var(--primary-color);
}

.theme-toggle .sun-icon {
    display: none;
}

.theme-toggle .moon-icon {
    display: block;
}

[data-theme="light"] .theme-toggle .sun-icon {
    display: block;
}

[data-theme="light"] .theme-toggle .moon-icon {
    display: none;
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: 0.3s;
}

/* Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(118, 75, 162, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(240, 147, 251, 0.05) 0%, transparent 70%);
    position: relative;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(139, 148, 158, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    opacity: 0.5;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.terminal-container {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    margin-bottom: 2.5rem;
    border: 1px solid var(--border-color);
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'JetBrains Mono', 'Consolas', 'Monaco', monospace;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.terminal-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 32px;
    background: rgba(139, 148, 158, 0.05);
    border-bottom: 1px solid var(--border-color);
}

.terminal-container::after {
    content: '● ● ●';
    position: absolute;
    top: 8px;
    left: 16px;
    font-size: 10px;
    letter-spacing: 6px;
    color: var(--text-secondary);
    opacity: 0.5;
}

[data-theme="light"] .terminal-container {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.terminal-line {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    margin-top: 1.5rem;
}

.prompt {
    color: #7ee787;
}

.command {
    color: var(--text-primary);
}

.cursor {
    animation: blink 1s infinite;
    color: var(--accent-warm);
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.terminal-response {
    color: var(--text-secondary);
    margin-top: 0.8rem;
    min-height: 1.5rem;
    font-size: 0.95rem;
}

.tagline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Sections */
section {
    padding: 6rem 0;
}

section h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3.5rem;
    font-weight: 400;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 4rem;
    align-items: start;
}

.profile-image {
    width: 100%;
    border-radius: 24px;
    border: none;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px var(--border-color);
    transition: transform 0.4s ease;
}

.profile-image:hover {
    transform: scale(1.02) rotate(1deg);
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* Education Badge */
.education-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--card-gradient);
    border: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.education-badge:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.education-badge svg {
    color: var(--primary-color);
}

.education-badge span {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.skill-category {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.skill-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--card-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.skill-category:hover {
    transform: translateY(-4px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.skill-category:hover::before {
    opacity: 1;
}

[data-theme="light"] .skill-category {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .skill-category:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.skill-category h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.skill-category ul {
    list-style: none;
    position: relative;
    z-index: 1;
}

.skill-category li {
    color: var(--text-secondary);
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.skill-category:hover li {
    color: var(--text-primary);
}

.skill-category li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-gradient);
    flex-shrink: 0;
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.project-card {
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

[data-theme="light"] .project-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .project-card:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.project-content {
    padding: 2rem;
}

.project-card.featured .project-content {
    padding-top: 3rem;
}

.project-content h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.project-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.project-technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tech-tag {
    background: var(--bg-card-hover);
    color: var(--text-secondary);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    color: var(--text-primary);
    border-color: var(--primary-color);
}

.project-card.featured {
    background: var(--card-gradient);
    border: 1px solid rgba(102, 126, 234, 0.2);
    position: relative;
}

.project-card.featured:hover {
    border-color: rgba(102, 126, 234, 0.4);
}

.project-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.project-button {
    display: inline-block;
    background: var(--bg-card-hover);
    color: var(--text-primary);
    padding: 0.9rem 1.8rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.project-button:hover {
    background: var(--accent-gradient);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* Connect Section */
.connect-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.connect-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-card);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    text-decoration: none;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.connect-card:hover {
    transform: translateY(-4px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .connect-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .connect-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.connect-card .icon {
    width: 44px;
    height: 44px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.connect-card:hover .icon {
    color: var(--primary-color);
}

.connect-info h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.connect-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

.contact-intro {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 1rem 2rem;
    border-radius: 16px;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-email:hover {
    background: var(--accent-gradient);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.3);
}

/* Footer */
footer {
    background: var(--bg-card);
    padding: 2.5rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-4px);
    background: var(--accent-gradient);
    border-color: transparent;
    color: white;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .theme-toggle {
        position: absolute;
        right: 60px;
        top: 50%;
        transform: translateY(-50%);
        width: 38px;
        height: 38px;
    }

    .theme-toggle:hover {
        transform: translateY(-50%) scale(1.05);
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.5rem;
        display: none;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links.mobile-open {
        display: flex;
    }

    .nav-links a {
        padding: 0.8rem 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .about-image {
        order: -1;
    }

    .profile-image {
        max-width: 280px;
    }

    .tagline {
        font-size: 2.2rem;
    }

    section h2 {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

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

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

    .education-badge {
        justify-content: center;
    }

    #hero::before {
        opacity: 0.3;
    }
}
    }

    .education-badge {
        justify-content: center;
    }
}

/* Animation classes */
section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Achievements Section */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.achievement-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--card-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.achievement-card.featured {
    border-color: rgba(240, 147, 251, 0.3);
    background: linear-gradient(145deg, var(--bg-card) 0%, rgba(118, 75, 162, 0.08) 100%);
}

.achievement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: rgba(102, 126, 234, 0.4);
}

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

.achievement-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-gradient);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.achievement-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
}

.achievement-card.featured .achievement-icon {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border-color: rgba(240, 147, 251, 0.3);
}

.achievement-card.featured .achievement-icon svg {
    color: var(--accent-warm);
}

.achievement-card h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.achievement-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}

.achievement-badge {
    display: inline-block;
    background: var(--bg-card-hover);
    color: var(--text-primary);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.achievement-badge.gold {
    background: linear-gradient(135deg, rgba(245, 175, 25, 0.15) 0%, rgba(241, 196, 15, 0.15) 100%);
    color: var(--accent-orange);
    border-color: rgba(245, 175, 25, 0.3);
}

[data-theme="light"] .achievement-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .achievement-card:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

/* Experience Section */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.experience-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--card-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.experience-card.work {
    border-left: 3px solid #7ee787;
}

.experience-card.cert {
    border-left: 3px solid var(--accent-orange);
}

.experience-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

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

.experience-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}

.experience-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-gradient);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.experience-icon svg {
    width: 24px;
    height: 24px;
    color: var(--text-secondary);
}

.experience-card.work .experience-icon svg {
    color: #7ee787;
}

.experience-card.cert .experience-icon svg {
    color: var(--accent-orange);
}

.experience-type {
    background: var(--bg-card-hover);
    color: var(--text-secondary);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.experience-card h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.experience-card .company {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}

.experience-card .description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}

.experience-badge {
    display: inline-block;
    background: var(--bg-card-hover);
    color: var(--text-primary);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.experience-badge.score {
    background: linear-gradient(135deg, rgba(245, 175, 25, 0.15) 0%, rgba(239, 68, 68, 0.1) 100%);
    color: var(--accent-orange);
    border-color: rgba(245, 175, 25, 0.3);
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
    font-weight: 700;
}

[data-theme="light"] .experience-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .experience-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }
}
