@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
    --primary: #FFFFFF;
    --secondary: #888888;
    --accent: #FFFFFF;
    --bg: #000000;
    --text: #FFFFFF;
    --text-secondary: #888888;
    --border: #222222;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --gradient-5: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    cursor: none;
    overflow-x: hidden;
}

.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #000000;
}

.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

.cursor-ring {
    position: fixed;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    transition: all 0.15s ease;
}

.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px) saturate(120%);
    -webkit-backdrop-filter: blur(30px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.controls {
    position: fixed;
    top: 24px;
    right: 24px;
    display: flex;
    gap: 8px;
    z-index: 9999;
    padding: 8px;
    border-radius: 16px;
    animation: slideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(20, 20, 25, 0.6);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 16px;
    position: relative;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0);
    transition: all 0.3s ease;
}

.btn:hover::before {
    background: rgba(255, 255, 255, 0.15);
}

.btn:active {
    transform: scale(0.9);
}

.btn:active::before {
    background: rgba(10, 132, 255, 0.3);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px 40px;
}

.hero {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--text);
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.section {
    margin: 60px 0;
    animation: fadeIn 1s ease;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
    text-align: left;
    color: var(--text);
}

.about {
    padding: 40px;
    border-radius: 12px;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
    animation: aboutFadeIn 0.8s ease;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px) saturate(120%);
    -webkit-backdrop-filter: blur(30px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

@keyframes aboutFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.card {
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    animation: cardFadeIn 0.6s ease backwards;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px) saturate(120%);
    -webkit-backdrop-filter: blur(30px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.card h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.modal {
    position: fixed;
    inset: 0;
    background: transparent;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 5000;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
}

.modal.closing {
    animation: fadeOut 0.3s ease;
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.modal-content {
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(50px) saturate(140%);
    -webkit-backdrop-filter: blur(50px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 36px;
    max-width: 480px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 
        0 24px 80px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    animation: scaleIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: absolute;
    cursor: default;
}

/* Custom scrollbar for modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes scaleOut {
    from { opacity: 1; transform: scale(1); }
    to { opacity: 0; transform: scale(0.85); }
}

.modal-content.closing {
    animation: scaleOut 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    cursor: grab;
    user-select: none;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.modal-header:active {
    cursor: grabbing;
}

.modal-header h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: -0.02em;
}

.close {
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.close:hover {
    background: rgba(255, 59, 48, 0.2);
    border-color: rgba(255, 59, 48, 0.4);
    color: rgba(255, 255, 255, 1);
    transform: rotate(90deg) scale(1.1);
}

.close:active {
    transform: rotate(90deg) scale(0.95);
}

.player {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.album-cover {
    width: 100%;
    aspect-ratio: 1;
    max-width: 280px;
    margin: 0 auto;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    background-size: cover;
    background-position: center;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.album-cover:hover {
    transform: scale(1.02);
    box-shadow: 
        0 16px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.track-name {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: -0.01em;
}

.player-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.player-btn {
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255, 255, 255, 0.06);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
}

.player-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.08);
}

.player-btn:active {
    transform: scale(0.92);
}

.player-btn.play {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
}

.player-btn.play:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
}

#repeatBtn {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

#repeatBtn.active {
    color: #a78bfa;
    background: rgba(167, 139, 250, 0.2);
    border-color: rgba(167, 139, 250, 0.4);
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
}

.progress-bar:hover {
    height: 8px;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.time {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'SF Mono', 'Consolas', monospace;
    font-weight: 500;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 8px;
}

.volume-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.06);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.volume-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.08);
}

.volume-btn:active {
    transform: scale(0.92);
}

.volume-slider {
    flex: 1;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.volume-slider:hover {
    background: rgba(255, 255, 255, 0.15);
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    transition: all 0.2s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    transition: all 0.2s ease;
}

.volume-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.volume-value {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'SF Mono', 'Consolas', monospace;
    font-weight: 600;
    min-width: 45px;
    text-align: right;
}

.hex-editor {
    margin-top: 30px;
}

/* Themes Grid */
.themes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.theme-card {
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.08);
}

.theme-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.theme-card.active {
    border-color: rgba(167, 139, 250, 0.5);
    background: rgba(167, 139, 250, 0.1);
}

.theme-preview {
    width: 100%;
    height: 80px;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.theme-name {
    display: block;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.canvas-wrapper {
    position: relative;
    margin-bottom: 25px;
}

.color-canvas {
    width: 100%;
    height: 300px;
    border-radius: 18px;
    cursor: crosshair;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: block;
    background: linear-gradient(to right, 
        rgb(255, 0, 0) 0%, 
        rgb(255, 255, 0) 17%, 
        rgb(0, 255, 0) 33%, 
        rgb(0, 255, 255) 50%, 
        rgb(0, 0, 255) 67%, 
        rgb(255, 0, 255) 83%, 
        rgb(255, 0, 0) 100%);
}

.color-canvas:hover {
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.color-palette {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.palette-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.palette-row:last-child {
    margin-bottom: 0;
}

.palette-color {
    flex: 1;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.palette-color:hover {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.palette-color:active {
    transform: scale(0.95);
}

.hex-group {
    margin-bottom: 20px;
}

.hex-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-weight: 500;
}

.hex-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.color-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
}

.color-box::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(10, 132, 255, 0.5), rgba(255, 55, 95, 0.5)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.color-box:hover {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.color-box:hover::after {
    opacity: 1;
}

.color-box:active {
    transform: scale(0.95);
}

.hex-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    color: white;
    padding: 15px 18px;
    border-radius: 14px;
    font-family: 'SF Mono', 'Monaco', monospace;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hex-input:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.hex-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.2),
        0 0 0 3px rgba(10, 132, 255, 0.2);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 10000;
    transition: width 0.1s;
    box-shadow: 0 0 10px rgba(10, 132, 255, 0.5);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
    background-clip: padding-box;
}

.particle {
    position: fixed;
    width: 4px;
    height: 4px;
    background: rgba(10, 132, 255, 0.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    animation: particleFloat 1.2s ease-out forwards;
    box-shadow: 0 0 10px rgba(10, 132, 255, 0.6);
}

@keyframes particleFloat {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) scale(0);
    }
}

@media (max-width: 768px) {
    /* Hide custom cursor on mobile */
    .cursor,
    .cursor-ring {
        display: none;
    }
    
    body {
        cursor: auto;
    }
    
    /* Container adjustments */
    .container {
        padding: 60px 20px 20px;
    }
    
    /* Hero section */
    .hero {
        min-height: 60vh;
        padding-top: 40px;
    }
    
    .hero h1 {
        font-size: clamp(2rem, 12vw, 3.5rem);
        margin-bottom: 15px;
    }
    
    .hero h2.subtitle {
        font-size: clamp(1.5rem, 10vw, 2.5rem);
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .hero-links {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .hero-link {
        width: 100%;
        justify-content: center;
    }
    
    /* Controls */
    .controls {
        top: 16px;
        right: 16px;
        padding: 6px;
        gap: 6px;
    }
    
    .btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    /* Grid */
    .grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Cards */
    .card {
        padding: 24px;
    }
    
    .project-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .project-link {
        align-self: flex-start;
    }
    
    .project-tech {
        flex-wrap: wrap;
    }
    
    /* Section */
    .section {
        margin: 40px 0;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
        margin-bottom: 24px;
    }
    
    .section-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* About section */
    .about-section {
        padding: 0;
    }
    
    .about-content p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .about-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .about-link {
        width: 100%;
        justify-content: center;
    }
    
    .weather-widget-inline {
        max-width: 100%;
    }
    
    /* Modal */
    .modal-content {
        padding: 24px 20px;
        max-width: 95%;
        width: 95%;
        max-height: 90vh;
        border-radius: 16px;
    }
    
    .modal-header {
        margin-bottom: 24px;
        padding-bottom: 16px;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .close {
        width: 32px;
        height: 32px;
    }
    
    /* Player */
    .player {
        gap: 20px;
    }
    
    .album-cover {
        max-width: 100%;
        border-radius: 12px;
    }
    
    .track-name {
        font-size: 1.1rem;
    }
    
    .player-controls {
        gap: 12px;
    }
    
    .player-btn {
        width: 44px;
        height: 44px;
    }
    
    .player-btn.play {
        width: 56px;
        height: 56px;
    }
    
    .volume-control {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    
    .volume-btn {
        width: 100%;
        height: 44px;
        border-radius: 12px;
    }
    
    .volume-slider {
        width: 100%;
    }
    
    .volume-value {
        text-align: center;
        width: 100%;
    }
    
    /* Themes grid */
    .themes-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .theme-card {
        padding: 10px;
    }
    
    .theme-preview {
        height: 60px;
    }
    
    /* Dynamic Island */
    .dynamic-island {
        top: 8px;
        width: 100px;
        height: 32px;
    }
    
    .dynamic-island.active {
        width: 90%;
        max-width: 320px;
        height: 44px;
    }
    
    .island-track-name {
        font-size: 12px;
    }
    
    /* Footer */
    .footer {
        padding: 30px 20px;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-text,
    .footer-copyright {
        font-size: 0.85rem;
    }
    
    /* Disable parallax on mobile */
    .hero {
        transform: none !important;
    }
    
    /* Touch-friendly spacing */
    button,
    a,
    .card {
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2.subtitle {
        font-size: 1.5rem;
    }
    
    .modal-content {
        padding: 20px 16px;
    }
    
    .controls {
        top: 12px;
        right: 12px;
    }
    
    .btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .dynamic-island.active {
        width: 95%;
        max-width: 280px;
    }
    
    .island-track-name {
        font-size: 11px;
    }
}

@keyframes ripple {
    from {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    to {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

.click-effect {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 2px solid rgba(10, 132, 255, 0.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    animation: clickPulse 0.5s ease-out;
}

@keyframes clickPulse {
    from {
        transform: scale(0);
        opacity: 1;
    }
    to {
        transform: scale(2);
        opacity: 0;
    }
}

.color-editor {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.color-preview-large {
    width: 100%;
    height: 120px;
    border-radius: 16px;
    background: #0A84FF;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.color-controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hex-display {
    display: flex;
    justify-content: center;
}

.hex-input-main {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 14px 20px;
    border-radius: 12px;
    font-family: 'SF Mono', 'Monaco', monospace;
    font-size: 20px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hex-input-main:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.2);
}

.hex-gradient {
    width: 100%;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(to right,
        #FF0000 0%,
        #FF7F00 14%,
        #FFFF00 28%,
        #00FF00 42%,
        #00FFFF 57%,
        #0000FF 71%,
        #8B00FF 85%,
        #FF0000 100%
    );
    cursor: crosshair;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
}

.gradient-picker {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    transform: translate(-50%, -50%);
    top: 50%;
}

.rgb-controls {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.slider-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.slider-label {
    width: 25px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.color-slider {
    flex: 1;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    outline: none;
    cursor: pointer;
}

.color-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    transition: all 0.2s ease;
}

.color-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.slider-val {
    width: 35px;
    text-align: right;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'SF Mono', monospace;
}

.apply-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(10, 132, 255, 0.3);
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10, 132, 255, 0.4);
}

.apply-btn:active {
    transform: translateY(0);
}

/* Dynamic Island - iPhone Style COMPACT */
.dynamic-island {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: #000000;
    border-radius: 50px;
    z-index: 10000;
    transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
    overflow: visible;
    box-shadow: 
        0 6px 24px rgba(0, 0, 0, 0.7),
        inset 0 0 0 0.5px rgba(255, 255, 255, 0.08);
    width: 110px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
}

/* When playing - show album art and pulse */
.dynamic-island.playing {
    width: 200px;
    height: 50px;
    border-radius: 25px;
    padding: 0 12px;
    justify-content: flex-start;
}

.island-album-mini {
    width: 0;
    height: 0;
    opacity: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
    flex-shrink: 0;
}

.dynamic-island.playing .island-album-mini {
    width: 36px;
    height: 36px;
    opacity: 1;
}

.island-track-mini {
    opacity: 0;
    font-size: 13px;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.dynamic-island.playing .island-track-mini {
    opacity: 1;
}

.music-icon-pulse {
    width: 6px;
    height: 6px;
    background: #00FF00;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.dynamic-island.playing .music-icon-pulse {
    opacity: 1;
    animation: pulse 1.5s ease-in-out infinite;
}

.island-compact {
    display: none;
}

.island-expanded {
    display: none;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 4px #00FF00;
    }
    50% {
        transform: scale(1.4);
        box-shadow: 0 0 8px #00FF00;
    }
}

/* Dynamic Island - как на iPhone */
.dynamic-island {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: #000000;
    width: 120px;
    height: 37px;
    border-radius: 50px;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    transition: all 0.6s cubic-bezier(0.76, 0, 0.24, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.dynamic-island.active {
    width: 260px;
    height: 50px;
    border-radius: 25px;
    padding: 0 12px 0 6px;
    justify-content: space-between;
}

.island-cover {
    width: 0;
    height: 0;
    opacity: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 6px;
    flex-shrink: 0;
    transition: all 0.6s cubic-bezier(0.76, 0, 0.24, 1);
    background-size: cover;
    background-position: center;
}

.dynamic-island.active .island-cover {
    width: 26px;
    height: 26px;
    opacity: 1;
    margin-left: 0;
}

.island-track-name {
    opacity: 0;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    margin-left: 0;
    transition: all 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}

.dynamic-island.active .island-track-name {
    opacity: 1;
    margin-left: 10px;
}

.island-waveform {
    display: flex;
    align-items: center;
    gap: 3px;
    opacity: 0;
    height: 20px;
    transition: opacity 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}

.dynamic-island.active .island-waveform {
    opacity: 1;
}

.wave-bar {
    width: 3px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    transition: all 0.15s ease;
}

.dynamic-island.active .wave-bar {
    animation: waveAnimation 1s ease-in-out infinite;
}

.wave-bar:nth-child(1) { height: 6px; animation-delay: 0s; }
.wave-bar:nth-child(2) { height: 12px; animation-delay: 0.1s; }
.wave-bar:nth-child(3) { height: 16px; animation-delay: 0.2s; }
.wave-bar:nth-child(4) { height: 10px; animation-delay: 0.3s; }
.wave-bar:nth-child(5) { height: 14px; animation-delay: 0.4s; }

@keyframes waveAnimation {
    0% { 
        transform: scaleY(0.4);
        opacity: 0.6;
    }
    50% { 
        transform: scaleY(1);
        opacity: 1;
    }
    100% { 
        transform: scaleY(0.4);
        opacity: 0.6;
    }
}

/* Hero Section - New Design */
.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.hero h2.subtitle {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.highlight {
    font-style: italic;
    font-weight: 500;
}

.highlight-italic {
    font-style: italic;
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.accent-text {
    color: #a78bfa;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-highlight {
    color: #60a5fa;
    font-weight: 600;
    font-family: 'SF Mono', 'Consolas', monospace;
    font-size: 0.95em;
    padding: 2px 6px;
    background: rgba(96, 165, 250, 0.1);
    border-radius: 4px;
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.hero-description {
    max-width: 800px;
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.hero-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.hero-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.hero-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(240, 147, 251, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(167, 139, 250, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.2);
}

.hero-link:hover::before {
    opacity: 1;
}

.hero-link i {
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.hero-link span {
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.section-icon {
    font-size: 1.8rem;
    margin-top: 8px;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    text-align: left;
    color: var(--text);
    line-height: 1.2;
}

.section-description {
    max-width: 900px;
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* About Section */
.about-section {
    margin: 80px 0;
}

.about-content {
    max-width: 900px;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.about-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.about-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.about-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(240, 147, 251, 0.15));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(167, 139, 250, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.15);
}

.about-link:hover::before {
    opacity: 1;
}

.about-link i {
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.about-link span {
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    width: 100%;
    padding: 60px 40px 40px;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 100px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand i {
    font-size: 1.2rem;
    color: #fbbf24;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.footer-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    font-family: 'SF Mono', 'Consolas', monospace;
}

.footer-domain {
    color: #a78bfa;
}

.footer-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-heart {
    color: #f472b6;
    font-weight: 600;
}

.footer-tech {
    color: #60a5fa;
    font-weight: 600;
    font-family: 'SF Mono', 'Consolas', monospace;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

.footer-hint {
    color: rgba(255, 255, 255, 0.25);
    font-style: italic;
}

/* Tech Tags */
.tech-tags {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tech-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tech-tag:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text);
}

.tech-tag.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text);
}

.tech-tag i {
    font-size: 0.9rem;
}

/* Project Cards */
.project-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(102, 126, 234, 0.5) 25%,
        rgba(240, 147, 251, 0.5) 50%,
        rgba(102, 126, 234, 0.5) 75%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.project-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.project-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.project-card:hover .project-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.5);
}

.project-title-block {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-title-block h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-year {
    font-size: 0.75rem;
    color: var(--text-secondary);
    padding: 4px 10px;
    background: rgba(167, 139, 250, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(167, 139, 250, 0.2);
    font-weight: 500;
}

.project-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.project-link:hover {
    color: #a78bfa;
    gap: 10px;
    background: rgba(167, 139, 250, 0.1);
    border-color: rgba(167, 139, 250, 0.3);
    transform: translateX(4px);
}

.project-subtitle {
    font-size: 0.9rem;
    color: #60a5fa;
    margin: -8px 0 0 0;
    font-family: 'SF Mono', 'Consolas', monospace;
    font-weight: 500;
}

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

.project-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(96, 165, 250, 0.08);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 6px;
    font-size: 0.75rem;
    color: #60a5fa;
    font-weight: 500;
}

.project-tag i {
    font-size: 0.8rem;
}

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

.tech-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(167, 139, 250, 0.08);
    border: 1px solid rgba(167, 139, 250, 0.15);
    border-radius: 6px;
    font-size: 0.75rem;
    color: #a78bfa;
    font-weight: 500;
    transition: all 0.2s ease;
}

.tech-badge:hover {
    background: rgba(167, 139, 250, 0.15);
    border-color: rgba(167, 139, 250, 0.3);
    transform: translateY(-2px);
}

.tech-badge i {
    font-size: 0.85rem;
}


/* Project Stats */
.project-stats {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.project-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.project-stat i {
    color: rgba(167, 139, 250, 0.8);
    font-size: 0.9rem;
}

/* Weather Widget Inline */
.weather-widget-inline {
    width: 100%;
    max-width: 500px;
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px) saturate(120%);
    -webkit-backdrop-filter: blur(30px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: fadeIn 0.8s ease;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 32px;
}

.weather-widget-inline:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.weather-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.weather-header i {
    font-size: 0.75rem;
    color: #a78bfa;
}

.weather-city {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: -0.01em;
}

.weather-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.weather-icon {
    font-size: 3rem;
    color: #fbbf24;
    text-shadow: 0 2px 12px rgba(251, 191, 36, 0.4);
    line-height: 1;
    flex-shrink: 0;
}

.weather-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.weather-temp {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    line-height: 1;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.weather-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: capitalize;
    line-height: 1.3;
}

.weather-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.weather-detail {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.weather-detail i {
    font-size: 0.85rem;
    color: #60a5fa;
}
