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

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a25;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #606070;
    --accent: #00d4ff;
    --accent-secondary: #7c3aed;
    --accent-gradient: linear-gradient(135deg, #00d4ff, #7c3aed);
    --border: rgba(255, 255, 255, 0.08);
    --glow: rgba(0, 212, 255, 0.15);
    --font-mono: 'JetBrains Mono', monospace;
    --font-sans: 'Inter', -apple-system, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s;
}

body:hover .cursor-glow {
    opacity: 1;
}

.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.nav-logo {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 700;
}

.logo-bracket {
    color: var(--accent);
}

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

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

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

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

.nav-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-text {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 500;
}

.main {
    position: relative;
    z-index: 1;
}

.section {
    min-height: 100vh;
    padding: 120px 60px;
}

.section-header {
    margin-bottom: 60px;
}

.section-tag {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 24px;
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    margin-bottom: 24px;
}

.title-line {
    display: block;
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 8px;
}

.title-name {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 8px;
}

.title-role {
    display: block;
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-family: var(--font-mono);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-mono);
}

.stat-number::after {
    content: '+';
    color: var(--accent);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--bg-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

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

.btn-secondary:hover {
    border-color: var(--accent);
    background: rgba(0, 212, 255, 0.05);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.code-window {
    width: 100%;
    max-width: 480px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.window-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border);
}

.window-dots {
    display: flex;
    gap: 8px;
}

.window-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.window-dots span:nth-child(1) { background: #ff5f56; }
.window-dots span:nth-child(2) { background: #ffbd2e; }
.window-dots span:nth-child(3) { background: #27ca40; }

.window-title {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.code-content {
    padding: 20px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    line-height: 1.8;
    overflow-x: auto;
}

.code-content code {
    color: var(--text-secondary);
}

.code-keyword { color: #c792ea; }
.code-type { color: #82aaff; }
.code-property { color: #f07178; }
.code-string { color: #c3e88d; }
.code-variable { color: #89ddff; }

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.skill-category {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s;
}

.skill-category:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-4px);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.category-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: 12px;
    color: var(--bg-primary);
}

.category-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.skill-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skill-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

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

.skill-level {
    color: var(--accent);
    font-family: var(--font-mono);
}

.skill-bar {
    height: 4px;
    background: var(--bg-tertiary);
    border-radius: 2px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 2px;
    width: 0;
    transition: width 1s ease-out;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--accent-secondary));
}

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

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -6px;
    top: 8px;
    width: 14px;
    height: 14px;
    background: var(--bg-primary);
    border: 2px solid var(--accent);
    border-radius: 50%;
}

.timeline-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s;
}

.timeline-content:hover {
    border-color: rgba(0, 212, 255, 0.3);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.timeline-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.company {
    color: var(--accent);
    font-size: 0.9rem;
}

.timeline-date {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 4px 12px;
    background: var(--bg-tertiary);
    border-radius: 4px;
}

.timeline-desc {
    list-style: none;
    margin-bottom: 16px;
}

.timeline-desc li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.timeline-tags span {
    padding: 4px 12px;
    background: var(--bg-tertiary);
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.project-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-image {
    height: 180px;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.project-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
}

.project-image::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 212, 255, 0.03) 2px,
        rgba(0, 212, 255, 0.03) 4px
    );
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(4px); }
}

.project-placeholder {
    color: var(--accent);
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.project-content {
    padding: 24px;
}

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

.project-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.project-links {
    display: flex;
    gap: 12px;
}

.project-links a {
    color: var(--text-muted);
    transition: color 0.3s;
}

.project-links a:hover {
    color: var(--accent);
}

.project-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.project-tech span {
    padding: 4px 10px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--accent);
    font-family: var(--font-mono);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-link:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(8px);
}

.link-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border-radius: 10px;
    color: var(--accent);
}

.link-content {
    display: flex;
    flex-direction: column;
}

.link-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.link-value {
    color: var(--text-primary);
    font-weight: 500;
}

.contact-form {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

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

.footer {
    padding: 40px 60px;
    border-top: 1px solid var(--border);
    text-align: center;
}

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

.footer-code {
    margin-top: 8px;
}

.heart {
    color: #ff4757;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@media (max-width: 1200px) {
    .skills-grid,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

@media (max-width: 768px) {
    .nav {
        padding: 0 16px;
        height: 60px;
    }

    .nav-logo {
        font-size: 1rem;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.95);
        backdrop-filter: blur(20px);
        padding: 20px;
        gap: 0;
        border-bottom: 1px solid var(--border);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 999;
        pointer-events: none;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-link {
        padding: 16px 0;
        border-bottom: 1px solid var(--border);
        font-size: 1rem;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(0, 212, 255, 0.1);
        transition: all 0.2s ease;
    }

    .nav-link:active {
        background: rgba(0, 212, 255, 0.1);
        padding-left: 10px;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-status {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 10px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-menu-btn span {
        width: 24px;
        height: 2px;
        background: var(--text-primary);
        border-radius: 2px;
        transition: all 0.3s;
    }

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

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

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

    .section {
        padding: 60px 16px;
    }

    .section-header {
        margin-bottom: 24px;
    }

    .section-tag {
        font-size: 0.7rem;
        margin-bottom: 6px;
    }

    .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .hero-section {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-top: 90px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-visual {
        display: none;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
        margin-bottom: 12px;
    }

    .title-name {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 6px;
    }

    .title-role {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    .hero-desc {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .hero-stats {
        flex-direction: row;
        gap: 12px;
        margin-bottom: 20px;
    }

    .stat-item {
        flex: 1;
        padding: 10px 6px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 8px;
    }

    .stat-number {
        font-size: 1.3rem;
        display: block;
    }

    .stat-label {
        font-size: 0.7rem;
        display: block;
        margin-top: 2px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
        justify-content: center;
    }

    .code-window {
        max-width: 100%;
        margin: 0 16px;
        border-radius: 10px;
    }

    .code-content {
        font-size: 0.65rem;
        padding: 10px;
        line-height: 1.4;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .skills-grid,
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .skill-category {
        padding: 16px;
        border-radius: 12px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(0, 212, 255, 0.05);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .skill-category:active {
        transform: scale(0.98);
    }

    .category-header {
        margin-bottom: 12px;
    }

    .category-header h3 {
        font-size: 0.9rem;
    }

    .skill-item {
        flex-direction: column;
        gap: 4px;
        padding: 8px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .skill-item:last-child {
        border-bottom: none;
    }

    .skill-info {
        font-size: 0.85rem;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }

    .skill-name {
        font-size: 0.85rem;
    }

    .skill-level {
        font-size: 0.75rem;
        color: var(--accent);
    }

    .skill-bar {
        height: 4px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
        overflow: hidden;
    }

    .skill-progress {
        height: 100%;
        border-radius: 2px;
        transition: width 0.3s ease;
    }

    .timeline::before {
        left: 8px;
    }

    .timeline-item {
        padding-left: 32px;
        padding-bottom: 24px;
    }

    .timeline-marker {
        left: 2px;
        width: 14px;
        height: 14px;
        border-radius: 50%;
    }

    .timeline-content {
        padding: 16px;
        border-radius: 12px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(0, 212, 255, 0.05);
        transition: transform 0.2s ease;
    }

    .timeline-content:active {
        transform: scale(0.98);
    }

    .timeline-header {
        flex-direction: column;
        gap: 6px;
        margin-bottom: 10px;
    }

    .timeline-info h3 {
        font-size: 0.95rem;
    }

    .company {
        font-size: 0.8rem;
    }

    .timeline-date {
        align-self: flex-start;
        font-size: 0.7rem;
        padding: 2px 8px;
        background: rgba(0, 212, 255, 0.1);
        border-radius: 4px;
    }

    .timeline-desc {
        padding-left: 16px;
        margin: 10px 0;
    }

    .timeline-desc li {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 6px;
    }

    .timeline-tags {
        flex-wrap: wrap;
        gap: 6px;
    }

    .timeline-tags span {
        font-size: 0.7rem;
        padding: 3px 8px;
    }

    .project-card {
        border-radius: 12px;
        overflow: hidden;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(0, 212, 255, 0.05);
        transition: transform 0.2s ease;
    }

    .project-card:active {
        transform: scale(0.98);
    }

    .project-image {
        height: 120px;
    }

    .project-content {
        padding: 14px;
    }

    .project-header {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .project-header h3 {
        font-size: 0.9rem;
    }

    .project-desc {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .project-tech {
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 10px;
    }

    .project-tech span {
        font-size: 0.7rem;
        padding: 3px 8px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-desc {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .contact-info {
        gap: 12px;
    }

    .contact-link {
        padding: 12px;
        border-radius: 10px;
        gap: 12px;
    }

    .contact-link:active {
        transform: scale(0.98);
    }

    .contact-link {
        padding: 16px;
    }

    .link-icon {
        width: 40px;
        height: 40px;
    }

    .contact-form {
        padding: 24px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .footer {
        padding: 30px 20px;
    }

    .footer-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .title-name {
        font-size: 1.8rem;
    }

    .title-role {
        font-size: 1rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .project-tech span {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
}

.mobile-menu-btn {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
}
