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

:root {
    --calma: #a8d5a8;
    --preocupacion: #f5e6a3;
    --estres: #f4a3a3;
    --angustia: #9a9a9a;
    --colapso: #8b4b6b;
    --text-light: #f8f9fa;
    --text-dark: #2c2c2c;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

body {
    font-family: 'Inter', sans-serif;
    background: #1a1a1a;
    color: var(--text-light);
    overflow: hidden;
    user-select: none;
}

.screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.screen.active {
    opacity: 1;
    visibility: visible;
}

.ambient-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    animation: ambientShift 20s ease-in-out infinite;
}

@keyframes ambientShift {
    0%, 100% { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
    25% { background: linear-gradient(135deg, #764ba2 0%, #667eea 100%); }
    50% { background: linear-gradient(135deg, #667eea 0%, #f093fb 100%); }
    75% { background: linear-gradient(135deg, #f093fb 0%, #764ba2 100%); }
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.selector-bg {
    background: rgba(0, 0, 0, 0.5);
}

.content-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeInUp 1.5s ease-out 0.5s forwards;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.8;
    opacity: 0;
    animation: fadeInUp 1.5s ease-out 1s forwards;
}

.enter-button {
    position: relative;
    padding: 20px 40px;
    background: var(--glass);
    border: 2px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 400;
    cursor: pointer;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 1.5s ease-out 1.5s forwards;
}

.enter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.light-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.enter-button:hover .light-effect {
    left: 100%;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.emotion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.emotion-card {
    position: relative;
    padding: 2rem 1.5rem;
    background: var(--glass);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: floatIn 0.8s ease-out forwards;
}

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

.emotion-card[data-emotion="calma"] { border-color: var(--calma); }
.emotion-card[data-emotion="preocupacion"] { border-color: var(--preocupacion); }
.emotion-card[data-emotion="estres"] { border-color: var(--estres); }
.emotion-card[data-emotion="angustia"] { border-color: var(--angustia); }
.emotion-card[data-emotion="colapso"] { border-color: var(--colapso); }

.emotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.emotion-card:hover .card-glow {
    opacity: 1;
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    opacity: 0.9;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.emotion-card h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.emotion-card[data-emotion="calma"] .card-glow {
    box-shadow: 0 0 30px var(--calma);
}
.emotion-card[data-emotion="preocupacion"] .card-glow {
    box-shadow: 0 0 30px var(--preocupacion);
}
.emotion-card[data-emotion="estres"] .card-glow {
    box-shadow: 0 0 30px var(--estres);
}
.emotion-card[data-emotion="angustia"] .card-glow {
    box-shadow: 0 0 30px var(--angustia);
}
.emotion-card[data-emotion="colapso"] .card-glow {
    box-shadow: 0 0 30px var(--colapso);
}

/* Room Styles */
.room-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.emotion-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    transition: background-color 0.8s ease;
}

.room-content {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.breathing-circle {
    width: 200px;
    height: 200px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    animation: breathe 4s ease-in-out infinite;
}

.breath-inner {
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
    animation: breatheInner 4s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes breatheInner {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.emotional-text {
    margin-bottom: 3rem;
    text-align: center;
    max-width: 600px;
    padding: 0 2rem;
}

.emotional-text p {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.9;
}

.room-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.ritual-btn {
    padding: 15px 30px;
    background: var(--glass);
    border: 2px solid var(--glass-border);
    border-radius: 30px;
    color: var(--text-light);
    font-size: 1rem;
    cursor: pointer;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    min-width: 200px;
}

.ritual-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.back-btn {
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--glass);
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    z-index: 20;
}

.back-btn:hover {
    transform: scale(1.1);
}

/* Wisdom Styles */
.wisdom-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #2c3e50, #34495e);
}

.texture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><rect width="60" height="60" fill="%23ffffff" opacity="0.02"/></svg>');
}

.wisdom-content {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    padding: 2rem;
}

.wisdom-card {
    position: relative;
    max-width: 600px;
    padding: 3rem 2.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(30px);
    text-align: center;
    margin-bottom: 2rem;
    overflow: hidden;
}

.wisdom-card p {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.95;
}

.wisdom-controls {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.audio-controls {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--glass);
    padding: 0.8rem 1.2rem;
    border-radius: 30px;
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    z-index: 100;
}

.audio-btn {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.audio-btn:hover {
    opacity: 1;
}

#volumeSlider {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

#volumeSlider::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--text-light);
    border-radius: 50%;
    cursor: pointer;
}

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

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

.flower-petals .petal {
    animation: petalBreathe 4s ease-in-out infinite;
    transform-origin: center bottom;
}

.flower-center {
    animation: centerPulse 4s ease-in-out infinite;
}

@keyframes petalBreathe {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(5deg); }
}

@keyframes centerPulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.cloud-breath {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 120px;
    position: relative;
}

.cloud-part {
    position: absolute;
    border-radius: 50px;
    background: rgba(154, 154, 154, 0.4);
    animation: cloudBreathe 4s ease-in-out infinite;
}

.cloud-1 {
    width: 80px;
    height: 60px;
    left: 20px;
    animation-delay: 0s;
}

.cloud-2 {
    width: 100px;
    height: 80px;
    left: 50px;
    animation-delay: -1s;
}

.cloud-3 {
    width: 60px;
    height: 50px;
    left: 100px;
    animation-delay: -2s;
}

@keyframes cloudBreathe {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.crystal-facets .facet {
    animation: crystalShimmer 4s ease-in-out infinite;
    transform-origin: center;
}

@keyframes crystalShimmer {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.wave-layers path {
    animation: waveFlow 4s ease-in-out infinite;
}

.wave-1 { animation-delay: 0s; }
.wave-2 { animation-delay: -1s; }
.wave-3 { animation-delay: -2s; }

@keyframes waveFlow {
    0%, 100% { opacity: 0.3; stroke-width: 2; }
    50% { opacity: 0.8; stroke-width: 4; }
}

.smoke-breath {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    height: 200px;
    position: relative;
}

.smoke-wisp {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 75, 107, 0.3), transparent);
    animation: smokeRise 6s ease-in-out infinite;
}

.smoke-1 {
    left: 50%;
    bottom: 20px;
    animation-delay: 0s;
}

.smoke-2 {
    left: 40%;
    bottom: 60px;
    animation-delay: -2s;
}

.smoke-3 {
    left: 60%;
    bottom: 100px;
    animation-delay: -4s;
}

@keyframes smokeRise {
    0% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-30px) scale(1.2); opacity: 0.3; }
    100% { transform: translateY(-60px) scale(0.8); opacity: 0; }
}

.floating-poetry {
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-poetry:hover {
    color: rgba(168, 213, 168, 0.9) !important;
    transform: scale(1.05);
}

.moon-shape {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(90deg, #f8f9fa 50%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.moon-shape::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2c2c2c;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.phase-0::before { transform: translateX(0%); }
.phase-1::before { transform: translateX(-12.5%); }
.phase-2::before { transform: translateX(-25%); }
.phase-3::before { transform: translateX(-37.5%); }
.phase-4::before { transform: translateX(-50%); }
.phase-5::before { transform: translateX(-62.5%); }
.phase-6::before { transform: translateX(-75%); }
.phase-7::before { transform: translateX(-87.5%); }
.phase-8::before { transform: translateX(-100%); }

.phase-name {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 300;
}

.special-ritual-unlock .ritual-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(30px);
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.special-ritual-unlock h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #f8f9fa;
}

.special-ritual-unlock p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.enter-special {
    padding: 15px 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    border-radius: 30px;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enter-special:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.touch-ripple {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999;
    animation: rippleEffect 0.6s ease-out forwards;
}

@keyframes rippleEffect {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

.thought-input-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    max-width: 500px;
    position: relative;
}

.thought-input-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.thought-input-content textarea {
    width: 100%;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    resize: none;
    margin: 1rem 0;
}

.thought-input-content textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.release-btn {
    padding: 12px 25px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    border-radius: 25px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 1rem;
}

.release-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.close-btn:hover {
    opacity: 1;
}

.mist-particle {
    filter: blur(1px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes continuousPulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.6; 
    }
    50% { 
        transform: scale(1.3); 
        opacity: 1; 
    }
}

.flower-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    max-width: 400px;
    position: relative;
}

.flower-content input {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    margin: 1rem 0;
    text-align: center;
}

.flower-content input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.plant-btn {
    padding: 12px 25px;
    background: linear-gradient(135deg, #a8d5a8, #90c695);
    border: none;
    border-radius: 25px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plant-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 213, 168, 0.4);
}

.emotional-flower {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flower-stem {
    width: 4px;
    background: linear-gradient(to top, #8b7355, #a8d5a8);
    border-radius: 2px;
    margin-bottom: 5px;
}

.flower-bloom {
    position: relative;
    width: 40px;
    height: 40px;
}

.flower-petals {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(168, 213, 168, 0.8), rgba(168, 213, 168, 0.4));
    border-radius: 50%;
    animation: petalGlow 4s ease-in-out infinite;
}

.flower-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background: #f5e6a3;
    border-radius: 50%;
}

.flower-intention {
    margin-top: 10px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 100px;
    line-height: 1.2;
}

@keyframes petalGlow {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.emotional-canvas {
    background: rgba(0, 0, 0, 0.3);
}

.sensory-toys-container {
    position: fixed;
    bottom: 80px;
    left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 80;
}

.sensory-toy {
    width: 50px;
    height: 50px;
    background: var(--glass);
    border: 2px solid var(--glass-border);
    border-radius: 15px;
    backdrop-filter: blur(20px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.sensory-toy:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

.slime-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 300;
    cursor: grab;
}

.slime-container:active {
    cursor: grabbing;
}

.slime-blob {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(145deg, #a8d5a8, #90c695);
    border-radius: 50% 40% 60% 30%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.2s ease-out;
    box-shadow: 0 10px 30px rgba(168, 213, 168, 0.3);
}

.popit-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.popit-bubble {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    text-align: center;
    transition: all 0.2s ease;
    position: relative;
}

.popit-bubble.popped {
    background: linear-gradient(145deg, rgba(168, 213, 168, 0.3), rgba(168, 213, 168, 0.1));
    transform: scale(0.95);
    border-color: var(--calma);
}

.asmr-controls {
    position: fixed;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    background: var(--glass);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(30px);
    border: 2px solid var(--glass-border);
    z-index: 90;
    display: none;
    width: 320px;
    max-height: 80vh;
    overflow-y: auto;
}

.asmr-controls.active {
    display: block;
}

.asmr-channel-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.asmr-channel {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.channel-visual {
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 20px;
    margin-bottom: 0.5rem;
}

.asmr-channel h5 {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-align: center;
}

.asmr-master-controls {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.save-mix-btn, .load-mix-btn {
    flex: 1;
    padding: 0.8rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    border-radius: 15px;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.save-mix-btn:hover, .load-mix-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

@keyframes asmrPulse {
    0%, 100% { background: linear-gradient(90deg, transparent, rgba(168, 213, 168, 0.3), transparent); }
    50% { background: linear-gradient(90deg, transparent, rgba(168, 213, 168, 0.6), transparent); }
}

.premium-slime {
    background: linear-gradient(145deg, #a8d5a8, #90c695);
    box-shadow: 0 15px 40px rgba(168, 213, 168, 0.4);
    transition: all 0.3s ease-out;
}

.pastel-slime {
    background: linear-gradient(145deg, #ffd1dc, #ffb6c1) !important;
    box-shadow: 0 15px 40px rgba(255, 182, 193, 0.4) !important;
}

.metallic-slime {
    background: linear-gradient(145deg, #c0c0c0, #a8a8a8) !important;
    box-shadow: 0 15px 40px rgba(192, 192, 192, 0.5) !important;
}

.glitter-slime {
    background: linear-gradient(145deg, #667eea, #764ba2) !important;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4) !important;
    animation: glitterSparkle 2s ease-in-out infinite;
}

@keyframes glitterSparkle {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3) saturate(1.2); }
}

.slime-controls {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.slime-type-btn {
    padding: 0.8rem 1.5rem;
    background: var(--glass);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
    cursor: pointer;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.slime-type-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

@keyframes slimeTrailFade {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0.5); }
}

.emotional-popit {
    max-width: 600px;
    margin: 2rem auto;
}

.popit-header {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.popit-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.popit-header p {
    opacity: 0.8;
    font-size: 1rem;
}

.emotional-bubble {
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.2;
    transition: all 0.4s ease;
}

.emotional-bubble.popped {
    background: linear-gradient(145deg, rgba(168, 213, 168, 0.4), rgba(168, 213, 168, 0.2));
    color: rgba(168, 213, 168, 1);
    font-weight: 500;
    border-color: var(--calma);
}

.heartbeat-pulse {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 100, 100, 0.3), transparent);
    border-radius: 50%;
    animation: heartbeatPulse 1.2s ease-in-out infinite;
    z-index: 5;
    pointer-events: none;
}

@keyframes heartbeatPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    30% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    80% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.9; }
}

.sequins-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 300;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(10, 1fr);
    gap: 5px;
    padding: 2rem;
}

.sequin {
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.sequin.flipped {
    background: linear-gradient(45deg, #f093fb, #f5576c);
    transform: rotateY(180deg);
}

.liquid-crystal {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.foam-particle {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: foamFloat 3s ease-in-out infinite;
}

@keyframes foamFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

.floating-ribbon {
    position: absolute;
    width: 200px;
    height: 20px;
    background: linear-gradient(90deg, var(--calma), var(--preocupacion));
    border-radius: 10px;
    cursor: pointer;
    animation: ribbonFloat 4s ease-in-out infinite;
}

@keyframes ribbonFloat {
    0%, 100% { transform: rotate(0deg) translateY(0); }
    25% { transform: rotate(5deg) translateY(-10px); }
    50% { transform: rotate(-5deg) translateY(0); }
    75% { transform: rotate(3deg) translateY(10px); }
}

.mixer-controls {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--glass);
    padding: 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(30px);
    border: 2px solid var(--glass-border);
    z-index: 90;
    display: none;
    flex-direction: column;
    gap: 1rem;
}

.mixer-controls.active {
    display: flex;
}

.mixer-channel {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mixer-fader {
    width: 60px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    position: relative;
    cursor: pointer;
}

.mixer-knob {
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.2s ease;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .emotion-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 300px;
    }
    
    .room-controls {
        padding: 0 2rem;
    }
    
    .wisdom-card p {
        font-size: 1.5rem;
    }
    
    .wisdom-controls {
        flex-direction: column;
        align-items: center;
    }
}