/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: #ffffff;
    height: 100vh;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    cursor: url('./assets/cursors/cursor-anime.png'), auto;
}

/* Loading Overlay with Japanese Smile */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform, backdrop-filter;
}

.loading-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(0px);
    transform: scale(1.05) translateY(-20px);
    pointer-events: none;
}

.loading-content {
    text-align: center;
    position: relative;
    z-index: 10;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
}

.loading-overlay.fade-out .loading-content {
    transform: translateY(-30px) scale(0.9);
    opacity: 0;
}

/* Japanese Smile with Neon Effect */
.japanese-smile {
    position: relative;
    display: inline-block;
}

.kaomoji {
    font-size: 4em;
    color: #ffffff;
    font-family: 'Hiragino Kaku Gothic Pro', 'Yu Gothic', 'Meiryo', 'MS Gothic', sans-serif;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.5),
        0 0 20px rgba(255, 255, 255, 0.3);
    display: block;
    position: relative;
    z-index: 2;
    font-weight: normal;
    transition: all 0.3s ease;
}

/* Removed smile-glow for cleaner look */

/* Removed loading text and particles for minimal design */

/* Background System with Animated GIF */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./assets/images/baixados.gif') center/cover no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: blur(4px);
    transform: scale(1.03);
    z-index: -2;
    transition: all 0.5s ease;
}

.background-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

/* Container */
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 80px 20px 20px 20px;
    perspective: 1200px;
}

/* Gaming Business Card with Enhanced 3D Effects */
.gaming-card {
    width: 320px;
    height: 180px;
    padding: 60px 25px 20px 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 20px;
    overflow: visible;
    margin-top: 60px;
    transform-style: preserve-3d;
    transition: transform 0.2s ease-out;
    
    /* Semi-transparent dark card styling for animated background */
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(10, 10, 10, 0.85) 50%, 
        rgba(0, 0, 0, 0.8) 100%);
    backdrop-filter: blur(12px) saturate(1.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.6),
        0 0 80px rgba(255, 255, 255, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Subtle 3D Card Hover Effects */
.gaming-card:hover {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(20, 20, 20, 0.85) 50%, 
        rgba(0, 0, 0, 0.8) 100%);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.7),
        0 0 80px rgba(255, 255, 255, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Profile Section - Main Focus */
.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    justify-content: center;
    width: 100%;
    margin-bottom: 15px;
}

.profile-avatar {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    z-index: 10;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s ease;
    animation: avatarFloat 4s ease-in-out infinite;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.6),
        0 0 0 3px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 255, 255, 0.1);
}

@keyframes avatarFloat {
    0%, 100% {
        transform: translateY(0px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    }
}

.profile-avatar:hover img {
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(255, 255, 255, 0.3),
        0 0 0 3px rgba(0, 0, 0, 0.4);
    transform: scale(1.05) translateY(-3px);
}

.status-indicator {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #0a0a0a;
}

.status-indicator.online {
    background: #ffffff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* Modern Sanity Typography with RADICAL Glitch Effect */
.sanity-text {
    font-size: 1.3em;
    font-weight: 500;
    margin: 0;
    color: #ffffff;
    letter-spacing: 0.08em;
    font-family: 'Poppins', 'Segoe UI', 'Roboto', sans-serif;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    animation: radicalGlitch 4s infinite;
}

/* RADICAL Glitch Effect Animation - Black & White */
@keyframes radicalGlitch {
    0%, 80%, 100% {
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.4),
            0 0 0 transparent,
            0 0 0 transparent;
        transform: translate(0) skew(0deg);
        filter: none;
    }
    
    81% {
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.4),
            -4px 0 #000000,
            4px 0 #ffffff,
            -2px 2px #000000,
            2px -2px #ffffff;
        transform: translate(-3px, 1px) skew(-2deg);
        filter: contrast(1.5) brightness(1.2);
    }
    
    82% {
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.4),
            5px 0 #000000,
            -5px 0 #ffffff,
            3px -1px #000000,
            -3px 1px #ffffff;
        transform: translate(4px, -2px) skew(3deg);
        filter: contrast(2) brightness(0.8);
    }
    
    83% {
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.4),
            -3px 0 #000000,
            3px 0 #ffffff,
            -6px 0 #000000,
            6px 0 #ffffff;
        transform: translate(-2px, 2px) skew(-5deg) scaleX(1.1);
        filter: contrast(1.8) invert(0.1);
    }
    
    84% {
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.4),
            2px 0 #000000,
            -2px 0 #ffffff,
            4px 2px #000000,
            -4px -2px #ffffff;
        transform: translate(1px, -1px) skew(1deg) scaleX(0.9);
        filter: contrast(1.3) brightness(1.1);
    }
    
    85% {
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.4),
            -6px 0 #000000,
            6px 0 #ffffff,
            -3px -3px #000000,
            3px 3px #ffffff;
        transform: translate(-4px, 0) skew(-3deg) scaleY(1.05);
        filter: contrast(2.2) brightness(0.9);
    }
    
    86% {
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.4),
            3px 0 #000000,
            -3px 0 #ffffff,
            1px 4px #000000,
            -1px -4px #ffffff;
        transform: translate(2px, 1px) skew(4deg) scaleX(1.05);
        filter: contrast(1.6) invert(0.05);
    }
    
    87% {
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.4),
            -1px 0 #000000,
            1px 0 #ffffff,
            -5px 1px #000000,
            5px -1px #ffffff;
        transform: translate(-1px, -2px) skew(-1deg);
        filter: contrast(1.4) brightness(1.3);
    }
    
    88%, 100% {
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.4),
            0 0 0 transparent,
            0 0 0 transparent;
        transform: translate(0) skew(0deg);
        filter: none;
    }
}

/* RADICAL Glitch pseudo-elements - Black & White */
.sanity-text::before {
    content: 'SANITY';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    color: #000000;
    z-index: -1;
    animation: radicalGlitchBefore 4s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 40%, 0 40%);
    mix-blend-mode: difference;
}

.sanity-text::after {
    content: 'SANITY';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    color: #ffffff;
    z-index: -1;
    animation: radicalGlitchAfter 4s infinite;
    clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
    mix-blend-mode: difference;
}

@keyframes radicalGlitchBefore {
    0%, 80%, 100% {
        transform: translate(0) skew(0deg);
        opacity: 0;
        clip-path: polygon(0 0, 100% 0, 100% 40%, 0 40%);
    }
    81% {
        transform: translate(-6px, 2px) skew(-3deg) scaleX(1.1);
        opacity: 0.9;
        clip-path: polygon(0 0, 100% 0, 100% 35%, 0 45%);
    }
    82% {
        transform: translate(8px, -3px) skew(5deg) scaleY(1.05);
        opacity: 0.8;
        clip-path: polygon(0 5%, 100% 0, 100% 50%, 0 30%);
    }
    83% {
        transform: translate(-4px, 4px) skew(-8deg) scaleX(0.9);
        opacity: 0.95;
        clip-path: polygon(0 0, 100% 10%, 100% 45%, 0 35%);
    }
    84% {
        transform: translate(3px, -1px) skew(2deg) scaleY(0.95);
        opacity: 0.7;
        clip-path: polygon(0 0, 100% 0, 100% 60%, 0 20%);
    }
    85% {
        transform: translate(-7px, 1px) skew(-4deg) scaleX(1.05);
        opacity: 0.85;
        clip-path: polygon(0 15%, 100% 0, 100% 40%, 0 55%);
    }
    86% {
        transform: translate(5px, 2px) skew(6deg) scaleY(1.02);
        opacity: 0.75;
        clip-path: polygon(0 0, 100% 5%, 100% 25%, 0 45%);
    }
    87% {
        transform: translate(-2px, -2px) skew(-1deg);
        opacity: 0.6;
        clip-path: polygon(0 0, 100% 0, 100% 40%, 0 40%);
    }
    88%, 100% {
        transform: translate(0) skew(0deg);
        opacity: 0;
        clip-path: polygon(0 0, 100% 0, 100% 40%, 0 40%);
    }
}

@keyframes radicalGlitchAfter {
    0%, 80%, 100% {
        transform: translate(0) skew(0deg);
        opacity: 0;
        clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
    }
    81% {
        transform: translate(7px, -2px) skew(4deg) scaleX(0.95);
        opacity: 0.8;
        clip-path: polygon(0 55%, 100% 70%, 100% 100%, 0 90%);
    }
    82% {
        transform: translate(-9px, 3px) skew(-6deg) scaleY(1.03);
        opacity: 0.9;
        clip-path: polygon(0 50%, 100% 60%, 100% 95%, 0 100%);
    }
    83% {
        transform: translate(5px, -4px) skew(7deg) scaleX(1.08);
        opacity: 0.75;
        clip-path: polygon(0 65%, 100% 45%, 100% 100%, 0 85%);
    }
    84% {
        transform: translate(-3px, 1px) skew(-2deg) scaleY(0.97);
        opacity: 0.85;
        clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0 100%);
    }
    85% {
        transform: translate(8px, -1px) skew(5deg) scaleX(1.02);
        opacity: 0.7;
        clip-path: polygon(0 40%, 100% 75%, 100% 100%, 0 80%);
    }
    86% {
        transform: translate(-6px, 2px) skew(-3deg) scaleY(1.01);
        opacity: 0.8;
        clip-path: polygon(0 60%, 100% 55%, 100% 100%, 0 95%);
    }
    87% {
        transform: translate(2px, -1px) skew(1deg);
        opacity: 0.65;
        clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
    }
    88%, 100% {
        transform: translate(0) skew(0deg);
        opacity: 0;
        clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
    }
}

/* RADICAL underline element */
.sanity-text .underline {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: radicalGlitchLine 4s infinite;
}

@keyframes radicalGlitchLine {
    0%, 80%, 100% {
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transform: scaleX(1) skew(0deg);
        height: 2px;
    }
    81% {
        background: linear-gradient(90deg, transparent, #000000, rgba(255, 255, 255, 0.8), #000000, transparent);
        transform: scaleX(1.3) skew(-2deg);
        height: 3px;
    }
    82% {
        background: linear-gradient(90deg, #ffffff, transparent, #000000, transparent, #ffffff);
        transform: scaleX(0.7) skew(4deg);
        height: 4px;
    }
    83% {
        background: linear-gradient(90deg, transparent, #000000, #ffffff, #000000, transparent);
        transform: scaleX(1.5) skew(-5deg);
        height: 2px;
    }
    84% {
        background: linear-gradient(90deg, #000000, #ffffff, transparent, #ffffff, #000000);
        transform: scaleX(0.8) skew(3deg);
        height: 3px;
    }
    85% {
        background: linear-gradient(90deg, transparent, #ffffff, #000000, #ffffff, transparent);
        transform: scaleX(1.2) skew(-3deg);
        height: 5px;
    }
    86% {
        background: linear-gradient(90deg, #ffffff, #000000, transparent, #000000, #ffffff);
        transform: scaleX(0.9) skew(2deg);
        height: 2px;
    }
    87% {
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), rgba(0, 0, 0, 0.4), transparent);
        transform: scaleX(1.1) skew(-1deg);
        height: 2px;
    }
    88%, 100% {
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transform: scaleX(1) skew(0deg);
        height: 2px;
    }
}

/* Social Section */
.social-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.social-links-compact {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.social-links-compact .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1em;
    position: relative;
    overflow: hidden;
}

.social-links-compact .social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.social-links-compact .social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-links-compact .social-link:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 255, 255, 0.1);
}

/* Tooltips */
.social-link {
    position: relative;
}

.social-link::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8em;
    font-weight: 400;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1000;
}

.social-link::after {
    content: '';
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1000;
}

.social-link:hover::before,
.social-link:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Enhanced Music Control with Neon Effect */
.music-control {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.music-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(20, 20, 20, 0.95) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 255, 255, 0.05);
}

/* White Glow Effect on Hover */
.music-btn:hover {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(30, 30, 30, 1) 100%);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px) scale(1.1);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 255, 255, 0.2),
        0 0 60px rgba(255, 255, 255, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.music-btn:active {
    transform: translateY(0) scale(1.05);
}

.music-btn.muted {
    opacity: 0.6;
    border-color: rgba(255, 255, 255, 0.05);
}

.music-btn.muted:hover {
    opacity: 0.8;
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 255, 255, 0.15),
        0 0 60px rgba(255, 255, 255, 0.05);
}

/* Volume Tooltip */
.volume-tooltip {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(20, 20, 20, 0.98) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px 16px;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1001;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 255, 255, 0.1);
}

.music-btn:hover + .volume-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.volume-text {
    color: #ffffff;
    font-size: 0.85em;
    font-weight: 500;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
    display: block;
    margin-bottom: 8px;
    text-align: center;
}

.volume-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.volume-fill {
    height: 100%;
    background: linear-gradient(90deg, 
        #ffffff 0%, 
        #cccccc 50%, 
        #ffffff 100%);
    border-radius: 2px;
    width: 30%;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    animation: volumePulse 2s ease-in-out infinite alternate;
}

@keyframes volumePulse {
    0% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }
    100% {
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    }
}

/* Tooltip Arrow */
.volume-tooltip::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .gaming-card {
        width: 90vw;
        max-width: 280px;
        height: 160px;
        padding: 50px 20px 15px 20px;
        margin-top: 50px;
        justify-content: space-evenly;
    }
    
    .profile-avatar {
        width: 80px;
        height: 80px;
        top: -40px;
    }
    
    .sanity-text {
        font-size: 1em;
    }
    
    .profile-section {
        gap: 6px;
    }
    
    .social-links-compact {
        gap: 12px;
    }
    
    .social-links-compact .social-link {
        width: 32px;
        height: 32px;
        font-size: 0.9em;
    }
    
    .container {
        padding: 60px 20px 20px 20px;
    }
    
    .background-overlay {
        background-size: cover;
        background-position: center;
    }
    
    .music-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9em;
    }
    
    .volume-tooltip {
        min-width: 100px;
        padding: 10px 12px;
        font-size: 0.8em;
    }
    
    /* Loading Overlay Mobile */
    .kaomoji {
        font-size: 3em;
    }
}

/* Editable Content */
[contenteditable="true"] {
    outline: none;
    border-radius: 4px;
    padding: 2px 4px;
    transition: all 0.3s ease;
}

[contenteditable="true"]:hover {
    background: rgba(255, 255, 255, 0.05);
}

[contenteditable="true"]:focus {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

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