:root {
    --primary: #4fc3dc;
    --primary-light: #7dd8ec;
    --accent: #a8e6f0;
    --gold: #f0c866;
    --pink: #e8a4b8;
    --green: #7cb97c;
    --card-bg: rgba(12, 18, 24, 0.7);
    --card-border: rgba(79, 195, 220, 0.15);
    --text: #fff;
    --text-dim: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0f;
    z-index: 0;
}

.preloader-pfps {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.preloader-pfp {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    opacity: 0;
    border: 2px solid rgba(79, 195, 220, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 20px rgba(79, 195, 220, 0.2);
    animation: pfpFloat 4s ease-in-out infinite, pfpFadeIn 0.6s ease forwards;
    filter: saturate(0.9);
}

@keyframes pfpFadeIn {
    to { opacity: 0.7; }
}

@keyframes pfpFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.preloader-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.preloader-logo {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 0%, rgba(79, 195, 220, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    animation: logoPulse 2s ease-in-out infinite;
    text-shadow: 0 0 60px rgba(79, 195, 220, 0.5);
}

@keyframes logoPulse {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(79, 195, 220, 0.3)); }
    50% { filter: drop-shadow(0 0 40px rgba(79, 195, 220, 0.6)); }
}

.preloader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 1rem;
}

.preloader-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary, #4fc3dc), var(--accent, #a8e6f0));
    border-radius: 2px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(79, 195, 220, 0.5);
}

.preloader-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 1px;
}

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(8, 12, 16, 0.8);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), #2a8a9e);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-light), var(--primary));
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(8, 12, 16, 0.8);
}

body {
    font-family: 'Inter', sans-serif;
    background: #080c10;
    color: var(--text);
    overflow-x: hidden;
}

.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    background: radial-gradient(ellipse at 30% 20%, #0a1520 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, #0f1a24 0%, transparent 50%),
                #080c10;
}

.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    opacity: 0.03;
    mix-blend-mode: multiply;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(79, 195, 220, 0.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    background: transparent;
}

.cursor::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.cursor.hover {
    width: 40px;
    height: 40px;
    border-color: var(--primary-light);
    background: rgba(79, 195, 220, 0.1);
}

.cursor.hover::before {
    width: 6px;
    height: 6px;
    background: var(--primary-light);
}

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.lang-switcher {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 100;
    display: flex;
    gap: 0.5rem;
    background: var(--card-bg);
    padding: 0.5rem;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    backdrop-filter: blur(20px);
}

.lang-btn {
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.lang-btn:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.lang-btn.active {
    color: var(--primary-light);
    background: rgba(79, 195, 220, 0.2);
    border-color: rgba(79, 195, 220, 0.5);
    box-shadow: 0 4px 12px rgba(79, 195, 220, 0.3);
}

.video-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(20, 40, 50, 0.3);
    mix-blend-mode: color;
    pointer-events: none;
}

.video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(180deg, rgba(20, 60, 80, 0.1) 0%, rgba(15, 30, 45, 0.15) 100%);
    pointer-events: none;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem 4rem;
    z-index: 1;
}

.hero-content {
    text-align: left;
}

.hero-name {
    font-size: clamp(4rem, 15vw, 10rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 0.9;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    background: linear-gradient(180deg, #fff 0%, rgba(79, 195, 220, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 40px rgba(79, 195, 220, 0.3));
}

.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    animation: bounce 2s ease-in-out infinite;
    transition: opacity 0.4s ease;
}

.scroll-icon {
    width: 24px;
    height: 24px;
    transform: rotate(90deg);
}

.scroll-icon svg {
    width: 100%;
    height: 100%;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.content {
    position: relative;
    min-height: 100vh;
    z-index: 2;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.content.visible {
    opacity: 1;
    transform: translateY(0);
}

.content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 15, 0.2) 0%, rgba(10, 10, 15, 0.6) 15%, rgba(10, 10, 15, 0.85) 100%);
    pointer-events: none;
}

.main {
    position: relative;
    z-index: 1;
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    max-width: 1100px;
    width: 100%;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.content.visible .card {
    opacity: 1;
    transform: translateY(0);
}

.card-inner {
    padding: 1.5rem;
    height: 100%;
    position: relative;
    z-index: 1;
}

.content.visible .card-profile { transition-delay: 0.05s; }
.content.visible .card-socials { transition-delay: 0.1s; }
.content.visible .card-skills { transition-delay: 0.15s; }
.content.visible .card-stats { transition-delay: 0.2s; }
.content.visible .card-time { transition-delay: 0.25s; }
.content.visible .card-status { transition-delay: 0.3s; }

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(79, 195, 220, 0.4);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.card-profile { grid-column: span 3; grid-row: span 2; }
.card-socials { grid-column: span 2; grid-row: span 2; }
.card-status { grid-column: span 1; grid-row: span 1; }
.card-time { grid-column: span 1; grid-row: span 1; }
.card-skills { grid-column: span 2; grid-row: span 2; }
.card-stats { grid-column: span 4; grid-row: span 2; }

.card-profile .card-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

.profile-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.avatar-box {
    position: relative;
    flex-shrink: 0;
}

.avatar-ring {
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: pulse-ring 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse-ring {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

.avatar-img {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(79, 195, 220, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.avatar-box:hover .avatar-img {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(79, 195, 220, 0.4);
    border-color: var(--primary);
}

.status-dot {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    background: var(--green);
    border: 3px solid #0a0a0f;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(124, 185, 124, 0.5); }
    50% { box-shadow: 0 0 0 6px rgba(124, 185, 124, 0); }
}

.profile-text { 
    flex: 1; 
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.name {
    font-size: 1.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #fff, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.verified-icon {
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    padding: 3px;
    -webkit-text-fill-color: white;
}

.title-typing {
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.caret {
    color: var(--primary);
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.badge {
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.badge-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.title-icon {
    width: 16px;
    height: 16px;
    vertical-align: -2px;
    margin-right: 4px;
}

.badge-purple {
    background: rgba(79, 195, 220, 0.2);
    border-color: rgba(79, 195, 220, 0.5);
    color: var(--primary-light);
}

.badge-gold {
    background: rgba(240, 200, 102, 0.2);
    border-color: rgba(240, 200, 102, 0.5);
    color: var(--gold);
}

.badge-cyan {
    background: rgba(168, 230, 240, 0.2);
    border-color: rgba(168, 230, 240, 0.5);
    color: var(--accent);
}

.bio {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: center;
    max-width: 400px;
}

.bio .hl {
    color: var(--primary-light);
    font-weight: 600;
}

.card-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dim);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.social-link:hover {
    background: rgba(79, 195, 220, 0.12);
    border-color: var(--primary);
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.social-icon svg {
    width: 22px;
    height: 22px;
}

.social-link:hover .social-icon {
    transform: scale(1.05);
}

.social-icon.lolz { 
    background: linear-gradient(145deg, #1f1f1f, #151515);
    color: #22c55e;
}

.social-icon.lolz svg {
    width: 26px;
    height: 26px;
}

.social-link:hover .social-icon.lolz {
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.social-icon.github { 
    background: linear-gradient(145deg, #1f1f1f, #151515);
    color: #fff;
}

.social-link:hover .social-icon.github {
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.social-icon.telegram { 
    background: linear-gradient(145deg, #0099dd, #0077aa);
    color: #fff;
}

.social-link:hover .social-icon.telegram {
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.5);
}

.social-text { flex: 1; }
.social-name { display: block; font-weight: 600; font-size: 0.9rem; }
.social-handle { display: block; font-size: 0.75rem; color: var(--text-muted); }

.arrow {
    color: var(--text-muted);
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-link:hover .arrow {
    transform: translateX(4px);
    color: var(--primary);
}

.card-skills .card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-skills .skills-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.skill {
    display: grid;
    grid-template-columns: 100px 1fr 45px;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.skill span:first-child {
    color: var(--text-dim);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
    width: 0;
    transition: width 1s ease-out;
    box-shadow: 0 0 6px rgba(79, 195, 220, 0.3);
}

.pct {
    color: var(--primary-light);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    text-align: right;
}

.stats-combined {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--card-border);
}

.stat { text-align: center; }

.stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
    background: linear-gradient(135deg, #fff, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.stats-bottom {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    flex: 1;
}

.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    border-right: 1px solid var(--card-border);
    padding-right: 1.5rem;
}

.stack-section {
    flex: 1;
}

.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.time {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    background: linear-gradient(135deg, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.time-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.online-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.online-dot {
    width: 10px;
    height: 10px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.online-text {
    font-weight: 600;
    color: var(--green);
}

.status-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.stack-group { margin-bottom: 0.75rem; }
.stack-group:last-child { margin-bottom: 0; }

.stack-label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.tag {
    padding: 0.35rem 0.65rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 6px;
    font-size: 0.7rem;
    color: var(--text-dim);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.tag:hover {
    background: rgba(79, 195, 220, 0.15);
    border-color: var(--primary);
    color: var(--primary-light);
}

.contact-text {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), #2a8a9e);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(79, 195, 220, 0.4);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 195, 220, 0.5);
}

.footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

@media (max-width: 900px) {
    .hero { padding: 2rem; }
    .hero-name { font-size: clamp(3rem, 12vw, 8rem); }
    .bento-grid { grid-template-columns: repeat(4, 1fr); }
    .card-profile { grid-column: span 4; grid-row: span 1; }
    .card-socials { grid-column: span 3; grid-row: span 1; }
    .card-status { grid-column: span 1; grid-row: span 1; }
    .card-time { grid-column: span 1; grid-row: span 1; }
    .card-skills { grid-column: span 2; grid-row: span 1; }
    .card-stats { grid-column: span 4; grid-row: span 2; }
    .stats-bottom { flex-direction: column; gap: 1rem; }
    .contact-section { border-right: none; border-bottom: 1px solid var(--card-border); padding-right: 0; padding-bottom: 1rem; }
}

@media (max-width: 600px) {
    .hero { padding: 1.5rem; align-items: center; }
    .hero-content { text-align: center; }
    .hero-name { writing-mode: horizontal-tb; font-size: 3rem; transform: none; }
    .main { padding: 2rem 1rem; }
    .bento-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .card-profile, .card-socials, .card-skills, .card-stats, .card-time, .card-status { grid-column: span 2; grid-row: span 1; }
    .card-stats { grid-row: span 2; }
    .name { font-size: 1.4rem; }
    .avatar-img { width: 60px; height: 60px; }
    .stat-num { font-size: 1.5rem; }
    .skill { grid-template-columns: 80px 1fr 40px; }
    .stats-row { flex-wrap: wrap; gap: 1rem; }
}

@media (pointer: coarse) {
    * { cursor: auto; }
    .cursor, .cursor-glow { display: none; }
    .lang-btn { cursor: pointer; }
}