/* ============================================
   COSMIC VIDEO EDITOR PORTFOLIO STYLES
   ============================================ */

/* Import Nexa Font */
@import url('https://fonts.cdnfonts.com/css/nexa');

/* CSS Variables for Consistent Theming */
:root {
    --cosmic-black: #000000;
    --deep-space: #0a0a0a;
    --stellar-blue: #1e3a8a;
    --cosmic-purple: #6b46c1;
    --nebula-pink: #db2777;
    --star-white: #ffffff;
    --star-yellow: #fbbf24;
    --text-primary: #ffffff;
    --text-secondary: #d1d5db;
    --text-muted: #9ca3af;
    --accent-gold: #f59e0b;
    --success-green: #10b981;
    --accent-purple: #6a0dad;
    --accent-light-purple: #9932cc;
    --galaxy-blue: #4a90e2;
    --galaxy-teal: #4ecdc4;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-cosmic: 0 10px 25px rgba(0, 0, 0, 0.5);
    --gradient-cosmic: linear-gradient(135deg, var(--stellar-blue), var(--cosmic-purple));
    --gradient-nebula: linear-gradient(45deg, var(--cosmic-purple), var(--nebula-pink));
}

/* Accessibility Styles */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--accent-purple);
    color: var(--star-white);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10001;
    font-weight: bold;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* FIXED CUSTOM CURSOR - PROPERLY CENTERED */
* {
    font-family: 'Nexa', sans-serif;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M3 12h18M12 3v18" stroke="%236a0dad" stroke-width="2" stroke-linecap="round"/></svg>') 12 12, crosshair !important;
}

a, button, .clickable, .btn, .social-btn, .social-icon, .nav-link, .portfolio-item, .skill-item {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M3 12h18M12 3v18" stroke="%239932cc" stroke-width="2" stroke-linecap="round"/><circle cx="12" cy="12" r="3" fill="%239932cc"/></svg>') 12 12, pointer !important;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Nexa', sans-serif;
    background-color: var(--cosmic-black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    -webkit-highlight: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Interactive Background Effect */
body::before {
    content: "";
    position: fixed;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 0%,
            rgba(106, 13, 173, 0.1) 25%,
            rgba(153, 50, 204, 0.05) 50%,
            rgba(106, 13, 173, 0.1) 75%,
            transparent 100%);
    background-size: 300% 300%;
    animation: moveBackground 15s ease infinite;
    z-index: -2;
    pointer-events: none;
}

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

/* Enhanced Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--cosmic-black);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--accent-purple), var(--accent-light-purple));
    border-radius: 10px;
    border: 2px solid var(--cosmic-black);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--accent-light-purple), var(--accent-purple));
}

/* Firefox Scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-purple) var(--cosmic-black);
}

/* Cosmic Background Canvas */
#cosmic-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at center, var(--deep-space) 0%, var(--cosmic-black) 100%);
}

/* ENHANCED NAVIGATION STYLES */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: var(--shadow-cosmic);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

/* LOGO POSITIONING - Extreme Left, 15% Larger */
.nav-logo {
    position: absolute;
    left: 2rem;
    z-index: 1001;
}

/* Logo 15% Size Increase */
.navbar-logo {
    height: 57.5px; /* Original 50px + 15% = 57.5px */
    transition: var(--transition-smooth);
    animation: subtleLogo 3s ease-in-out infinite alternate;
    border-radius: 10px;
}

@keyframes subtleLogo {
    0% {
        transform: translateY(0px) rotate(0deg);
        filter: brightness(1);
    }
    25% {
        transform: translateY(-3px) rotate(1deg);
        filter: brightness(1.1);
    }
    50% {
        transform: translateY(-5px) rotate(0deg);
        filter: brightness(1.2);
    }
    75% {
        transform: translateY(-3px) rotate(-1deg);
        filter: brightness(1.1);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
        filter: brightness(1);
    }
}

.navbar-logo:hover {
    transform: scale(1.05) rotate(5deg);
    filter: brightness(1.3) hue-rotate(45deg);
}

/* CENTERED NAVIGATION MENU */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0 auto; /* Center the navigation menu */
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--star-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-cosmic);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition-smooth);
}

/* ============================================
   3D LIQUID CHROME TITLE STYLES
   ============================================ */

.liquid-chrome {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    margin-top: 2rem;
    position: relative;
    perspective: 1000px;
    text-align: center;
    cursor: pointer;
    user-select: none;
    
    /* Enhanced liquid chrome gradient with more complexity */
    background: linear-gradient(45deg, 
        #6a0dad 0%,
        #9932cc 15%,
        #ba55d3 30%,
        #dda0dd 45%,
        #e6e6fa 60%,
        #dda0dd 75%,
        #ba55d3 85%,
        #6a0dad 100%);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Enhanced glow effects with multiple layers */
    filter: drop-shadow(0 0 20px rgba(106, 13, 173, 0.9)) 
            drop-shadow(0 0 40px rgba(153, 50, 204, 0.7))
            drop-shadow(0 0 60px rgba(186, 85, 211, 0.5))
            drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
    
    /* Enhanced transition with spring effect */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Enhanced chrome animation */
    animation: enhancedLiquidChrome 4s ease-in-out infinite alternate;
}

/* Hero subtitle styling */
.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    margin: 0.5rem 0 1.5rem 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    
    /* Subtle gradient effect */
    background: linear-gradient(45deg, 
        var(--text-secondary) 0%,
        var(--accent-light-purple) 50%,
        var(--text-secondary) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Subtle animation */
    animation: subtitleGlow 3s ease-in-out infinite alternate;
    
    /* Ensure proper positioning */
    position: relative;
    z-index: 2;
}

@keyframes subtitleGlow {
    0% {
        background-position: 0% 50%;
        filter: brightness(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    }
    100% {
        background-position: 100% 50%;
        filter: brightness(1.2) drop-shadow(0 4px 8px rgba(106, 13, 173, 0.4));
    }
}

/* Fallback para navegadores que no soportan background-clip */
@supports not (-webkit-background-clip: text) {
    .liquid-chrome {
        color: #dda0dd !important;
        -webkit-text-fill-color: #dda0dd !important;
        text-shadow: 
            0 0 20px rgba(106, 13, 173, 1),
            0 0 40px rgba(153, 50, 204, 0.8),
            0 0 60px rgba(186, 85, 211, 0.6);
    }
    
    .hero-subtitle {
        color: var(--text-secondary) !important;
        -webkit-text-fill-color: var(--text-secondary) !important;
    }
}

.liquid-chrome:hover {
    transform: scale(1.08) perspective(1000px) rotateX(5deg) rotateY(5deg);
    filter: drop-shadow(0 0 40px rgba(106, 13, 173, 1)) 
            drop-shadow(0 0 80px rgba(153, 50, 204, 0.9))
            drop-shadow(0 0 120px rgba(186, 85, 211, 0.7))
            drop-shadow(0 12px 30px rgba(0, 0, 0, 0.5));
}

@keyframes enhancedLiquidChrome {
    0% {
        background-position: 0% 50%;
        transform: rotateX(0deg) rotateY(0deg) translateZ(0px);
        filter: hue-rotate(0deg) brightness(1) saturate(1);
    }
    20% {
        background-position: 25% 25%;
        transform: rotateX(1deg) rotateY(1deg) translateZ(2px);
        filter: hue-rotate(5deg) brightness(1.05) saturate(1.1);
    }
    40% {
        background-position: 75% 75%;
        transform: rotateX(2deg) rotateY(-1deg) translateZ(4px);
        filter: hue-rotate(10deg) brightness(1.1) saturate(1.2);
    }
    60% {
        background-position: 100% 50%;
        transform: rotateX(-1deg) rotateY(2deg) translateZ(3px);
        filter: hue-rotate(15deg) brightness(1.15) saturate(1.15);
    }
    80% {
        background-position: 50% 100%;
        transform: rotateX(1deg) rotateY(-2deg) translateZ(1px);
        filter: hue-rotate(10deg) brightness(1.08) saturate(1.1);
    }
    100% {
        background-position: 0% 50%;
        transform: rotateX(0deg) rotateY(0deg) translateZ(0px);
        filter: hue-rotate(0deg) brightness(1) saturate(1);
    }
}

/* Liquid Chrome Hover Effect */
.liquid-chrome:hover {
    transform: scale(1.05) rotateX(5deg) rotateY(5deg);
    text-shadow: 
        0 2px 0 #4a154b,
        0 4px 0 #4a154b,
        0 6px 0 #4a154b,
        0 8px 0 #4a154b,
        0 10px 0 #4a154b,
        0 12px 2px rgba(0,0,0,.2),
        0 0 10px rgba(106, 13, 173, 0.8),
        0 2px 6px rgba(0,0,0,.4),
        0 6px 10px rgba(0,0,0,.3),
        0 10px 20px rgba(0,0,0,.35),
        0 20px 40px rgba(106, 13, 173, 0.6),
        0 40px 80px rgba(153, 50, 204, 0.5);
}

/* ============================================
   ENHANCED HERO IDENTITY IMAGE WITH TV STATIC & 3D ROTATION
   ============================================ */

.hero-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem 0;
    position: relative;
}

.hero-identity-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: all 0.2s ease-out;
    position: relative;
    cursor: pointer;
    
    /* Enhanced 3D perspective */
    transform-style: preserve-3d;
    perspective: 1000px;
    
    /* Initial subtle glow */
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3))
            contrast(1.1) brightness(1.05);
    
    /* Enhanced floating animation */
    animation: enhancedImageFloat 10s ease-in-out infinite;
}

/* Enhanced TV Static Effect */
.hero-identity-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 1px,
            rgba(255, 255, 255, 0.03) 1px,
            rgba(255, 255, 255, 0.03) 2px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 1px,
            rgba(255, 255, 255, 0.02) 1px,
            rgba(255, 255, 255, 0.02) 2px
        );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 15px;
    z-index: 1;
}

/* Additional static noise layer */
.hero-identity-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 15px;
    z-index: 2;
}

/* Enhanced static effect activation */
.hero-identity-image.static-effect::before {
    opacity: 0.6;
    animation: enhancedStaticNoise 0.05s infinite;
}

.hero-identity-image.static-effect::after {
    opacity: 0.4;
    animation: staticFlicker 0.1s infinite alternate;
}

/* Enhanced hover effects with 3D rotation */
.hero-identity-image:hover {
    transform: 
        perspective(1000px) 
        rotateX(5deg) 
        rotateY(10deg) 
        translateZ(20px) 
        scale(1.05);
    filter: 
        drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4))
        drop-shadow(0 0 20px rgba(106, 13, 173, 0.3))
        contrast(1.2) 
        brightness(1.1) 
        saturate(1.1);
}

/* Enhanced animations */
@keyframes enhancedImageFloat {
    0%, 100% {
        transform: translateY(0px) rotateZ(0deg);
    }
    20% {
        transform: translateY(-8px) rotateZ(1deg);
    }
    40% {
        transform: translateY(-15px) rotateZ(0deg);
    }
    60% {
        transform: translateY(-12px) rotateZ(-1deg);
    }
    80% {
        transform: translateY(-6px) rotateZ(0.5deg);
    }
}

@keyframes enhancedStaticNoise {
    0% { 
        transform: translateX(0px) translateY(0px);
        opacity: 0.6;
    }
    10% { 
        transform: translateX(1px) translateY(-1px);
        opacity: 0.7;
    }
    20% { 
        transform: translateX(-1px) translateY(1px);
        opacity: 0.5;
    }
    30% { 
        transform: translateX(1px) translateY(1px);
        opacity: 0.8;
    }
    40% { 
        transform: translateX(-1px) translateY(-1px);
        opacity: 0.6;
    }
    50% { 
        transform: translateX(2px) translateY(0px);
        opacity: 0.7;
    }
    60% { 
        transform: translateX(-2px) translateY(1px);
        opacity: 0.5;
    }
    70% { 
        transform: translateX(1px) translateY(-2px);
        opacity: 0.8;
    }
    80% { 
        transform: translateX(0px) translateY(2px);
        opacity: 0.6;
    }
    90% { 
        transform: translateX(-1px) translateY(0px);
        opacity: 0.7;
    }
    100% { 
        transform: translateX(0px) translateY(0px);
        opacity: 0.6;
    }
}

@keyframes staticFlicker {
    0% { opacity: 0.4; }
    50% { opacity: 0.2; }
    100% { opacity: 0.6; }
}

/* ============================================
   PARALLAX SKILLS SECTION STYLES
   ============================================ */

.parallax-card {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    cursor: pointer;
    overflow: hidden;
}

.parallax-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(106, 13, 173, 0.1), 
        rgba(153, 50, 204, 0.1), 
        rgba(74, 144, 226, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    z-index: 1;
}

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

.skill-icon-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--galaxy-blue), var(--accent-purple));
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.skill-icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: all 0.1s ease-out;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.parallax-card:hover .skill-icon-container {
    box-shadow: 
        0 0 40px var(--galaxy-blue),
        0 20px 40px rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
}

.parallax-card:hover .skill-icon-img {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4)) brightness(1.1);
}

/* ============================================
   ENHANCED CONTACT SECTION - PERFECTLY STRUCTURED
   ============================================ */

.contact-buttons-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 100%;
    flex-wrap: wrap;
}

.contact-info-row {
    /* Contact information buttons styling */
}

.social-media-row {
    /* Social media buttons styling */
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    min-width: 160px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    
    /* Enhanced glow effect */
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(106, 13, 173, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Gradient overlay animation */
.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(106, 13, 173, 0.3), 
        rgba(153, 50, 204, 0.2), 
        transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.contact-btn:hover::before {
    left: 100%;
}

/* Enhanced hover effects */
.contact-btn:hover {
    transform: translateY(-8px) scale(1.08);
    background: rgba(106, 13, 173, 0.2);
    border-color: rgba(106, 13, 173, 0.6);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(106, 13, 173, 0.5),
        0 0 60px rgba(153, 50, 204, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Icon styling */
.contact-btn i {
    font-size: 1.4rem;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.contact-btn span {
    z-index: 2;
    position: relative;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover i,
.contact-btn:hover span {
    color: var(--star-white);
    text-shadow: 0 2px 8px rgba(106, 13, 173, 0.8);
}

/* Specific button colors and effects */
.email-btn:hover {
    border-color: #3b82f6;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(59, 130, 246, 0.5),
        0 0 60px rgba(59, 130, 246, 0.3);
}

.phone-btn:hover {
    border-color: #10b981;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(16, 185, 129, 0.5),
        0 0 60px rgba(16, 185, 129, 0.3);
}

.location-btn:hover {
    border-color: #f59e0b;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(245, 158, 11, 0.5),
        0 0 60px rgba(245, 158, 11, 0.3);
}

.instagram-btn:hover {
    border-color: #e91e63;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(233, 30, 99, 0.5),
        0 0 60px rgba(233, 30, 99, 0.3);
}

.discord-btn:hover {
    border-color: #5865f2;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(88, 101, 242, 0.5),
        0 0 60px rgba(88, 101, 242, 0.3);
}

.whatsapp-btn:hover {
    border-color: #25d366;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(37, 211, 102, 0.5),
        0 0 60px rgba(37, 211, 102, 0.3);
}

/* Responsive design for contact buttons */
@media (max-width: 768px) {
    .contact-buttons-grid {
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .contact-row {
        gap: 1rem;
        flex-direction: column;
        width: 100%;
    }
    
    .contact-btn {
        min-width: 200px;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-btn {
        min-width: 180px;
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .contact-btn i {
        font-size: 1.2rem;
    }
}

/* Contact Form Container - Muy abajo y centrado */
.contact-form-container {
    margin-top: 6rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* ============================================
   ENHANCED CHIIKAWA DYNAMIC MOVEMENT SYSTEM
   ============================================ */

.chiikawa-container {
    position: relative;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    overflow: hidden;
}

.chiikawa-walker {
    width: 60px;
    height: 60px;
    object-fit: contain;
    position: absolute;
    
    /* Enhanced left-to-right with occasional jumps and rotations */
    animation: chiikawaEnhancedWalk 25s linear infinite;
    
    /* Preserve original GIF animation */
    image-rendering: auto;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    
    /* Add smooth transition for dynamic effects */
    transition: transform 0.3s ease;
}

@keyframes chiikawaEnhancedWalk {
    0% {
        left: -80px;
        transform: scaleX(1) translateY(0px) rotate(0deg);
    }
    
    12% {
        left: 12%;
        transform: scaleX(1) translateY(-12px) rotate(3deg); /* Jump effect */
    }
    
    15% {
        left: 15%;
        transform: scaleX(1) translateY(0px) rotate(0deg);
    }
    
    28% {
        left: 28%;
        transform: scaleX(1) translateY(0px) rotate(-5deg); /* Rotation effect */
    }
    
    32% {
        left: 32%;
        transform: scaleX(1) translateY(0px) rotate(0deg);
    }
    
    45% {
        left: 45%;
        transform: scaleX(1) translateY(-8px) rotate(2deg); /* Small jump */
    }
    
    48% {
        left: 48%;
        transform: scaleX(1) translateY(0px) rotate(0deg);
    }
    
    62% {
        left: 62%;
        transform: scaleX(1) translateY(0px) rotate(4deg); /* Rotation */
    }
    
    65% {
        left: 65%;
        transform: scaleX(1) translateY(0px) rotate(0deg);
    }
    
    78% {
        left: 78%;
        transform: scaleX(1) translateY(-15px) rotate(-2deg); /* Bigger jump */
    }
    
    82% {
        left: 82%;
        transform: scaleX(1) translateY(0px) rotate(0deg);
    }
    
    92% {
        left: 92%;
        transform: scaleX(1) translateY(0px) rotate(3deg); /* Final rotation */
    }
    
    95% {
        left: 95%;
        transform: scaleX(1) translateY(0px) rotate(0deg);
    }
    
    100% {
        left: calc(100% + 80px);
        transform: scaleX(1) translateY(0px) rotate(0deg);
    }
}

/* Responsive Chiikawa Animations */
@media (max-width: 768px) {
    .chiikawa-walker {
        width: 50px;
        height: 50px;
        animation: chiikawaEnhancedWalkTablet 22s linear infinite;
    }
    
    @keyframes chiikawaEnhancedWalkTablet {
        0% {
            left: -60px;
            transform: scaleX(1) translateY(0px) rotate(0deg);
        }
        
        15% {
            left: 15%;
            transform: scaleX(1) translateY(-8px) rotate(2deg);
        }
        
        30% {
            left: 30%;
            transform: scaleX(1) translateY(0px) rotate(-3deg);
        }
        
        50% {
            left: 50%;
            transform: scaleX(1) translateY(-10px) rotate(1deg);
        }
        
        70% {
            left: 70%;
            transform: scaleX(1) translateY(0px) rotate(2deg);
        }
        
        85% {
            left: 85%;
            transform: scaleX(1) translateY(-6px) rotate(-1deg);
        }
        
        100% {
            left: calc(100% + 60px);
            transform: scaleX(1) translateY(0px) rotate(0deg);
        }
    }
}

@media (max-width: 480px) {
    .chiikawa-walker {
        width: 40px;
        height: 40px;
        animation: chiikawaEnhancedWalkMobile 20s linear infinite;
    }
    
    @keyframes chiikawaEnhancedWalkMobile {
        0% {
            left: -50px;
            transform: scaleX(1) translateY(0px) rotate(0deg);
        }
        
        20% {
            left: 20%;
            transform: scaleX(1) translateY(-6px) rotate(2deg);
        }
        
        40% {
            left: 40%;
            transform: scaleX(1) translateY(0px) rotate(-2deg);
        }
        
        60% {
            left: 60%;
            transform: scaleX(1) translateY(-8px) rotate(1deg);
        }
        
        80% {
            left: 80%;
            transform: scaleX(1) translateY(0px) rotate(2deg);
        }
        
        100% {
            left: calc(100% + 50px);
            transform: scaleX(1) translateY(0px) rotate(0deg);
        }
    }
}

/* Dynamic Adaptive Chiikawa System for different screen sizes */
@media (min-width: 1400px) {
    .chiikawa-walker {
        animation-duration: 30s; /* Slower on larger screens */
    }
}

@media (max-width: 320px) {
    .chiikawa-walker {
        width: 35px;
        height: 35px;
        animation-duration: 18s; /* Faster on very small screens */
    }
}

/* Enhanced Color Dividers with Purple Theme */
.separador {
    height: 4px;
    background: linear-gradient(90deg, 
        var(--accent-purple) 0%, 
        var(--accent-light-purple) 16.66%, 
        #4ecdc4 33.33%, 
        var(--galaxy-blue) 50%, 
        var(--accent-light-purple) 66.66%, 
        var(--accent-purple) 83.33%, 
        var(--accent-purple) 100%);
    margin: 4rem 0;
    border-radius: 2px;
    animation: purpleRainbowFlow 3s linear infinite;
    position: relative;
    max-width: 100%;
    width: 100%;
}

@keyframes purpleRainbowFlow {
    0% { 
        background-position: 0% 50%; 
        box-shadow: 0 0 20px rgba(106, 13, 173, 0.5);
    }
    25% { 
        box-shadow: 0 0 20px rgba(153, 50, 204, 0.5);
    }
    50% { 
        background-position: 100% 50%; 
        box-shadow: 0 0 20px rgba(78, 205, 196, 0.3);
    }
    75% { 
        box-shadow: 0 0 20px rgba(153, 50, 204, 0.5);
    }
    100% { 
        background-position: 0% 50%; 
        box-shadow: 0 0 20px rgba(106, 13, 173, 0.5);
    }
}

.separador::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: inherit;
    opacity: 0.3;
    filter: blur(8px);
    z-index: -1;
}

/* Container Utility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ENHANCED TEXT FORMATTING - Centered and Justified */
section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-cosmic);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.title-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-nebula);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    text-align: justify;
    text-align-last: center;
    text-justify: inter-word;
    line-height: 1.8;
}

/* BACKGROUND BLUR EFFECT FOR STANDALONE TEXT - JUSTIFIED AND CENTERED */
.hero-description,
.about-description,
.section-subtitle,
.portfolio-item p {
    position: relative;
    text-align: justify;
    text-align-last: center;
    text-justify: inter-word;
    margin: 0 auto 2rem;
    backdrop-filter: blur(5px);
    max-width: 800px;
    line-height: 1.8;
}

/* Hero Section */
.hero-section {
    background: radial-gradient(ellipse at center, rgba(30, 58, 138, 0.3) 0%, transparent 70%);
    position: relative;
}

.hero-container {
    width: 100%;
}

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

.hero-title {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* FIXED BUTTON STYLES - PROPERLY CENTERED TEXT */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.btn span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-cosmic);
    color: var(--star-white);
    box-shadow: var(--shadow-cosmic);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--stellar-blue);
}

.btn-secondary:hover {
    background: var(--stellar-blue);
    transform: translateY(-2px);
}

/* About Section */
.about-section {
    background: radial-gradient(ellipse at center, rgba(107, 70, 193, 0.2) 0%, transparent 70%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

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

/* SIMPLIFIED SKILLS SECTION STYLES */
.skills-section {
    background: radial-gradient(ellipse at center, rgba(74, 144, 226, 0.15) 0%, transparent 70%);
    padding: 6rem 0;
}

/* Contact Section Specific Grid - 3x2 Layout */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Card Specific Styles */
.contact-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: var(--transition-smooth);
}

.contact-card:hover {
    text-decoration: none;
    color: inherit;
}

/* Individual Social Media Card Colors */
.whatsapp-card {
    background: rgba(37, 211, 102, 0.1) !important;
    border-color: rgba(37, 211, 102, 0.3) !important;
}

.whatsapp-card:hover {
    background: rgba(37, 211, 102, 0.2) !important;
    border-color: rgba(37, 211, 102, 0.6) !important;
    box-shadow: 0 25px 50px rgba(37, 211, 102, 0.4), 0 0 30px rgba(37, 211, 102, 0.3) !important;
}

.whatsapp-card .skill-icon-container {
    background: linear-gradient(45deg, #25D366, #128C7E) !important;
}

.instagram-card {
    background: rgba(228, 64, 95, 0.1) !important;
    border-color: rgba(228, 64, 95, 0.3) !important;
}

.instagram-card:hover {
    background: rgba(228, 64, 95, 0.2) !important;
    border-color: rgba(228, 64, 95, 0.6) !important;
    box-shadow: 0 25px 50px rgba(228, 64, 95, 0.4), 0 0 30px rgba(228, 64, 95, 0.3) !important;
}

.instagram-card .skill-icon-container {
    background: linear-gradient(45deg, #E4405F, #FF6B3D) !important;
}

.discord-card {
    background: rgba(88, 101, 242, 0.1) !important;
    border-color: rgba(88, 101, 242, 0.3) !important;
}

.discord-card:hover {
    background: rgba(88, 101, 242, 0.2) !important;
    border-color: rgba(88, 101, 242, 0.6) !important;
    box-shadow: 0 25px 50px rgba(88, 101, 242, 0.4), 0 0 30px rgba(88, 101, 242, 0.3) !important;
}

.discord-card .skill-icon-container {
    background: linear-gradient(45deg, #5865F2, #4752C4) !important;
}

.phone-card {
    background: rgba(255, 215, 0, 0.1) !important;
    border-color: rgba(255, 215, 0, 0.3) !important;
}

.phone-card:hover {
    background: rgba(255, 215, 0, 0.2) !important;
    border-color: rgba(255, 215, 0, 0.6) !important;
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.4), 0 0 30px rgba(255, 215, 0, 0.3) !important;
}

.phone-card .skill-icon-container {
    background: linear-gradient(45deg, #FFD700, #FFA500) !important;
}

.gmail-card {
    background: rgba(234, 67, 53, 0.1) !important;
    border-color: rgba(234, 67, 53, 0.3) !important;
}

.gmail-card:hover {
    background: rgba(234, 67, 53, 0.2) !important;
    border-color: rgba(234, 67, 53, 0.6) !important;
    box-shadow: 0 25px 50px rgba(234, 67, 53, 0.4), 0 0 30px rgba(234, 67, 53, 0.3) !important;
}

.gmail-card .skill-icon-container {
    background: linear-gradient(45deg, #EA4335, #DB4437) !important;
}

.location-card {
    background: rgba(66, 133, 244, 0.1) !important;
    border-color: rgba(66, 133, 244, 0.3) !important;
}

.location-card:hover {
    background: rgba(66, 133, 244, 0.2) !important;
    border-color: rgba(66, 133, 244, 0.6) !important;
    box-shadow: 0 25px 50px rgba(66, 133, 244, 0.4), 0 0 30px rgba(66, 133, 244, 0.3) !important;
}

.location-card .skill-icon-container {
    background: linear-gradient(45deg, #4285F4, #34A853) !important;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.skill-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    text-align: center;
    position: relative;
}

/* ENHANCED CARD HOVER EFFECTS - Horizontal Translation + Scale/Shadow */
.skill-item:hover {
    transform: translateX(15px) translateY(-10px) scale(1.03);
    background: rgba(74, 144, 226, 0.1);
    box-shadow: 0 25px 50px rgba(74, 144, 226, 0.4), 0 0 30px rgba(106, 13, 173, 0.3);
    border-color: var(--galaxy-blue);
}

.skill-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: linear-gradient(45deg, var(--galaxy-blue), var(--accent-purple));
    border-radius: 50%;
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
}

.skill-item:hover .skill-icon {
    transform: rotate(360deg) scale(1.15);
    box-shadow: 0 0 40px var(--galaxy-blue);
}

.skill-icon i {
    font-size: 3rem;
    color: var(--star-white);
}

.skill-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--star-white);
    text-align: center;
}

/* Portfolio Sections */
.portfolio-section {
    background: radial-gradient(ellipse at center, rgba(219, 39, 119, 0.1) 0%, transparent 70%);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.portfolio-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    text-align: center;
}

/* ENHANCED PORTFOLIO CARD HOVER EFFECTS */
.portfolio-item:hover {
    transform: translateX(12px) translateY(-8px) scale(1.02);
    background: rgba(106, 13, 173, 0.1);
    box-shadow: 0 20px 40px rgba(106, 13, 173, 0.3), 0 0 25px rgba(153, 50, 204, 0.2);
    border-color: var(--accent-purple);
}

.portfolio-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--accent-purple), var(--accent-light-purple));
    border-radius: 50%;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.portfolio-item:hover .portfolio-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 30px var(--accent-purple);
}

.portfolio-icon i {
    font-size: 2.5rem;
    color: var(--star-white);
}

.portfolio-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--star-white);
    text-align: center;
}

.portfolio-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: justify;
    text-justify: inter-word;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Video Showcase Styles */
.video-showcase {
    margin: 4rem 0;
}

.showcase-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(to right, var(--accent-purple), var(--accent-light-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.video-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.video-item {
    width: 350px;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.video-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: black; /* Or any placeholder color */
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* This is the key property */
    border-radius: 10px 10px 0 0;
}

.lty-playbtn {
    width: 68px;
    height: 48px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition-smooth);
    z-index: 10;
}

.lty-playbtn::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-left: 15px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

/* ENHANCED VIDEO CARD HOVER EFFECTS */
.video-item:hover {
    transform: translateX(10px) translateY(-5px) scale(1.02);
    background: rgba(106, 13, 173, 0.1);
    box-shadow: 0 15px 30px rgba(106, 13, 173, 0.3), 0 0 20px rgba(74, 144, 226, 0.2);
    border-color: var(--accent-purple);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: var(--cosmic-black);
}

.video-wrapper lite-youtube {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px 10px 0 0;
}

.video-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1rem 1rem 0.5rem;
    color: var(--star-white);
    text-align: center;
}

.video-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0 1rem 1.5rem;
    line-height: 1.4;
    text-align: center;
}

/* Image Showcase Styles */
.image-showcase {
    margin: 4rem 0;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.image-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

/* ENHANCED IMAGE CARD HOVER EFFECTS */
.image-item:hover {
    transform: translateX(8px) translateY(-5px) scale(1.02);
    background: rgba(106, 13, 173, 0.1);
    box-shadow: 0 15px 30px rgba(106, 13, 173, 0.3), 0 0 20px rgba(153, 50, 204, 0.2);
    border-color: var(--accent-purple);
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    background: var(--cosmic-black);
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.image-item:hover .image-wrapper img {
    transform: scale(1.05);
}

.image-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1rem 1rem 0.5rem;
    color: var(--star-white);
    text-align: center;
}

.image-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0 1rem 1.5rem;
    line-height: 1.4;
    text-align: center;
}

/* Contact Section */
.contact-section {
    background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* FIXED CONTACT INFO ALIGNMENT */
.contact-info-simple {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info-simple p {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.contact-info-simple p:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
    color: var(--star-white);
}

.contact-info-simple i {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

/* CONTACT FORM STYLES */
.contact-form-container {
    margin-top: 2rem;
}

.contact-form-container h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--star-white);
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Nexa', sans-serif;
    font-size: 1rem;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(106, 13, 173, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-submit {
    margin-top: 1rem;
    justify-content: center;
    align-self: center;
    min-width: 250px;
}

/* FIXED SOCIAL LINKS ALIGNMENT */
.social-links h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--star-white);
    text-align: center;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

/* ENHANCED SOCIAL BUTTON HOVER EFFECTS */
.social-btn:hover {
    transform: translateX(8px) scale(1.02);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.social-btn i {
    font-size: 1.5rem;
}

.social-btn.linkedin:hover { border-color: #0077b5; color: #0077b5; }
.social-btn.behance:hover { border-color: #1769ff; color: #1769ff; }
.social-btn.instagram:hover { border-color: #e4405f; color: #e4405f; }
.social-btn.discord:hover { border-color: #7289da; color: #7289da; }
.social-btn.facebook:hover { border-color: #1877f2; color: #1877f2; }
.social-btn.whatsapp:hover { border-color: #25d366; color: #25d366; }
.social-btn.github:hover { border-color: #333; color: #fff; }

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 2rem;
    text-align: center;
}

.footer-logo {
    width: 172.5px; /* Original 150px + 15% = 172.5px */
    height: 172.5px;
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
    animation: subtleLogo 4s ease-in-out infinite alternate;
    filter: brightness(0.9);
    border-radius: 10px;
}

.footer-logo:hover {
    transform: scale(1.1) rotate(360deg);
    filter: brightness(1.2) saturate(1.5);
}

.footer-content p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-align: center;
}

.footer-content p:first-of-type {
    margin-top: 1rem;
    font-weight: 600;
}

/* Lite YouTube Embed Styles */
lite-youtube {
    background-color: #000;
    position: relative;
    display: block;
    contain: content;
    background-position: center center;
    background-size: cover;
    cursor: pointer;
    border-radius: 10px 10px 0 0;
}

lite-youtube::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADGCAYAAAAT+OqFAAAAdklEQVQoz42QQQ7AIAgEF/T/D+kbq/RWAlnQyyazA4aoAB4FsBSA/bFjuF1EOL7VbrIrBuusmrt4ZZORfb6ehbWdnRHEIiITaEUKa5EJqUakRSaEYBJSCY2dEstQY7AuxahwXFrvZmWl2rh4JZ07z9dLtesfNj5q0FU3A5ObbwAAAABJRU5ErkJggg==);
    background-position: top;
    background-repeat: repeat-x;
    height: 60px;
    padding-bottom: 50px;
    width: 100%;
    transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
}

lite-youtube .lty-playbtn {
    width: 68px;
    height: 48px;
    position: absolute;
    cursor: pointer;
    transform: translate3d(-50%, -50%, 0);
    top: 50%;
    left: 50%;
    z-index: 1;
    background-color: transparent;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 68 48"><path fill="%23f00" fill-opacity="0.8" d="m .66,37.62 c 0,0 .66,4.70 2.70,6.77 2.58,2.71 5.98,2.63 7.49,2.91 5.43,.52 23.10,.68 23.12,.68 .00,-1.3e-5 14.29,-0.02 23.81,-0.71 1.32,-0.15 4.22,-0.17 6.81,-2.89 2.03,-2.07 2.70,-6.77 2.70,-6.77 0,0 .67,-5.52 .67,-11.04 l 0,-5.17 c 0,-5.52 -0.67,-11.04 -0.67,-11.04 0,0 -0.66,-4.70 -2.70,-6.77 C 62.03,.86 59.13,.84 57.80,.69 48.28,0 34.00,0 34.00,0 33.97,0 19.69,0 10.18,.69 8.85,.84 5.95,.86 3.36,3.58 1.32,5.65 .66,10.35 .66,10.35 c 0,0 -0.55,4.50 -0.66,9.45 l 0,8.36 c .10,4.94 .66,9.45 .66,9.45 z"><path d="m 26.96,13.67 18.37,9.62 -18.37,9.55 -0.00,-19.17 z" fill="%23fff"></path></svg>');
    filter: grayscale(100%);
    transition: filter .1s cubic-bezier(0, 0, 0.2, 1);
    border: none;
}

lite-youtube:hover .lty-playbtn,
lite-youtube .lty-playbtn:focus {
    filter: none;
}

lite-youtube.lyt-activated {
    cursor: unset;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation Adjustments for Mobile */
    .nav-container {
        justify-content: flex-start;
        position: relative;
    }

    .nav-logo {
        position: static;
        left: auto;
    }

    .navbar-logo {
        height: 46px; /* Smaller on mobile but still 15% larger than original mobile size */
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: var(--transition-smooth);
        box-shadow: var(--shadow-cosmic);
        backdrop-filter: blur(10px);
        padding: 2rem 0;
        transform: none;
        left: -100%;
        margin: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
        position: absolute;
        right: 2rem;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Liquid Chrome Title Mobile */
    .liquid-chrome {
        font-size: 2.5rem;
    }

    /* Hero Identity Image Mobile */
    .hero-identity-image {
        max-width: 250px;
    }

    .section-title {
        font-size: 2rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Contact Grid Mobile Layout - Stack into 2 columns on mobile */
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 2rem;
        max-width: 100%;
    }

    /* Enhanced Responsive Separators */
    .separador {
        width: 100%;
        max-width: 100%;
        margin: 2rem auto;
        height: 3px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Contact Buttons Mobile Layout */
    .contact-buttons-horizontal {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 4rem;
    }

    .contact-btn {
        min-width: 200px;
        width: 100%;
        max-width: 300px;
    }

    .contact-form-container {
        margin-top: 3rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .container {
        padding: 0 1rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile Typography Improvements */
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    /* Mobile Hover Effects - Reduce Translation Distance */
    .skill-item:hover,
    .portfolio-item:hover,
    .video-item:hover,
    .image-item:hover {
        transform: translateX(8px) translateY(-5px) scale(1.01);
    }

    .social-btn:hover,
    .contact-btn:hover {
        transform: translateX(5px) scale(1.01);
    }

    /* Mobile Parallax Adjustments */
    .skill-icon-container {
        width: 100px;
        height: 100px;
    }

    .skill-icon-img {
        width: 60px;
        height: 60px;
    }

    /* Chiikawa Mobile */
    .chiikawa-walker {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .liquid-chrome {
        font-size: 2rem;
    }

    .hero-identity-image {
        max-width: 200px;
    }

    .hero-title {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .navbar-logo {
        height: 40px; /* 15% larger than original 35px mobile size */
    }

    .footer-logo {
        width: 138px; /* 15% larger than original 120px mobile size */
        height: 138px;
    }

    .skills-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Contact Grid Very Small Mobile Layout - Single column */
    .contact-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        gap: 1.5rem;
        max-width: 100%;
    }

    .skill-item {
        padding: 1.5rem;
    }

    .skill-icon-container {
        width: 80px;
        height: 80px;
    }

    .skill-icon-img {
        width: 50px;
        height: 50px;
    }

    .contact-btn {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .contact-btn span {
        font-size: 0.85rem;
    }

    .chiikawa-walker {
        width: 40px;
        height: 40px;
    }
}

/* Animation Classes for JavaScript */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Cosmic particle effects */
.cosmic-particle {
    position: absolute;
    background: var(--star-white);
    border-radius: 50%;
    pointer-events: none;
    animation: twinkle 2s infinite alternate;
}

@keyframes twinkle {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.2); }
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--star-white);
    animation: spin 1s ease-in-out infinite;
}

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

/* ===================
   ENHANCED IMAGE VIEWER OVERLAY SYSTEM
   =================== */

/* Overlay Background */
.image-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-overlay:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

.overlay-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.overlay-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.7) translateY(50px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-overlay:not(.hidden) .overlay-container {
    transform: scale(1) translateY(0);
}

/* Close Button */
.overlay-close-btn {
    position: absolute;
    top: -60px;
    right: -20px;
    width: 50px;
    height: 50px;
    background: rgba(139, 92, 246, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10001;
}

.overlay-close-btn:hover {
    background: rgba(139, 92, 246, 1);
    transform: scale(1.1) rotate(90deg);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
}

/* Image Container */
.overlay-image-container {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    transition: all 0.3s ease;
}

.overlay-image {
    max-width: 70vw;
    max-height: 60vh;
    width: auto;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

.overlay-image:active {
    cursor: grabbing;
}

/* Zoom Controls */
.zoom-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 12px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.zoom-btn {
    width: 40px;
    height: 40px;
    background: rgba(139, 92, 246, 0.8);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.zoom-btn:hover {
    background: rgba(139, 92, 246, 1);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.zoom-btn:active {
    transform: scale(0.95);
}

.zoom-level {
    color: white;
    font-size: 14px;
    font-weight: bold;
    min-width: 45px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Image Info and Like System */
.overlay-info {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.overlay-title h3 {
    color: #8b5cf6;
    font-size: 24px;
    margin: 0 0 5px 0;
    font-weight: 700;
}

.overlay-title p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin: 0;
}

/* Like System */
.like-system {
    display: flex;
    align-items: center;
    gap: 12px;
}

.like-btn {
    width: 50px;
    height: 50px;
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 50%;
    color: #ef4444;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
}

.like-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.6);
    transform: scale(1.1);
}

.like-btn.liked {
    background: rgba(239, 68, 68, 0.9);
    border-color: #ef4444;
    color: white;
    pointer-events: none;
}

.like-btn.liked i {
    animation: heartPulse 0.6s ease-out;
}

.like-count {
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    min-width: 30px;
    text-align: left;
}

/* Heart Pulse Animation */
@keyframes heartPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

/* Heart Animation Container */
.heart-animation-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 10002;
}

.floating-heart {
    position: absolute;
    color: #ef4444;
    font-size: 20px;
    pointer-events: none;
    animation: floatHeart 2s ease-out forwards;
    z-index: 10003;
}

@keyframes floatHeart {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
        opacity: 1;
        transform: translate(-20px, -30px) scale(1.2) rotate(-15deg);
    }
    50% {
        opacity: 0.8;
        transform: translate(15px, -60px) scale(1) rotate(10deg);
    }
    75% {
        opacity: 0.4;
        transform: translate(-10px, -90px) scale(0.8) rotate(-5deg);
    }
    100% {
        opacity: 0;
        transform: translate(0, -120px) scale(0.3) rotate(0deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .overlay-container {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .overlay-image {
        max-width: 85vw;
        max-height: 70vh;
    }
    
    .overlay-close-btn {
        top: -50px;
        right: -10px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .overlay-info {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .zoom-controls {
        bottom: 10px;
        right: 10px;
        padding: 6px 10px;
    }
    
    .zoom-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .zoom-level {
        font-size: 12px;
        min-width: 40px;
    }
}

@media (max-width: 480px) {
    .overlay-image {
        max-width: 90vw;
        max-height: 65vh;
    }
    
    .overlay-image-container {
        padding: 15px;
    }
    
    .overlay-title h3 {
        font-size: 20px;
    }
    
    .overlay-title p {
        font-size: 14px;
    }
}

/* Cursor Styles for Zoom */
.overlay-image.zoom-cursor {
    cursor: zoom-in;
}

.overlay-image.zoomed {
    cursor: zoom-out;
}

/* Smooth Animations for Enter/Exit */
@keyframes overlayEnter {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(20px);
    }
}

@keyframes overlayExit {
    from {
        opacity: 1;
        backdrop-filter: blur(20px);
    }
    to {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
}

.image-overlay.entering {
    animation: overlayEnter 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.image-overlay.exiting {
    animation: overlayExit 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Image Gallery Enhancement */
.image-item .image-wrapper {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.image-item .image-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.image-item .image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 92, 246, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.image-item .image-wrapper:hover::before {
    opacity: 1;
}

.image-item .image-wrapper::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 30px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.image-item .image-wrapper:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Enhanced Music Notification */
.music-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(106, 13, 173, 0.5);
    border-radius: 15px;
    padding: 1.2rem;
    max-width: 280px;
    z-index: 10000;
    
    /* Enhanced glow effect */
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(106, 13, 173, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    
    /* Smooth entrance animation */
    animation: notificationSlideIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Parallax hover effect */
    transform-style: preserve-3d;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Elegant font */
    font-family: 'Nexa', sans-serif;
}

/* Parallax hover effect for notification */
.music-notification:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg) translateZ(10px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(106, 13, 173, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.music-notification h3 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.music-notification-buttons {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
}

.music-btn {
    padding: 0.7rem 1.2rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-family: 'Nexa', sans-serif;
}

.music-btn-yes {
    background: linear-gradient(45deg, var(--accent-purple), var(--accent-light-purple));
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(106, 13, 173, 0.4);
}

.music-btn-yes:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(106, 13, 173, 0.6);
}

.music-btn-no {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.music-btn-no:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* Minimized Music Player - Only album cover and title */
.music-notification.minimized {
    padding: 0.8rem 1.2rem;
    max-width: 280px;
    min-width: 250px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    
    /* Blur background effect */
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(106, 13, 173, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.music-notification.minimized .minimized-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
}

.music-notification.minimized .minimized-album-cover {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    animation: albumSpinMini 20s linear infinite;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.music-notification.minimized .minimized-song-title {
    color: var(--text-primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 140px;
    flex: 1;
}

/* Expand Arrow Styles */
.expand-arrow {
    color: var(--accent-purple);
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1;
    padding: 0.3rem;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(106, 13, 173, 0.1);
    border: 1px solid rgba(106, 13, 173, 0.3);
}

.expand-arrow:hover {
    background: rgba(106, 13, 173, 0.2);
    border-color: rgba(106, 13, 173, 0.6);
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 4px 12px rgba(106, 13, 173, 0.4);
}

/* Minimize Button Styles */
.minimize-btn {
    color: var(--text-secondary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.3rem;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.minimize-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Enhanced Music Player Interface */
.music-player {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(106, 13, 173, 0.5);
    border-radius: 20px;
    padding: 1.5rem;
    min-width: 320px;
    max-width: 380px;
    z-index: 10000;
    
    /* Enhanced visual effects */
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(106, 13, 173, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    
    /* Smooth entrance */
    animation: playerSlideIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Parallax hover effect */
    transform-style: preserve-3d;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    font-family: 'Nexa', sans-serif;
}

/* Parallax hover effect for music player */
.music-player:hover {
    transform: perspective(1000px) rotateX(3deg) rotateY(3deg) translateZ(8px) scale(1.01);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.7),
        0 0 50px rgba(106, 13, 173, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.music-player-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.album-cover {
    width: 80px;
    height: 80px;
    border-radius: 50%; /* Make it perfectly circular */
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    animation: albumSpin 20s linear infinite;
    border: 2px solid rgba(106, 13, 173, 0.3);
    transition: all 0.3s ease;
}

.album-cover:hover {
    border-color: rgba(106, 13, 173, 0.6);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(106, 13, 173, 0.3);
}

.song-info {
    flex: 1;
    min-width: 0;
}

.song-title {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.3rem 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.song-artist {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

/* Enhanced Music Controls */
.music-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.control-btn {
    background: linear-gradient(45deg, var(--accent-purple), var(--accent-light-purple));
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(106, 13, 173, 0.4);
}

.control-btn:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 8px 25px rgba(106, 13, 173, 0.6);
}

.control-btn i {
    color: var(--text-primary);
    font-size: 1.1rem;
}

/* Navigation buttons */
.control-btn.prev-btn,
.control-btn.next-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.control-btn.prev-btn:hover,
.control-btn.next-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px) scale(1.05);
}

/* Volume Control */
.volume-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.volume-icon {
    color: var(--text-secondary);
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.volume-icon:hover {
    color: var(--text-primary);
}

.volume-slider {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.volume-fill {
    height: 100%;
    background: linear-gradient(45deg, var(--accent-purple), var(--accent-light-purple));
    border-radius: 2px;
    width: 20%;
    transition: width 0.3s ease;
}

.volume-percentage {
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 30px;
    text-align: right;
}

.music-time {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin: 0 1rem;
    position: relative;
    cursor: pointer;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, var(--accent-purple), var(--accent-light-purple));
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s ease;
}

/* Enhanced Progress Container with better time display spacing */
.progress-container {
    width: 100%;
    margin-top: 1rem;
}

.time-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.8rem;
    padding: 0 0.2rem;
    gap: 2rem; /* Increased spacing between current and total time */
}

.current-time,
.total-time {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    font-family: 'Courier New', monospace; /* Monospace for better alignment */
    min-width: 35px;
    text-align: center;
    padding: 0.2rem 0.4rem;
    background: rgba(106, 13, 173, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(106, 13, 173, 0.2);
    transition: all 0.3s ease;
}

.current-time:hover,
.total-time:hover {
    background: rgba(106, 13, 173, 0.2);
    border-color: rgba(106, 13, 173, 0.4);
    color: var(--text-primary);
}

/* Animations */
@keyframes notificationSlideIn {
    0% {
        transform: translateX(100%) translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateX(0) translateY(0);
        opacity: 1;
    }
}

@keyframes playerSlideIn {
    0% {
        transform: translateX(100%) translateY(20px) scale(0.8);
        opacity: 0;
    }
    100% {
        transform: translateX(0) translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes albumSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes albumSpinMini {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hide music elements initially */
.music-notification.hidden,
.music-player.hidden {
    display: none;
}

/* ============================================
   COMPREHENSIVE MOBILE OPTIMIZATION (PHASE 3)
   ============================================ */

/* Mobile First - Enhanced responsive design without changing desktop experience */

/* Extra Large Desktop - Enhanced Experience */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .liquid-chrome {
        font-size: 5rem;
    }
    
    .hero-description {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
}

/* Large Desktop - Default Preserved */
@media (min-width: 1200px) and (max-width: 1399px) {
    /* Desktop experience preserved as-is */
}

/* Medium Desktop / Laptop */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
        padding: 0 1.5rem;
    }
    
    .liquid-chrome {
        font-size: 3.5rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .skills-grid, .portfolio-grid, .contact-grid {
        gap: 2rem;
    }
}

/* Tablet Portrait */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 720px;
        padding: 0 1.5rem;
    }
    
    .liquid-chrome {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    /* Navigation adaptation for tablets */
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    /* Skills grid adaptation */
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .skill-item:last-child {
        grid-column: span 2;
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Portfolio grid adaptation */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Contact grid adaptation */
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Music player tablet optimization */
    .music-player {
        width: 300px;
    }
    
    .music-notification.minimized {
        width: 280px;
    }
}

/* Mobile Landscape */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 540px;
        padding: 0 1rem;
    }
    
    /* Hide navigation menu, show mobile toggle */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: rgba(106, 13, 173, 0.2);
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 0.25rem;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Typography adjustments */
    .liquid-chrome {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Grid adaptations */
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Hero image adaptation */
    .hero-identity-image {
        max-width: 250px;
    }
    
    /* Button adaptations */
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 200px;
        padding: 0.8rem 1.5rem;
    }
    
    /* Music player mobile landscape optimization */
    .music-player {
        width: 280px;
        right: 10px;
    }
    
    .music-notification.minimized {
        width: 260px;
        right: 10px;
    }
}

/* Mobile Portrait - Primary Mobile Experience */
@media (max-width: 575px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Mobile Navigation */
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1001;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        display: block;
    }

    .nav-link:hover {
        background: rgba(106, 13, 173, 0.2);
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 0.25rem;
        position: relative;
        z-index: 1002;
    }

    .bar {
        width: 25px;
        height: 3px;
        background: var(--text-primary);
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 3px;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Logo adjustment for mobile */
    .navbar-logo {
        height: 45px; /* Slightly smaller on mobile */
    }
    
    /* Hero section mobile optimization */
    .hero-section {
        min-height: 100vh;
        padding: 80px 0 40px;
    }
    
    .liquid-chrome {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        text-align: center;
        padding: 0 0.5rem;
    }
    
    .hero-identity-image {
        max-width: 200px;
        margin: 1rem 0;
    }
    
    /* Section adaptations */
    section {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: center;
        text-align-last: center;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    /* Grid system mobile adaptation */
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Skill items mobile optimization */
    .skill-item {
        padding: 1.5rem;
        text-align: center;
    }
    
    .skill-icon-container {
        width: 100px;
        height: 100px;
        margin: 0 auto 1.5rem;
    }
    
    .skill-icon-img {
        width: 60px;
        height: 60px;
    }
    
    .skill-item h3 {
        font-size: 1.1rem;
        margin: 0;
    }
    
    /* Portfolio items mobile optimization */
    .portfolio-item {
        padding: 1.5rem;
        text-align: center;
    }
    
    .portfolio-item h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .portfolio-item p {
        font-size: 0.9rem;
        line-height: 1.5;
        text-align: center;
        text-align-last: center;
    }
    
    .portfolio-tags {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    /* Button system mobile adaptation */
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 100%;
        padding: 0 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        justify-content: center;
    }
    
    /* Contact buttons mobile optimization */
    .contact-card {
        padding: 1.2rem;
        text-align: center;
        min-height: 120px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .contact-card h3 {
        font-size: 0.9rem;
        margin: 0.5rem 0 0;
        line-height: 1.3;
    }
    
    /* Music player mobile optimization */
    .music-player {
        width: calc(100vw - 20px);
        max-width: 300px;
        right: 10px;
        left: 10px;
        margin: 0 auto;
    }
    
    .music-notification {
        width: calc(100vw - 20px);
        max-width: 320px;
        right: 10px;
        left: 10px;
        margin: 0 auto;
    }
    
    .music-notification.minimized {
        width: calc(100vw - 20px);
        max-width: 280px;
        right: 10px;
    }
    
    .music-player-header {
        gap: 0.8rem;
    }
    
    .album-cover {
        width: 60px;
        height: 60px;
    }
    
    .song-title {
        font-size: 0.9rem;
    }
    
    .song-artist {
        font-size: 0.8rem;
    }
    
    .music-controls {
        gap: 1rem;
        margin: 1rem 0;
    }
    
    .control-btn {
        width: 35px;
        height: 35px;
    }
    
    .control-btn.play-pause-btn {
        width: 45px;
        height: 45px;
    }
    
    .current-time,
    .total-time {
        font-size: 0.75rem;
        padding: 0.1rem 0.3rem;
        min-width: 30px;
    }
    
    /* Video and image showcase mobile optimization */
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Enhanced touch targets for mobile */
    .nav-link,
    .btn,
    .control-btn,
    .contact-card {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Prevent horizontal scroll on mobile */
    body {
        overflow-x: hidden;
    }
    
    /* Optimize animations for mobile performance */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
}

/* Small Mobile Devices */
@media (max-width: 400px) {
    .container {
        padding: 0 0.8rem;
    }
    
    .liquid-chrome {
        font-size: 1.8rem;
    }
    
    .hero-identity-image {
        max-width: 180px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .skill-item,
    .portfolio-item {
        padding: 1rem;
    }
    
    .music-player,
    .music-notification {
        width: calc(100vw - 16px);
        right: 8px;
        left: 8px;
    }
    
    .btn {
        max-width: 220px;
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Very Small Mobile Devices */
@media (max-width: 350px) {
    .liquid-chrome {
        font-size: 1.6rem;
    }
    
    .hero-identity-image {
        max-width: 160px;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .navbar-logo {
        height: 40px;
    }
    
    .btn {
        max-width: 200px;
        font-size: 0.8rem;
    }
    
    .skill-item h3,
    .portfolio-item h3 {
        font-size: 1rem;
    }
    
    .contact-card h3 {
        font-size: 0.8rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Enhance touch targets */
    .nav-link,
    .btn,
    .contact-card,
    .skill-item,
    .portfolio-item {
        min-height: 48px;
    }
    
    /* Reduce hover effects on touch devices */
    .parallax-card:hover {
        transform: none;
    }
    
    .skill-item:hover,
    .portfolio-item:hover {
        transform: translateY(-3px);
    }
    
    /* Simplify animations for touch performance */
    .hero-identity-image {
        animation-duration: 8s;
    }
    
    .liquid-chrome {
        animation-duration: 6s;
    }
}

/* High DPI / Retina Display Optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-identity-image,
    .skill-icon-img,
    .navbar-logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Landscape orientation specific adjustments */
@media (orientation: landscape) and (max-height: 500px) {
    .hero-section {
        min-height: auto;
        padding: 90px 0 20px;
    }
    
    .liquid-chrome {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-identity-image {
        max-width: 150px;
        margin: 0.5rem 0;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 0.8rem;
    }
    
    .btn {
        max-width: 150px;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}