:root {
    --page-bg: #f7f7f4;
    --surface: #ffffff;
    --surface-muted: #f3f4f0;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(15, 18, 23, 0.06);
    --accent-color: #121826;
    --accent-secondary: #4f46e5;
    --accent-gradient: linear-gradient(120deg, #121826, #2a3350);
    --text-primary: #161a1f;
    --text-secondary: #6a717c;
    --black-primary: #10131a;
    --black-secondary: #dcdfe5;
    --shadow-soft: 0 25px 60px rgba(18, 24, 38, 0.1);
}

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--page-bg);
    color: var(--text-primary);
    min-height: 100vh;
    position: relative;
    z-index: 1;
}


.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 20px;
}

.hero-card {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 3.25rem;
    width: 100%;
    max-width: 960px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
    align-items: flex-start;
}

.hero-card::after {
    content: '';
    position: absolute;
    inset: 20px;
    border-radius: 22px;
    border: 1px solid rgba(18, 24, 38, 0.05);
    pointer-events: none;
}

.greeting {
    margin-bottom: 24px;
    padding: 16px 24px;
    background: var(--surface-muted);
    border-radius: 20px;
    border: 1px solid rgba(18, 24, 38, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.greeting:hover {
    border-color: rgba(18, 24, 38, 0.18);
    box-shadow: 0 20px 40px rgba(18, 24, 38, 0.1);
    transform: translateY(-3px);
}

.greeting-content {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.emoji {
    font-size: 1.5em;
    animation: wave 2.5s infinite;
    display: inline-block;
}

.greeting-text {
    color: var(--text-secondary);
    font-size: 1.1em;
}

.name, .nickname {
    font-weight: 600;
    font-size: 1.2em;
    color: var(--accent-color);
}

.role-container {
    display: flex;
    align-items: center;
    margin: 10px 0;
    font-family: 'Fira Code', monospace;
    color: var(--accent-color);
    background: transparent;
    border: 1px solid rgba(18, 24, 38, 0.12);
    padding: 10px 18px;
    border-radius: 14px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.role-container:hover {
    border-color: rgba(18, 24, 38, 0.35);
    background: rgba(18, 24, 38, 0.04);
}

.role-prefix, .role-suffix {
    color: var(--text-secondary);
    opacity: 0.8;
}

.typing-text {
    margin: 0 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.role-icon {
    font-size: 1.1em;
    color: var(--accent-color);
    background: rgba(18, 24, 38, 0.08);
    padding: 6px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.description {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin: 1.25rem 0 0;
    line-height: 1.7;
    max-width: 540px;
}

.status-line {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-primary);
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    background: rgba(18, 24, 38, 0.04);
    border: 1px solid rgba(18, 24, 38, 0.08);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-secondary);
    box-shadow: 0 0 0 6px rgba(79, 70, 229, 0.1);
    display: inline-block;
}

.tagline {
    margin: 1rem 0 0;
    font-size: 1rem;
    color: var(--accent-color);
    letter-spacing: 0.02em;
}

.stack-ribbon {
    margin: 1.5rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.stack-ribbon span {
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(18, 24, 38, 0.08);
    font-size: 0.85rem;
    color: var(--accent-color);
    background: #fff;
    letter-spacing: 0.03em;
}

.compact-cards {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.compact-card,
.education-card {
    background: var(--surface);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(18, 24, 38, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.card-label {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin: 0;
}

.card-value {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
}

.card-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.insight-panel {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.meta-card {
    background: var(--surface);
    border-radius: 20px;
    padding: 1.6rem;
    border: 1px solid rgba(18, 24, 38, 0.08);
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.meta-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-secondary);
}

.meta-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.meta-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.focus-panel {
    background: var(--surface);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(18, 24, 38, 0.06);
    box-shadow: none;
}

.panel-heading {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.panel-heading::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--text-secondary));
}

.focus-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.focus-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.focus-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-color);
    margin-top: 0.55rem;
}

.focus-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-color);
}

.focus-desc {
    margin: 0.25rem 0 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.telemetry-panel {
    background: var(--surface);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(18, 24, 38, 0.06);
    box-shadow: none;
}

.signal-feed {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.signal-entry {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 14px;
    background: var(--surface-muted);
    border: 1px solid rgba(18, 24, 38, 0.05);
}

.signal-name {
    font-size: 0.9rem;
    color: var(--text-primary);
}

.signal-value {
    font-family: 'Fira Code', monospace;
    color: var(--accent-secondary);
    font-size: 0.9rem;
}

.log-panel {
    background: var(--surface);
    border-radius: 24px;
    padding: 1.75rem;
    border: 1px solid rgba(18, 24, 38, 0.06);
    box-shadow: none;
}

.log-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.log-list li {
    display: flex;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.log-time {
    font-family: 'Fira Code', monospace;
    font-size: 0.85rem;
    color: var(--accent-color);
    min-width: 3.5rem;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.modern-button {
    position: relative;
    padding: 0.95rem 1.6rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    border: none;
    cursor: pointer;
}

.modern-button.primary {
    color: #ffffff;
    background: var(--accent-color);
    box-shadow: 0 15px 35px rgba(18, 24, 38, 0.2);
}

.modern-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 45px rgba(18, 24, 38, 0.25);
}

.modern-button.secondary {
    background: transparent;
    border: 1px solid rgba(18, 24, 38, 0.2);
    color: var(--accent-color);
}

.modern-button.secondary:hover {
    border-color: rgba(18, 24, 38, 0.4);
    background: rgba(18, 24, 38, 0.05);
    transform: translateY(-2px);
}

/* Эффект свечения для primary кнопки */
.button-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 50%);
    transform: translate(-100%, -100%);
    transition: transform 0.5s ease;
    pointer-events: none;
}

.modern-button.primary:hover .button-glow {
    transform: translate(0, 0);
}

/* Анимация для иконок в кнопках */
.modern-button i {
    transition: transform 0.3s ease;
}

.modern-button:hover i {
    transform: translateX(3px);
}

.modern-button.primary:hover i {
    animation: buttonIconPrimary 1s infinite;
}

.modern-button.secondary:hover i {
    animation: buttonIconSecondary 1s infinite;
}

@keyframes buttonIconPrimary {
    0% { transform: translateX(0); }
    50% { transform: translateX(5px); }
    100% { transform: translateX(0); }
}

@keyframes buttonIconSecondary {
    0% { transform: translateX(0); }
    50% { transform: translateX(5px); }
    100% { transform: translateX(0); }
}

.sound-toggle {
    width: 45px;
    height: 45px;
    border-radius: 14px;
    background: var(--surface-muted);
    border: 1px solid rgba(15, 17, 21, 0.08);
    color: var(--accent-color);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sound-toggle:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

@keyframes wave {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(14deg); }
    20% { transform: rotate(-8deg); }
    30% { transform: rotate(14deg); }
    40% { transform: rotate(-4deg); }
    50% { transform: rotate(10deg); }
    60% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

@media (max-width: 768px) {
    .hero {
        padding: 1.5rem;
    }
    
    .hero-card {
        border-radius: 28px;
        padding: 1.75rem;
        height: auto;
        margin: 0;
    }
    
    .hero-buttons {
        flex-wrap: wrap;
    }
    
    .modern-button {
        width: 100%;
        justify-content: center;
    }

    .greeting {
        padding: 14px 18px;
    }

    .greeting-content {
        gap: 6px;
    }
}

body::before,
body::after {
    display: none;
}

@keyframes gradientAnimation {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .insight-panel {
        margin-top: 0;
    }
}

.glass-nav {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1.5rem 2rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Removed old tech stack block */

.project-info {
    padding: 1.5rem;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    background: rgba(15, 17, 21, 0.05);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Улучшенный скроллбар */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--surface-muted);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: rgba(15, 17, 21, 0.2);
    border-radius: 5px;
    border: 2px solid var(--surface-muted);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(15, 17, 21, 0.4);
}

/* Медиа-запросы */
@media (max-width: 768px) {
    .hero {
        padding: 1.5rem;
        height: auto;
    }

    .hero-card {
        padding: 1.75rem;
        overflow: visible;
        display: flex;
        flex-direction: column;
    }

    .hero-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        justify-content: center;
    }

    .hero-card::-webkit-scrollbar {
        width: 4px;
    }

    .hero-card::-webkit-scrollbar-thumb {
        background: var(--accent-color);
        border-radius: 4px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .modern-button {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }

    .card-player {
        padding: 1rem;
        margin-top: 2rem;
    }

    .player-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .track-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .cover-wrapper {
        width: 120px;
        height: 120px;
    }

    .play-pause-btn {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
        background: var(--accent-gradient);
    }

    .track-details {
        align-items: center;
    }

    .track-name {
        font-size: 1rem;
    }

    .artist-name {
        font-size: 0.9rem;
    }

    .stack-ribbon span {
        width: 100%;
        text-align: center;
    }

    .compact-cards {
        grid-template-columns: 1fr;
    }

    .meta-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 380px) {
    .hero {
        padding: 1rem;
    }

    .hero-card {
        padding: 1.25rem;
    }

    .greeting-text {
        font-size: 1rem;
    }

    .description {
        font-size: 0.95rem;
    }

    .cover-wrapper {
        width: 100px;
        height: 100px;
    }

    .play-pause-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

@media (hover: hover) {
    .play-pause-btn {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }

    .cover-wrapper:hover .play-pause-btn {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@media (hover: none) {
    .play-pause-btn {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
        background: var(--accent-gradient);
    }

    .cover-art {
        filter: brightness(0.7);
    }
}

@media (max-height: 600px) and (orientation: landscape) {
    .hero-card {
        height: auto;
        min-height: calc(100vh - 2rem);
        min-height: calc(100dvh - 2rem);
    }

    .card-player {
        margin-top: 1.5rem;
    }
}

/* Стили для плеера внутри карточки */
.card-player {
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-player::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(0, 240, 255, 0.03) 0%,
        transparent 70%
    );
    animation: rotateGradient 15s linear infinite;
}

.card-player:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.player-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
}

.track-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cover-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    cursor: pointer;
}

.cover-art {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.play-pause-btn {
    position: absolute;
    top: 50%;
    left: 53%;
    transform: translate(-50%, -50%) scale(0);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-gradient);
    border: none;
    color: var(--black-primary);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
    z-index: 10;
    pointer-events: auto;
}

.cover-wrapper:hover .play-pause-btn {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.cover-wrapper:hover .cover-art {
    filter: brightness(0.7);
    transform: scale(1.05);
    border-color: var(--accent-color);
}

.play-pause-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
}

.track-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.track-name {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1.1rem;
}

.artist-name {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
    margin: 1rem 0;
}

.control-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.control-btn:hover {
    transform: scale(1.1);
    color: var(--accent-color);
}

.play-btn {
    background: var(--accent-color);
    color: var(--black-primary);
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
}

.play-btn:hover {
    background: var(--accent-color);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.progress-area {
    width: 100%;
    padding: 0 1rem;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.progress {
    height: 100%;
    width: 0%;
    background: var(--accent-color);
    border-radius: 2px;
    position: relative;
    transition: width 0.1s linear;
}

.progress::before {
    content: '';
    position: absolute;
    right: -2px;
    top: -3px;
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-color);
    transform: scale(0);
    transition: transform 0.2s ease;
}

.progress-bar:hover .progress::before {
    transform: scale(1);
}

.time {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-family: 'Fira Code', monospace;
}

/* Медиа-запрос для мобильных устройств */
@media (max-width: 768px) {
    .player-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .track-info {
        justify-content: center;
    }
}

/* Анимации */
@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Стили для overlay (затемнение фона) */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: none;
    z-index: 999;
}

.overlay.active {
    display: block;
}

/* Обновленные стили для popup */
.social-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 2rem;
    gap: 1rem;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
    flex-direction: column;
    min-width: 250px;
}

.social-popup.active {
    display: flex;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.social-icon {
    color: var(--text-primary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
}

.social-icon span {
    font-size: 1rem;
    font-weight: 500;
}

.social-icon:hover {
    transform: translateY(-2px);
    color: var(--accent-color);
    background: rgba(0, 240, 255, 0.1);
}

/* Медиа-запрос для мобильных устройств */
@media (max-width: 768px) {
    .social-popup {
        width: 85%;
        max-width: 320px;
        padding: 1.5rem;
        gap: 1rem;
        background: rgba(18, 18, 18, 0.98);
    }

    .social-icon {
        padding: 1rem;
        font-size: 1.3rem;
    }

    .social-icon span {
        font-size: 0.95rem;
    }
}

/* Медиа-запрос для очень маленьких экранов */
@media (max-width: 380px) {
    .social-popup {
        width: 90%;
        padding: 1.2rem;
    }

    .social-icon {
        padding: 0.8rem;
        font-size: 1.2rem;
    }

    .social-icon span {
        font-size: 0.9rem;
    }
}

/* Стили для секции навыков */
.skills-section {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.skill-item {
    background: var(--surface);
    border: 1px solid rgba(15, 17, 21, 0.06);
    border-radius: 18px;
    padding: 18px 20px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(15, 17, 21, 0.12);
}

.skill-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.skill-name {
    font-weight: 600;
    color: var(--text-primary);
}

.skill-level {
    font-size: 0.9em;
    color: var(--accent-color);
    font-weight: 600;
    padding: 4px 10px;
    background: rgba(15, 17, 21, 0.06);
    border-radius: 999px;
}

.skill-bar {
    height: 6px;
    background: var(--surface-muted);
    border-radius: 999px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 999px;
    transition: width 1s ease-in-out;
} 