@font-face {
    font-family: 'Monument';
    src: url('/fonts/Monument.otf') format('opentype');
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.65);
    --text-tertiary: rgba(255, 255, 255, 0.45);
    --accent-green: #00ff41;
    --accent-green-dim: rgba(0, 255, 65, 0.7);
}

body {
    background-color: var(--bg-color);
    background-image: 
        linear-gradient(to bottom,
            rgba(255, 255, 255, 0.3) 1px,
            transparent 1px),
        linear-gradient(to right,
            rgba(255, 255, 255, 0.3) 1px,
            transparent 1px);
    background-size: 35px 35px;
    color: var(--text-color);
    font-family: 'Monument', sans-serif;
    transition: background-color 0.5s ease, color 0.5s ease;
}

body.home-page {
    overflow-x: hidden;
    overflow-y: auto;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.6) 25%,
        rgba(0, 0, 0, 0.9) 75%,
        rgba(0, 0, 0, 0.98) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.container, .header {
    position: relative;
    z-index: 2;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 3rem;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 0.8rem 3rem;
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-green);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-green);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--accent-green);
}

.nav-link.active::after {
    width: 100%;
}

.header-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.logo {
    position: static;
    font-size: 1.5rem;
    letter-spacing: 1.5px;
    text-decoration: none;
    user-select: none;
    transition: all 0.3s ease;
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.logo a:hover {
    text-decoration: none;
}

.logo .solid {
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo .outline {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--accent-green);
    transition: all 0.3s ease;
}

.logo a:hover .solid {
    color: var(--accent-green);
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

.logo a:hover .outline {
    -webkit-text-stroke: 1.5px #00ff41;
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
}

.right-section {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-right: 4rem;
}

.right-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -13%;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at right,
        rgba(0, 255, 0, 0.05) 0%,
        rgba(0, 255, 0, 0.02) 25%,
        rgba(0, 255, 0, 0) 50%
    );
    z-index: 1;
}

.profile-image {
    height: 500px;
    width: 500px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--accent-green);
    box-shadow: 0 0 50px rgba(0, 255, 65, 0.5);
    opacity: 0;
    animation: fadeIn 4.5s ease forwards;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
    position: relative;
    z-index: 2;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.left-section {
    max-width: 650px;
    opacity: 0;
    animation: slideIn 1s ease forwards;
    animation-delay: 0.5s;
    margin-left: 4rem;
    padding: 3rem;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.bio {
    font-family: 'Inter', sans-serif;
}

.bio h2 {
    font-family: 'Monument', sans-serif;
    font-size: 4.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
    position: relative;
    display: inline-block;
}

.bio h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-green) 0%, transparent 100%);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

.bio p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    margin-top: 2rem;
    color: var(--accent-green);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    position: relative;
    display: inline-block;
}

.bio p::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-green);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.6);
}

.bio .description {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 520px;
    font-weight: 400;
    letter-spacing: 0.3px;
    font-family: 'Inter', sans-serif;
}

.language-switch {
    user-select: none;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-family: 'Monument', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: -5px;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.lang-separator {
    margin: 0 0.3rem;
    opacity: 0.5;
}

.bio h2, .bio p, .bio .description {
    transition: opacity 0.5s ease;
}

.fade-out {
    opacity: 0 !important;
}

.fade-in {
    opacity: 1 !important;
}

.header-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.lang-btn, .theme-btn {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.lang-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-family: 'Monument', sans-serif;
    font-size: 0.8rem;
    cursor: pointer;
    color: #fff;
}

.lang-btn:hover, .theme-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.theme-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
}

.theme-btn:hover .moon-icon {
    transform: rotate(-20deg);
}

body.light-theme .header {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

body.light-theme .header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

body.light-theme .logo .solid {
    color: #000000;
}

body.light-theme .logo .outline {
    -webkit-text-stroke: 1.5px #00cc00;
}

body.light-theme .logo a:hover .solid {
    color: #00cc00;
    text-shadow: 0 0 20px rgba(0, 204, 0, 0.5);
}

body.light-theme .logo a:hover .outline {
    -webkit-text-stroke: 1.5px #00dd00;
    text-shadow: 0 0 20px rgba(0, 204, 0, 0.5);
}

body.light-theme .lang-btn,
body.light-theme .theme-btn {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: #000;
}

body.light-theme .lang-btn:hover,
body.light-theme .theme-btn:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.15);
}

.theme-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.theme-btn .moon-icon {
    transition: all 0.3s ease;
}

.theme-btn:hover .moon-icon {
    transform: rotate(-45deg);
}

.bio h2:hover {
    transform: translateX(5px);
    transition: all 0.3s ease;
    text-shadow: 0 0 60px rgba(255, 255, 255, 0.2);
}

.bio p:hover {
    letter-spacing: 4px;
    text-shadow: 0 0 30px rgba(0, 255, 65, 0.6);
    transition: all 0.3s ease;
}

.bio .description:hover {
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
}

body {
    transition: background-color 0.5s ease, color 0.5s ease;
}

.sun-icon, .moon-icon {
    transition: transform 0.3s ease, display 0.3s ease;
}

body:not([data-theme="dark"]) .lang-btn:hover,
body:not([data-theme="dark"]) .theme-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

body::before {
    transition: background 0.5s ease;
}

body.light-theme {
    background-image: 
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.35) 1px,
            transparent 1px),
        linear-gradient(to right,
            rgba(0, 0, 0, 0.35) 1px,
            transparent 1px);
    background-size: 35px 35px;
}

body.light-theme::before {
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 35%,
        rgba(255, 255, 255, 0.7) 65%,
        rgba(255, 255, 255, 0.85) 100%
    );
}

body.light-theme .logo .solid {
    color: #000000;
}

body.light-theme .logo .outline {
    -webkit-text-stroke: 1px #00cc00;
}

body.light-theme .right-section::before {
    background: radial-gradient(
        circle at right,
        rgba(0, 200, 0, 0.1) 0%,
        rgba(0, 200, 0, 0.05) 25%,
        rgba(0, 200, 0, 0) 50%
    );
}

.theme-btn {
    position: relative;
    overflow: hidden;
}

.sun-icon, .moon-icon {
    position: absolute;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.bio-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    position: relative;
}

.bio-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1.1rem 2.2rem;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-transform: uppercase;
}

.projects-btn {
    background: var(--accent-green);
    border: 1px solid var(--accent-green);
    color: #000000;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.3);
}

.projects-btn:hover {
    background: #00ff41;
    border-color: #00ff41;
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(0, 255, 65, 0.5), 0 10px 30px rgba(0, 255, 65, 0.2);
}

.more-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.more-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.bio-btn svg {
    transition: transform 0.3s ease;
}

.bio-btn:hover svg {
    transform: translateX(5px);
}

.bio-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: 0.5s;
}

.bio-btn:hover::after {
    left: 100%;
}

.lang-btn, .theme-btn {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn:hover, .theme-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

body.light-theme .lang-btn,
body.light-theme .theme-btn {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

body.light-theme .lang-btn:hover,
body.light-theme .theme-btn:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.15);
}

body.light-theme .more-btn {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: #000000;
}

body.light-theme .more-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body.light-theme .projects-btn {
    background: #00cc00;
    border: 1px solid #00cc00;
    color: #000000;
    box-shadow: 0 0 30px rgba(0, 204, 0, 0.3);
}

body.light-theme .projects-btn:hover {
    background: #00dd00;
    border-color: #00dd00;
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(0, 204, 0, 0.5), 0 10px 30px rgba(0, 204, 0, 0.2);
}

body.light-theme .bio h2 {
    color: #000000;
    text-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
}

body.light-theme .bio h2::after {
    background: linear-gradient(90deg, #00cc00 0%, transparent 100%);
    box-shadow: 0 0 20px rgba(0, 204, 0, 0.5);
}

body.light-theme .bio p {
    color: #00cc00;
}

body.light-theme .bio p::after {
    background: #00cc00;
    box-shadow: 0 0 15px rgba(0, 204, 0, 0.6);
}

body.light-theme .bio .description {
    color: rgba(0, 0, 0, 0.65);
}

body.light-theme .bio .description:hover {
    color: rgba(0, 0, 0, 0.85);
}


/* About Section */
.about-section {
    min-height: 100vh;
    padding: 100px 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-color);
    background-image: 
        linear-gradient(to bottom,
            rgba(255, 255, 255, 0.3) 1px,
            transparent 1px),
        linear-gradient(to right,
            rgba(255, 255, 255, 0.3) 1px,
            transparent 1px);
    background-size: 35px 35px;
}

.about-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-header h2 {
    font-family: 'Monument', sans-serif;
    font-size: 4.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

.about-line {
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text {
    font-family: 'Inter', sans-serif;
}

.about-intro {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 600;
}

.about-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.highlight {
    color: var(--accent-green);
    font-weight: 700;
    text-shadow: 0 0 30px rgba(0, 255, 65, 0.6);
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.skill-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 255, 65, 0.5);
    transform: translateX(10px);
    box-shadow: 0 5px 30px rgba(0, 255, 65, 0.3);
}

.skill-item svg {
    color: var(--accent-green);
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.7));
}

.skill-item span {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(0, 255, 65, 0.1);
    border-color: rgba(0, 255, 65, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 255, 65, 0.3);
}

.stat-number {
    font-family: 'Monument', sans-serif;
    font-size: 4rem;
    color: var(--accent-green);
    margin-bottom: 0.8rem;
    text-shadow: 0 0 40px rgba(0, 255, 65, 0.7);
    font-weight: 700;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

/* Footer */
.footer {
    background-color: var(--bg-color);
    background-image: 
        linear-gradient(to bottom,
            rgba(255, 255, 255, 0.3) 1px,
            transparent 1px),
        linear-gradient(to right,
            rgba(255, 255, 255, 0.3) 1px,
            transparent 1px);
    background-size: 35px 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    font-family: 'Monument', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.footer-logo .solid {
    color: #ffffff;
}

.footer-logo .outline {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--accent-green);
}

.footer-desc {
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-column h4 {
    font-family: 'Monument', sans-serif;
    font-size: 1rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

.footer-column a {
    display: block;
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-green);
    transform: translateX(5px);
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.5);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-family: 'Inter', sans-serif;
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-green);
    border-color: var(--accent-green);
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 255, 65, 0.4);
}

/* Light Theme */
body.light-theme .about-header h2 {
    color: #000000;
}

body.light-theme .about-line {
    background: linear-gradient(90deg, transparent, #00cc00, transparent);
    box-shadow: 0 0 20px rgba(0, 204, 0, 0.5);
}

body.light-theme .about-intro,
body.light-theme .about-text p {
    color: rgba(0, 0, 0, 0.8);
}

body.light-theme .highlight {
    color: #00cc00;
}

body.light-theme .skill-item {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.08);
}

body.light-theme .skill-item:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 204, 0, 0.3);
}

body.light-theme .skill-item svg {
    color: #00cc00;
}

body.light-theme .skill-item span {
    color: rgba(0, 0, 0, 0.9);
}

body.light-theme .stat-card {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.08);
}

body.light-theme .stat-card:hover {
    background: rgba(0, 204, 0, 0.05);
    border-color: rgba(0, 204, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 204, 0, 0.2);
}

body.light-theme .stat-number {
    color: #00cc00;
    text-shadow: 0 0 30px rgba(0, 204, 0, 0.5);
}

body.light-theme .stat-label {
    color: rgba(0, 0, 0, 0.7);
}

body.light-theme .footer {
    background: rgba(255, 255, 255, 0.95);
    border-top-color: rgba(0, 0, 0, 0.08);
}

body.light-theme .footer-content {
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

body.light-theme .footer-logo .solid {
    color: #000000;
}

body.light-theme .footer-logo .outline {
    -webkit-text-stroke: 1.5px #00cc00;
}

body.light-theme .footer-desc,
body.light-theme .footer-column a {
    color: rgba(0, 0, 0, 0.6);
}

body.light-theme .footer-column h4 {
    color: #00cc00;
}

body.light-theme .footer-column a:hover {
    color: #00cc00;
}

body.light-theme .footer-bottom p {
    color: rgba(0, 0, 0, 0.5);
}

body.light-theme .social-link {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.08);
    color: rgba(0, 0, 0, 0.7);
}

body.light-theme .social-link:hover {
    background: #00cc00;
    border-color: #00cc00;
    color: #000000;
    box-shadow: 0 5px 20px rgba(0, 204, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
