﻿/* ===== CSS VARIABLES ===== */
:root {
    --primary: #7c3aed;
    --primary-dark: #5b21b6;
    --primary-light: #a78bfa;
    --secondary: #ec4899;
    --bg: #f8fafc;
    --bg-dark: #0f172a;
    --card: #ffffff;
    --card-dark: #1e293b;
    --text: #0f172a;
    --text-dark: #f1f5f9;
    --text-light: #64748b;
    --shadow: 0 20px 60px -15px rgba(0,0,0,0.1);
    --shadow-hover: 0 30px 80px -15px rgba(0,0,0,0.2);
    --radius: 20px;
    --radius-sm: 12px;
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== DARK THEME ===== */
body.dark {
    --bg: #0f172a;
    --card: #1e293b;
    --text: #f1f5f9;
    --text-light: #94a3b8;
    --shadow: 0 20px 60px -15px rgba(0,0,0,0.5);
    --shadow-hover: 0 30px 80px -15px rgba(0,0,0,0.7);
}

/* ===== RESET ===== */
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    transition: background var(--transition), color var(--transition);
    overflow-x: hidden;
    line-height: 1.7;
}
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--primary), var(--secondary)); border-radius: 20px; }

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s, visibility 0.6s;
}
#preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.loader-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid var(--primary);
    border-radius: 50%;
    animation: loader-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: var(--primary) transparent transparent transparent;
}
.loader-ring div:nth-child(1) { animation-delay: -0.45s; }
.loader-ring div:nth-child(2) { animation-delay: -0.3s; }
.loader-ring div:nth-child(3) { animation-delay: -0.15s; }
@keyframes loader-ring {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== CURSOR ===== */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
}
.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor-dot.hover { width: 12px; height: 12px; background: var(--secondary); }
.cursor-outline.hover { width: 60px; height: 60px; border-color: var(--secondary); }

@media (max-width: 768px) { .cursor-dot, .cursor-outline { display: none; } }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
    background: transparent;
}
.navbar.scrolled {
    background: var(--card);
    box-shadow: var(--shadow);
    padding: 10px 0;
}
body.dark .navbar.scrolled { background: var(--card-dark); }

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.brand-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}
.brand-text {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.5px;
}
.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    font-weight: 500;
    font-size: 0.9rem;
    transition: color var(--transition);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active { color: var(--primary); }

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}
.theme-toggle, .menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--bg);
    color: var(--text);
    cursor: pointer;
    font-size: 1.1rem;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.theme-toggle:hover, .menu-toggle:hover {
    background: var(--primary);
    color: #fff;
    transform: rotate(15deg);
}
.menu-toggle { display: none; }

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--card);
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: right var(--transition);
        box-shadow: var(--shadow-hover);
        gap: 20px;
    }
    .nav-links.open { right: 0; }
    body.dark .nav-links { background: var(--card-dark); }
    .nav-links a { font-size: 1.1rem; }
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 70%;
    height: 100%;
    background: radial-gradient(circle, rgba(124,58,237,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-text .hero-badge {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.hero-text h1 {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
}
.hero-text h1 span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.typed-container {
    min-height: 50px;
    margin: 8px 0;
}
.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-light);
}
.hero-subtitle #typed-text { color: var(--primary); }
.hero-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 16px 0 30px;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.btn {
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 10px 30px -10px rgba(124,58,237,0.4);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -10px rgba(124,58,237,0.6);
}
.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--text-light);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}
.hero-social {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}
.hero-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    color: var(--text);
    font-size: 1rem;
    border: 1px solid transparent;
}
.hero-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    border-color: var(--primary);
}

.hero-image {
    position: relative;
}
.profile-container {
    position: relative;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
}
.profile-placeholder {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(236,72,153,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12rem;
    color: var(--primary);
    border: 4px solid var(--primary);
    position: relative;
    overflow: hidden;
}
.profile-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.floating-badge {
    position: absolute;
    background: var(--card);
    padding: 10px 18px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.8rem;
    animation: float 6s ease-in-out infinite;
}
.floating-badge i { color: var(--primary); }
.badge-1 { top: 10%; right: -10%; animation-delay: 0s; }
.badge-2 { bottom: 20%; left: -15%; animation-delay: 2s; }
.badge-3 { bottom: 5%; right: -5%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-light);
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@media (max-width: 768px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text h1 { font-size: 2.5rem; }
    .hero-desc { margin: 16px auto 30px; }
    .hero-social { justify-content: center; }
    .hero-buttons { justify-content: center; }
    .hero-image { order: -1; }
    .profile-placeholder { max-width: 300px; margin: 0 auto; font-size: 8rem; }
    .floating-badge { display: none; }
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-tag {
    display: inline-block;
    padding: 4px 18px;
    border-radius: 50px;
    background: rgba(124,58,237,0.1);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}
.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 12px auto 0;
}

/* ===== ABOUT ===== */
.about { padding: 80px 0; }
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.about-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 36px 30px;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 1px solid transparent;
}
.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(124,58,237,0.2);
}
.about-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(124,58,237,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 16px;
}
.about-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
}
.timeline-item {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-item .year {
    display: inline-block;
    font-weight: 700;
    color: var(--primary);
    margin-right: 8px;
}
.mission-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}
.mission-tags span {
    padding: 4px 14px;
    border-radius: 50px;
    background: rgba(124,58,237,0.08);
    font-size: 0.8rem;
    font-weight: 500;
}

/* ===== JOURNEY ===== */
.journey { padding: 80px 0; background: var(--bg); }
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
}
.timeline-item-left,
.timeline-item-right {
    position: relative;
    padding: 20px 0;
    width: 50%;
}
.timeline-item-left { padding-right: 40px; text-align: right; }
.timeline-item-right { padding-left: 40px; margin-left: 50%; }
.timeline-item-left::after,
.timeline-item-right::after {
    content: '';
    position: absolute;
    top: 30px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--bg);
}
.timeline-item-left::after { right: -8px; }
.timeline-item-right::after { left: -8px; }
.timeline-content {
    background: var(--card);
    padding: 24px 28px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    transition: all var(--transition);
}
.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.timeline-year {
    display: inline-block;
    padding: 2px 14px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 8px;
}
.timeline-content h3 { font-size: 1.1rem; }

@media (max-width: 768px) {
    .timeline-line { left: 20px; }
    .timeline-item-left,
    .timeline-item-right {
        width: 100%;
        padding: 20px 0 20px 50px;
        text-align: left;
        margin-left: 0;
    }
    .timeline-item-left::after,
    .timeline-item-right::after { left: 12px; right: auto; }
}

/* ===== WORK ===== */
.work { padding: 80px 0; }
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.work-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 1px solid transparent;
}
.work-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(124,58,237,0.2);
}
.work-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(236,72,153,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin: 0 auto 16px;
}
.work-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.work-card p { color: var(--text-light); font-size: 0.95rem; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 80px 0; background: var(--bg); }
.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    position: relative;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.quote-icon {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 12px;
}
.testimonial-card p { font-style: italic; margin-bottom: 16px; }
.testimonial-author strong { display: block; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-light); }

/* ===== GALLERY ===== */
.gallery { padding: 80px 0; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.gallery-item {
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    background: var(--card);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
    transition: all var(--transition);
    cursor: pointer;
}
.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}
.gallery-item span {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 8px;
}

/* ===== CONTACT ===== */
.contact { padding: 80px 0; background: var(--bg); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}
.contact-info h3 { font-size: 1.4rem; margin-bottom: 24px; }
.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}
.contact-item i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(124,58,237,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
}
.contact-item h4 { font-size: 0.85rem; font-weight: 600; }
.contact-item p { font-size: 0.9rem; color: var(--text-light); }
.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.contact-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    color: var(--text);
}
.contact-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.contact-form .form-group { margin-bottom: 16px; }
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    background: var(--card);
    color: var(--text);
    font-size: 1rem;
    transition: all var(--transition);
    box-shadow: var(--shadow);
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(124,58,237,0.1);
}
.contact-form textarea { resize: vertical; }
.contact-form button {
    width: 100%;
    justify-content: center;
}

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

/* ===== FOOTER ===== */
.footer {
    background: var(--card);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
}
body.dark .footer { background: var(--card-dark); }
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.footer-brand p { font-size: 0.85rem; color: var(--text-light); margin-top: 4px; }
.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-links a { font-weight: 500; font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--primary); }
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
}
.footer-bottom a { color: var(--primary); font-weight: 600; }

@media (max-width: 768px) {
    .footer-content { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px -10px rgba(124,58,237,0.4);
    transition: all var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-3px) scale(1.05);
}

/* ===== DEVELOPER SECTION ===== */
.developer-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(124,58,237,0.05), rgba(236,72,153,0.05));
    border-top: 3px solid var(--primary);
    border-bottom: 3px solid var(--primary);
}
.developer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}
.dev-image {
    display: flex;
    justify-content: center;
}
.dev-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
    color: #fff;
    box-shadow: 0 20px 60px -15px rgba(124,58,237,0.3);
    transition: all var(--transition);
    overflow: hidden;
}
.dev-placeholder:hover {
    transform: scale(1.05) rotate(5deg);
}
.dev-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dev-badge {
    display: inline-block;
    padding: 4px 18px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.dev-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.dev-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 4px 0 12px;
}
.dev-desc {
    color: var(--text-light);
    max-width: 500px;
    margin-bottom: 20px;
}
.dev-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}
.stat-item {
    text-align: center;
}
.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}
.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
}
.dev-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.dev-links .btn {
    padding: 10px 24px;
    font-size: 0.85rem;
}
.dev-links .btn-outline {
    border-color: var(--primary);
    color: var(--primary);
}
.dev-links .btn-outline:hover {
    background: var(--primary);
    color: #fff;
}
.dev-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.dev-badges .badge {
    padding: 4px 14px;
    border-radius: 50px;
    background: rgba(124,58,237,0.1);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid rgba(124,58,237,0.2);
}

@media (max-width: 768px) {
    .developer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .dev-placeholder {
        width: 150px;
        height: 150px;
        font-size: 5rem;
    }
    .dev-stats {
        justify-content: center;
    }
    .dev-links {
        justify-content: center;
    }
    .dev-badges {
        justify-content: center;
    }
    .dev-desc {
        margin: 0 auto 20px;
    }
}
