 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 :root {
     --pink: #f472b6;
     --pink-dark: #ec4899;
     --purple: #7c3aed;
     --purple-dark: #6d28d9;
     --deep-indigo: #1e1b4b;
     --deepest: #0f0a24;
     --glass-bg: rgba(255, 255, 255, 0.08);
     --glass-border: rgba(255, 255, 255, 0.12);
     --glass-hover: rgba(255, 255, 255, 0.12);
     --text-light: rgba(255, 255, 255, 0.98);
     --text-muted: rgba(255, 255, 255, 0.65);
     --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
     --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
     --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4);
     --shadow-glow: 0 0 32px rgba(244, 114, 182, 0.3);
     --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
     --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
 }

 body {
     font-family: 'Rubik', sans-serif;
     background: linear-gradient(135deg, var(--deepest) 0%, var(--deep-indigo) 40%, var(--purple-dark) 80%, var(--pink-dark) 100%);
     background-size: 400% 400%;
     background-attachment: fixed;
     animation: gradientShift 15s ease infinite;
     min-height: 100vh;
     color: var(--text-light);
     overflow-x: hidden;
     position: relative;
     overscroll-behavior: none;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 body::before {
     content: '';
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: radial-gradient(ellipse at 20% 30%, rgba(244, 114, 182, 0.15) 0%, transparent 50%),
         radial-gradient(ellipse at 80% 70%, rgba(124, 58, 237, 0.15) 0%, transparent 50%);
     pointer-events: none;
     z-index: 0;
 }

 @keyframes gradientShift {

     0%,
     100% {
         background-position: 0% 50%;
     }

     50% {
         background-position: 100% 50%;
     }
 }

 .container {
     position: relative;
     z-index: 1;
     max-width: 640px;
     width: 100%;
     margin: 0 auto;
     padding: 40px 24px;
 }

 header {
     text-align: center;
     margin-bottom: 48px;
     animation: fadeInDown 0.8s var(--transition-smooth);
     position: relative;
 }

 .lang-toggle {
     position: absolute;
     top: 0;
     right: 0;
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 12px;
     padding: 8px 16px;
     color: var(--text-light);
     font-size: 13px;
     font-weight: 500;
     cursor: pointer;
     transition: all 0.3s var(--transition-smooth);
     display: flex;
     align-items: center;
     gap: 6px;
 }

/* If you prefer only the flag visible (no NL/EN text), comment out the next block */
.lang-toggle .lang-text-hidden {
    display: none;
}

 .lang-toggle:hover {
     background: rgba(255, 255, 255, 0.15);
     border-color: rgba(244, 114, 182, 0.6);
     transform: translateY(-2px);
 }

.flag-emoji {
    font-size: 18px;
    line-height: 1;
    display: inline-block;
    transform: translateY(1px);
    /* Ensure emoji font fallback for OS/systems that might not render flags */
    font-family: "Segoe UI Emoji", "Noto Color Emoji", "Apple Color Emoji", "EmojiOne Color", "Twemoji Mozilla", "Segoe UI Symbol", system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

/* SVG flag sizing — header and card variants */
.flag-emoji svg, .flag-emoji .flag-icon, .lang-toggle .flag-icon {
    width: 18px;
    height: 12px;
    display: inline-block;
}

.flag-btn .flag-icon, .flag-btn .flag-icon svg {
    width: 20px;
    height: 14px;
}

.flag-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 3px;
    overflow: hidden;
}

 .lang-toggle svg {
     width: 16px;
     height: 16px;
     fill: currentColor;
 }

 @keyframes fadeInDown {
     from {
         opacity: 0;
         transform: translateY(-20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 h1 {
     font-family: 'Varela Round', sans-serif;
     font-size: 48px;
     font-weight: 400;
     margin-bottom: 8px;
     letter-spacing: -0.02em;
     line-height: 1.2;
     background: linear-gradient(135deg, var(--pink) 0%, #fff 50%, var(--pink) 100%);
     background-size: 200% auto;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     animation: shimmer 3s linear infinite;
 }

 @keyframes shimmer {
     to {
         background-position: 200% center;
     }
 }

 .tagline-container {
     margin-top: 16px;
 }

 .tagline-main {
     font-family: 'Caveat', 'Varela Round', sans-serif; /* natural handwriting, highly readable */
     font-size: 32px; /* slightly larger for better readability with handwriting */
     font-weight: 600; /* medium weight for better legibility */
     margin: 0;
     line-height: 1.3;
     letter-spacing: 0.02em;
     background: linear-gradient(135deg, var(--pink) 0%, #fff 50%, var(--pink) 100%);
     background-size: 200% auto;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     animation: shimmer 3s linear infinite;
 }

 .tagline-sub {
     font-family: 'Caveat', 'Varela Round', sans-serif;
     font-size: 20px;
     font-weight: 500;
     color: var(--text-light);
     margin: 8px 0 0 0;
     opacity: 0.85;
     line-height: 1.3;
     background: linear-gradient(135deg, var(--pink) 0%, #fff 50%, var(--pink) 100%);
     background-size: 200% auto;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     animation: shimmer 3s linear infinite;
 }

/* Responsive adjustments for tagline size */
@media (max-width: 480px) {
    .tagline-main { font-size: 22px; }
    .tagline-sub { font-size: 19px; }
}

@media (min-width: 481px) and (max-width: 900px) {
    .tagline-main { font-size: 28px; }
    .tagline-sub { font-size: 19px; }
}

 .tagline {
     font-size: 13px;
     color: var(--text-muted);
     font-weight: 400;
     opacity: 0.65;
     letter-spacing: 0.02em;
     margin-top: 12px;
     line-height: 1.4;
 }

 .record-section {
     text-align: center;
     margin-bottom: 64px;
     animation: fadeInUp 0.8s var(--transition-smooth) 0.2s both;
     position: relative;
 }

 .decoration-img {
     display: block;
     margin: 0 auto -25px;
     width: 100%;
     max-width: 320px;
     height: auto;
     position: relative;
     z-index: 2;
     pointer-events: none;
     filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* Suggestions Carousel */
 .suggestions-carousel {
     position: relative;
     width: 100%;
     max-width: 100%;
     margin: 0 auto 28px;
     padding: 0 16px;
     overflow: hidden;
 }

 .suggestions-track {
     position: relative;
     width: 100%;
     height: auto;
     min-height: 80px;
     display: flex;
     align-items: center;
     justify-content: flex-start;
     gap: 16px;
     overflow-x: auto;
     overflow-y: hidden;
     scroll-behavior: smooth;
     scroll-snap-type: x mandatory;
     cursor: grab;
     user-select: none;
     -webkit-overflow-scrolling: touch;
     scrollbar-width: none;
     -ms-overflow-style: none;
     padding: 0 15%;
     scroll-padding: 15%;
     will-change: scroll-position;
     transform: translateZ(0);
 }

 .suggestions-track::-webkit-scrollbar {
     display: none;
 }

 .suggestions-track:active {
     cursor: grabbing;
 }

 .suggestion-card {
     position: relative;
     flex: 0 0 auto;
     width: 70%;
     max-width: 420px;
     background: rgba(255, 255, 255, 0.06);
     backdrop-filter: blur(20px);
     -webkit-backdrop-filter: blur(20px);
     border: none;
     border-radius: 24px;
     padding: 18px 22px;
     display: flex;
     align-items: center;
     gap: 16px;
     transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                 opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                 box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                 background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
     opacity: 0.5;
     transform: scale(0.96) translateZ(0);
     box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1), 
                 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
     scroll-snap-align: center;
     will-change: transform, opacity;
     -webkit-transform: scale(0.96) translateZ(0);
     backface-visibility: hidden;
     -webkit-backface-visibility: hidden;
 }

 .suggestion-card.active {
     opacity: 1;
     transform: scale(1) translateZ(0);
     -webkit-transform: scale(1) translateZ(0);
     background: rgba(255, 255, 255, 0.1);
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 
                 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
 }

 .suggestion-icon {
     font-size: 30px;
     flex-shrink: 0;
     line-height: 1;
     filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
 }

 .suggestion-text {
     font-family: 'Rubik', sans-serif;
     font-size: 16px;
     font-weight: 500;
     color: rgba(255, 255, 255, 0.95);
     margin: 0;
     line-height: 1.6;
     text-align: left;
     letter-spacing: 0.02em;
     white-space: normal;
     overflow: visible;
     word-wrap: break-word;
 }

 .title-input-section {
     background: rgba(255, 255, 255, 0.05);
     backdrop-filter: blur(20px);
     -webkit-backdrop-filter: blur(20px);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 24px;
     padding: 32px 32px 0;
     margin-bottom: 0;
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
     animation: fadeInUp 0.8s var(--transition-smooth);
 }

 .preview-section {
     margin-top: 0;
     padding: 20px 28px 28px;
     animation: fadeInUp 0.4s var(--transition-smooth);
 }

 .preview-section h3 {
     font-family: 'Varela Round', sans-serif;
     font-size: 15px;
     font-weight: 400;
     margin-bottom: 14px;
     text-align: center;
     background: linear-gradient(135deg, var(--pink), #fff);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     letter-spacing: -0.01em;
     line-height: 1.3;
     opacity: 0.8;
 }

 .preview-actions .btn {
     width: 100%;
     padding: 12px 32px;
     border-radius: 999px;
     background: rgba(255, 255, 255, 0.13);
     box-shadow: 0 4px 32px rgba(124, 58, 237, 0.13), 0 2px 12px rgba(244, 114, 182, 0.10);
     border: 1.5px solid rgba(255, 255, 255, 0.18);
     transition: all 0.18s var(--transition-smooth);
     backdrop-filter: blur(18px);
     -webkit-backdrop-filter: blur(18px);
     outline: none;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     user-select: none;
     position: relative;
     overflow: hidden;
 }

 .preview-actions .btn:disabled {
     opacity: 0.38;
     background: rgba(255, 255, 255, 0.08);
     box-shadow: none;
     border: 1.5px solid rgba(255, 255, 255, 0.08);
     cursor: not-allowed;
     filter: grayscale(0.15);
 }

 .preview-actions .btn:not(:disabled):hover {
     background: linear-gradient(135deg, rgba(244, 114, 182, 0.22), rgba(124, 58, 237, 0.22));
     box-shadow: 0 6px 24px rgba(244, 114, 182, 0.16), 0 2px 12px rgba(124, 58, 237, 0.13);
     transform: translateY(-1.5px) scale(1.025);
     filter: brightness(1.07);
     border: 1.5px solid rgba(244, 114, 182, 0.18);
 }

 .btn-gradient-text {
     font-family: 'Varela Round', sans-serif;
     font-size: 16px;
     font-weight: 400;
     letter-spacing: -0.02em;
     line-height: 1.2;
     background: linear-gradient(135deg, var(--pink) 0%, #fff 50%, var(--pink) 100%);
     background-size: 200% auto;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     color: transparent;
     animation: shimmer 3s linear infinite;
     display: inline-block;
     transition: color 0.2s, -webkit-text-fill-color 0.2s;
 }

 .btn:disabled .btn-gradient-text {
     background: none !important;
     color: rgba(255, 255, 255, 0.55) !important;
     -webkit-text-fill-color: rgba(255, 255, 255, 0.55) !important;
     text-fill-color: rgba(255, 255, 255, 0.55) !important;
     animation: none !important;
 }

 .title-main-label {
     display: block;
     font-size: 17px;
     font-weight: 500;
     color: var(--text-light);
     margin-bottom: 18px;
     text-align: left;
     letter-spacing: -0.01em;
     line-height: 1.45;
     opacity: 0.95;
 }

 .input-wrapper {
     position: relative;
     margin-bottom: 12px;
 }

 .floating-label {
     position: absolute;
     left: 20px;
     top: 8px;
     font-size: 10px;
     font-weight: 500;
     color: rgba(255, 255, 255, 0.4);
     background: transparent;
     padding: 0;
     pointer-events: none;
     transition: all 0.3s var(--transition-smooth);
     opacity: 1;
     z-index: 1;
     letter-spacing: 0.03em;
     text-transform: uppercase;
 }

 .title-input {
     width: 100%;
     padding-top: 26px;
     padding-bottom: 10px;
     padding-left: 20px;
     padding-right: 20px;
     background: rgba(255, 255, 255, 0.08);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     border: 1.5px solid rgba(255, 255, 255, 0.2);
     border-radius: 16px;
     color: var(--text-light);
     font-size: 15px;
     font-family: 'Rubik', sans-serif;
     font-weight: 400;
     transition: all 0.3s var(--transition-smooth);
     text-align: left;
     line-height: 1.5;
 }

 .title-input::placeholder {
     color: rgba(255, 255, 255, 0.45);
     font-weight: 400;
 }

 .title-input:focus {
     outline: none;
     background: rgba(255, 255, 255, 0.09);
     border-color: rgba(244, 114, 182, 0.6);
     box-shadow: 0 0 0 4px rgba(244, 114, 182, 0.15);
 }

 .title-input:focus~.floating-label {
     color: rgba(244, 114, 182, 0.8);
 }

 .char-count {
     text-align: right;
     font-size: 12px;
     color: var(--text-muted);
     margin-top: 10px;
     opacity: 0.6;
     font-weight: 400;
     display: block;
     letter-spacing: 0.02em;
 }

 .record-control-area {
     padding: 32px 0 8px;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 24px;
     margin-bottom: 0;
 }

 .record-button {
     width: 88px;
     height: 88px;
     border-radius: 50%;
     background: linear-gradient(135deg, #a78bfa 0%, #c084fc 50%, #f472b6 100%);
     border: none;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 8px 24px rgba(167, 139, 250, 0.3), 0 0 32px rgba(192, 132, 252, 0.2);
     transition: all 0.4s var(--transition-smooth);
     position: relative;
     animation: breathe 3s ease-in-out infinite;
 }

 .record-button:disabled {
     opacity: 0.5;
     cursor: not-allowed;
     background: linear-gradient(135deg, rgba(244, 114, 182, 0.5), rgba(236, 72, 137, 0.5));
     box-shadow: var(--shadow-sm);
     animation: none;
 }

 .record-button:disabled::before {
     display: none;
 }

 .record-button:disabled:hover {
     transform: none;
 }

 .record-button::before {
     content: '';
     position: absolute;
     inset: -4px;
     border-radius: 50%;
     background: linear-gradient(135deg, #c084fc, #a78bfa, #f472b6);
     opacity: 0;
     transition: opacity 0.4s var(--transition-smooth);
     z-index: -1;
     filter: blur(12px);
     animation: rotate 8s linear infinite;
 }

 .record-button::after {
     content: '';
     position: absolute;
     inset: -8px;
     border-radius: 50%;
     background: radial-gradient(circle, transparent 60%, #c084fc 100%);
     opacity: 0;
     transition: opacity 0.4s var(--transition-smooth);
     z-index: -2;
     filter: blur(20px);
 }

 .record-button:hover {
     transform: scale(1.08);
     box-shadow: 0 16px 48px rgba(167, 139, 250, 0.4), 0 0 48px rgba(192, 132, 252, 0.5);
     animation: breathe 2s ease-in-out infinite;
 }

 .record-button:hover::before {
     opacity: 0.8;
 }

 .record-button:hover::after {
     opacity: 0.4;
 }

 .record-button:active {
     transform: scale(0.95);
     transition: all 0.1s var(--transition-smooth);
 }

 .record-button.recording {
     background: linear-gradient(135deg, #ff6b9d, #c9184a);
     animation: recordPulse 1.5s ease-in-out infinite, recordGlow 2s ease-in-out infinite;
 }

 .record-button.recording::before {
     background: linear-gradient(135deg, #ff6b9d, #c9184a);
     opacity: 0.8;
     animation: rotate 6s linear infinite;
 }

 .record-button.recording::after {
     opacity: 0.6;
 }

 @keyframes breathe {
     0%, 100% {
         transform: scale(1);
         box-shadow: 0 8px 24px rgba(167, 139, 250, 0.3), 0 0 32px rgba(192, 132, 252, 0.2);
     }
     50% {
         transform: scale(1.03);
         box-shadow: 0 16px 48px rgba(167, 139, 250, 0.4), 0 0 40px rgba(192, 132, 252, 0.4);
     }
 }

 @keyframes rotate {
     0% {
         transform: rotate(0deg);
     }
     100% {
         transform: rotate(360deg);
     }
 }

 @keyframes recordPulse {

     0%,
     100% {
         transform: scale(1);
     }

     50% {
         transform: scale(1.05);
     }
 }

 @keyframes recordGlow {

     0%,
     100% {
         box-shadow: 0 8px 24px rgba(255, 107, 157, 0.4), 0 0 32px rgba(255, 107, 157, 0.3);
     }

     50% {
         box-shadow: 0 8px 32px rgba(255, 107, 157, 0.6), 0 0 48px rgba(255, 107, 157, 0.5);
     }
 }

 .record-button svg {
     width: 36px;
     height: 36px;
     fill: white;
 }

 .status-info {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 10px;
     min-height: 68px;
 }

 .helper-text {
     font-size: 12px;
     color: rgba(255, 255, 255, 0.6);
     transition: all 0.3s var(--transition-smooth);
     opacity: 1;
     line-height: 1.4;
     text-align: center;
     max-width: 400px;
     font-weight: 400;
     letter-spacing: 0.01em;
     margin-top: 12px;
 }

 .timer {
     font-size: 28px;
     font-weight: 500;
     color: #ffb3c6;
     font-family: 'Courier New', monospace;
     letter-spacing: 0.1em;
     animation: timerPulse 1s ease-in-out infinite;
     line-height: 1.3;
 }

 @keyframes timerPulse {

     0%,
     100% {
         opacity: 1;
     }

     50% {
         opacity: 0.7;
     }
 }

 .audio-feed {
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 .audio-card {
     background: rgba(255, 255, 255, 0.05);
     backdrop-filter: blur(20px);
     -webkit-backdrop-filter: blur(20px);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 20px;
     padding: 20px;
     box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
     transition: all 0.3s var(--transition-smooth);
     position: relative;
     opacity: 0;
     animation: fadeInCard 0.5s var(--transition-smooth) forwards;
 }

 @keyframes fadeInCard {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .audio-card::before {
     content: '';
     position: absolute;
     inset: 0;
     border-radius: 20px;
     padding: 1px;
     background: linear-gradient(135deg, rgba(244, 114, 182, 0.4), rgba(124, 58, 237, 0.4));
     -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
     -webkit-mask-composite: xor;
     mask-composite: exclude;
     opacity: 0;
     transition: opacity 0.3s var(--transition-smooth);
 }

 .audio-card:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
     background: rgba(255, 255, 255, 0.08);
 }

 .audio-card:hover::before {
     opacity: 1;
 }

 .audio-card.playing {
     background: rgba(255, 255, 255, 0.12);
 }

 .audio-card.playing::before {
     opacity: 0;
 }

 .card-header {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     margin-bottom: 18px;
     gap: 12px;
 }

 .card-header-left {
     flex: 1;
     min-width: 0;
 }

 .recording-title {
     font-size: 15px;
     font-weight: 500;
     color: var(--text-light);
     margin-bottom: 6px;
     overflow: hidden;
     text-overflow: ellipsis;
     white-space: nowrap;
     line-height: 1.4;
     letter-spacing: -0.005em;
     opacity: 0.95;
 }

 .timestamp {
     font-size: 12px;
     color: var(--text-muted);
     opacity: 0.65;
     font-weight: 400;
     letter-spacing: 0.01em;
 }

 .flag-btn {
     background: none;
     border: none;
     cursor: pointer;
     opacity: 0.5;
     transition: all 0.3s var(--transition-smooth);
     padding: 6px;
     border-radius: 8px;
    color: var(--pink);
 }

.flag-btn svg {
    width: 20px;
    height: 14px;
    display: block;
    transition: transform 0.25s var(--transition-smooth), opacity 0.25s var(--transition-smooth);
}

 .flag-btn:hover {
     opacity: 1;
     background: rgba(255, 255, 255, 0.1);
    color: var(--pink-dark);
 }

.flag-btn:hover svg {
    transform: scale(1.03);
}

 .playback-section {
     display: flex;
     align-items: center;
     gap: 14px;
     margin-bottom: 18px;
 }

 .play-button {
     width: 48px;
     height: 48px;
     border-radius: 50%;
     background: linear-gradient(135deg, rgba(244, 114, 182, 0.15), rgba(124, 58, 237, 0.15));
     border: 1px solid rgba(255, 255, 255, 0.2);
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.25s var(--transition-smooth);
     flex-shrink: 0;
     position: relative;
 }

 .play-button::before {
     content: '';
     position: absolute;
     inset: -2px;
     border-radius: 50%;
     background: linear-gradient(135deg, var(--pink), var(--purple));
     opacity: 0;
     filter: blur(8px);
     transition: opacity 0.3s var(--transition-smooth);
     z-index: -1;
 }

 .play-button:hover {
     background: linear-gradient(135deg, rgba(244, 114, 182, 0.25), rgba(124, 58, 237, 0.25));
     transform: scale(1.06);
     border-color: rgba(255, 255, 255, 0.3);
 }

 .play-button:hover::before {
     opacity: 0.5;
 }

 .play-button:active {
     transform: scale(0.95);
 }

 .play-button svg {
     width: 18px;
     height: 18px;
     fill: white;
 }

 .waveform {
     flex: 1;
     height: 40px;
     display: flex;
     align-items: center;
     gap: 3px;
 }

 .wave-bar {
     flex: 1;
     min-width: 3px;
     background: linear-gradient(180deg, rgba(244, 114, 182, 0.3), rgba(124, 58, 237, 0.3));
     border-radius: 2px;
     transition: all 0.3s var(--transition-smooth);
     display: block;
 }

 .playing .wave-bar {
     background: linear-gradient(180deg, rgba(244, 114, 182, 0.8), rgba(124, 58, 237, 0.8));
     animation: wave 1.2s ease-in-out infinite;
 }

 @keyframes wave {

     0%,
     100% {
         height: 8px;
         opacity: 0.6;
     }

     50% {
         height: 32px;
         opacity: 1;
     }
 }

 .wave-bar:nth-child(1) {
     animation-delay: 0s;
 }

 .wave-bar:nth-child(2) {
     animation-delay: 0.1s;
 }

 .wave-bar:nth-child(3) {
     animation-delay: 0.2s;
 }

 .wave-bar:nth-child(4) {
     animation-delay: 0.3s;
 }

 .wave-bar:nth-child(5) {
     animation-delay: 0.4s;
 }

 .wave-bar:nth-child(6) {
     animation-delay: 0.5s;
 }

 .wave-bar:nth-child(7) {
     animation-delay: 0.6s;
 }

 .wave-bar:nth-child(8) {
     animation-delay: 0.7s;
 }

 .card-footer {
     display: flex;
     flex-direction: column;
     gap: 12px;
     padding-top: 4px;
 }

 .footer-row {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .listeners {
     font-size: 12px;
     color: var(--text-muted);
     display: flex;
     align-items: center;
     gap: 6px;
     opacity: 0.75;
     font-weight: 400;
     letter-spacing: 0.01em;
 }

 .reaction-pills {
     display: flex;
     gap: 6px;
     flex-wrap: wrap;
     align-items: center;
 }

 .reaction-pill {
     padding: 6px 12px;
     border-radius: 999px;
     background: rgba(255, 255, 255, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.15);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     font-size: 13px;
     font-weight: 500;
     display: inline-flex;
     align-items: center;
     gap: 4px;
     transition: all 0.2s ease;
     cursor: pointer;
     color: var(--text-light);
     opacity: 0.9;
 }

 .reaction-pill:hover {
     background: rgba(255, 255, 255, 0.15);
     transform: scale(1.05);
 }

 .reaction-pill.active {
     background: rgba(244, 114, 182, 0.3);
     border-color: rgba(244, 114, 182, 0.5);
     box-shadow: 0 0 12px rgba(244, 114, 182, 0.4);
 }

 .add-reaction-btn {
     padding: 6px 12px;
     border-radius: 999px;
     background: rgba(255, 255, 255, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.15);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     font-size: 13px;
     font-weight: 500;
     display: inline-flex;
     align-items: center;
     gap: 4px;
     transition: all 0.2s ease;
     cursor: pointer;
     color: var(--text-light);
     opacity: 0.85;
 }

 .add-reaction-btn:hover {
     background: rgba(255, 255, 255, 0.15);
     transform: scale(1.05);
 }

 /* Emoji picker overlay */
 .emoji-picker-overlay {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.6);
     backdrop-filter: blur(8px);
     -webkit-backdrop-filter: blur(8px);
     z-index: 2000;
     align-items: center;
     justify-content: center;
     padding: 20px;
     opacity: 0;
     transition: opacity 0.3s var(--transition-smooth);
 }

 .emoji-picker-overlay.show {
     display: flex;
     animation: fadeIn 0.3s var(--transition-smooth) forwards;
 }

 .emoji-picker {
     background: linear-gradient(135deg, rgba(30, 27, 75, 0.95), rgba(15, 10, 36, 0.95));
     backdrop-filter: blur(32px);
     -webkit-backdrop-filter: blur(32px);
     border: 1px solid var(--glass-border);
     border-radius: 24px;
     padding: 28px;
     max-width: min(480px, 90vw);
     width: 100%;
     max-height: min(600px, 85vh);
     box-shadow: var(--shadow-lg), 0 0 64px rgba(244, 114, 182, 0.2);
     animation: modalSlideUp 0.4s var(--transition-bounce);
     position: relative;
     display: flex;
     flex-direction: column;
     overflow: hidden;
 }

 .emoji-picker::before {
     content: '';
     position: absolute;
     inset: 0;
     border-radius: 24px;
     padding: 1px;
     background: linear-gradient(135deg, rgba(244, 114, 182, 0.5), rgba(124, 58, 237, 0.5));
     -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
     -webkit-mask-composite: xor;
     mask-composite: exclude;
     pointer-events: none;
 }

 .emoji-picker h3 {
     font-family: 'Varela Round', sans-serif;
     font-size: 21px;
     font-weight: 400;
     margin-bottom: 20px;
     text-align: center;
     background: linear-gradient(135deg, var(--pink), #fff);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     flex-shrink: 0;
     letter-spacing: -0.01em;
     line-height: 1.3;
 }

 .emoji-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 12px;
     margin-bottom: 16px;
     overflow-y: auto;
     overflow-x: hidden;
     padding-right: 4px;
     max-height: calc(85vh - 180px);
 }

 .emoji-grid::-webkit-scrollbar {
     width: 6px;
 }

 .emoji-grid::-webkit-scrollbar-track {
     background: rgba(255, 255, 255, 0.05);
     border-radius: 3px;
 }

 .emoji-grid::-webkit-scrollbar-thumb {
     background: rgba(244, 114, 182, 0.4);
     border-radius: 3px;
 }

 .emoji-grid::-webkit-scrollbar-thumb:hover {
     background: rgba(244, 114, 182, 0.6);
 }

 .emoji-option {
     background: rgba(255, 255, 255, 0.08);
     border: 1px solid rgba(255, 255, 255, 0.15);
     border-radius: 16px;
     padding: 10px 6px;
     cursor: pointer;
     transition: all 0.3s var(--transition-smooth);
     text-align: center;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     gap: 6px;
     min-height: 90px;
 }

 .emoji-option:hover {
     background: rgba(255, 255, 255, 0.15);
     transform: scale(1.08);
     border-color: rgba(244, 114, 182, 0.5);
 }

 .emoji-option.active {
     background: rgba(244, 114, 182, 0.3);
     border-color: rgba(244, 114, 182, 0.6);
     box-shadow: 0 0 16px rgba(244, 114, 182, 0.4);
 }

 .emoji-icon {
     font-size: clamp(28px, 5vw, 32px);
     line-height: 1;
     flex-shrink: 0;
 }

 .emoji-label {
     font-size: clamp(10px, 2vw, 11px);
     color: var(--text-muted);
     font-weight: 500;
     width: 100%;
     overflow: hidden;
     text-overflow: ellipsis;
     white-space: nowrap;
     line-height: 1.2;
 }

 .close-picker-btn {
     width: 100%;
     padding: 12px;
     background: rgba(255, 255, 255, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 12px;
     color: var(--text-light);
     font-family: 'Rubik', sans-serif;
     font-size: 14px;
     font-weight: 500;
     cursor: pointer;
     transition: all 0.3s var(--transition-smooth);
     flex-shrink: 0;
     letter-spacing: 0.01em;
 }

 .close-picker-btn:hover {
     background: rgba(255, 255, 255, 0.15);
     border-color: rgba(255, 255, 255, 0.3);
 }

 /* Modal styles */
 .modal {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.75);
     backdrop-filter: blur(12px);
     -webkit-backdrop-filter: blur(12px);
     z-index: 1000;
     align-items: center;
     justify-content: center;
     padding: 20px;
     opacity: 0;
     transition: opacity 0.3s var(--transition-smooth);
 }

 .modal.show {
     display: flex;
     animation: fadeIn 0.3s var(--transition-smooth) forwards;
 }

 @keyframes fadeIn {
     to {
         opacity: 1;
     }
 }

 .modal-content {
     background: linear-gradient(135deg, rgba(30, 27, 75, 0.95), rgba(15, 10, 36, 0.95));
     backdrop-filter: blur(32px);
     -webkit-backdrop-filter: blur(32px);
     border: 1px solid var(--glass-border);
     border-radius: 28px;
     padding: 36px;
     max-width: 420px;
     width: 100%;
     box-shadow: var(--shadow-lg), 0 0 64px rgba(244, 114, 182, 0.2);
     animation: modalSlideUp 0.4s var(--transition-bounce);
     position: relative;
 }

 .modal-content::before {
     content: '';
     position: absolute;
     inset: 0;
     border-radius: 28px;
     padding: 1px;
     background: linear-gradient(135deg, rgba(244, 114, 182, 0.5), rgba(124, 58, 237, 0.5));
     -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
     -webkit-mask-composite: xor;
     mask-composite: exclude;
 }

 @keyframes modalSlideUp {
     from {
         transform: translateY(40px) scale(0.9);
         opacity: 0;
     }

     to {
         transform: translateY(0) scale(1);
         opacity: 1;
     }
 }

 .modal h2 {
     font-family: 'Varela Round', sans-serif;
     font-size: 24px;
     font-weight: 400;
     margin-bottom: 24px;
     text-align: center;
     background: linear-gradient(135deg, var(--pink), #fff);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     letter-spacing: -0.01em;
     line-height: 1.3;
 }

 .title-modal-input-section {
     margin: 20px 0;
 }

 .title-modal-input-section .input-wrapper {
     margin-bottom: 12px;
 }

 .title-modal-input-section .char-count {
     text-align: right;
     font-size: 12px;
     color: var(--text-muted);
     opacity: 0.7;
 }

 .modal-actions {
     display: flex;
     gap: 12px;
     margin-top: 24px;
 }

 .btn {
     flex: 1;
     padding: 14px 28px;
     border-radius: 14px;
     border: none;
     font-family: 'Rubik', sans-serif;
     font-size: 15px;
     font-weight: 500;
     cursor: pointer;
     transition: all 0.3s var(--transition-smooth);
     position: relative;
     overflow: hidden;
     letter-spacing: 0.01em;
     line-height: 1.4;
 }

 .btn::before {
     content: '';
     position: absolute;
     inset: 0;
     background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
     opacity: 0;
     transition: opacity 0.3s var(--transition-smooth);
 }

 .btn:hover::before {
     opacity: 1;
 }

 .btn-primary {
     background: linear-gradient(135deg, var(--pink), var(--pink-dark));
     color: white;
     box-shadow: 0 4px 16px rgba(244, 114, 182, 0.3);
 }

 .btn-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 24px rgba(244, 114, 182, 0.5);
 }

 .btn-primary:active {
     transform: translateY(0);
 }

 .btn-secondary {
     background: rgba(255, 255, 255, 0.1);
     color: white;
     border: 1px solid rgba(255, 255, 255, 0.2);
 }

 .btn-secondary:hover {
     background: rgba(255, 255, 255, 0.2);
     border-color: rgba(255, 255, 255, 0.3);
     transform: translateY(-2px);
 }

 .btn-secondary:active {
     transform: translateY(0);
 }

 .form-group {
     margin-bottom: 20px;
 }

 .form-label {
     display: block;
     font-size: 13px;
     color: var(--text-muted);
     margin-bottom: 8px;
     font-weight: 500;
     letter-spacing: 0.01em;
     opacity: 0.9;
 }

 .form-control {
     width: 100%;
     padding: 12px 16px;
     background: rgba(255, 255, 255, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 12px;
     color: var(--text-light);
     font-size: 14px;
     font-weight: 400;
     font-family: 'Rubik', sans-serif;
     transition: all 0.3s var(--transition-smooth);
     line-height: 1.5;
 }

 .form-control::placeholder {
     color: rgba(255, 255, 255, 0.45);
     font-weight: 400;
 }

 .form-control:focus {
     outline: none;
     background: rgba(255, 255, 255, 0.15);
     border-color: var(--pink);
     box-shadow: 0 0 0 3px rgba(244, 114, 182, 0.2);
 }

 .preview-player {
     margin-bottom: 16px;
 }

 .preview-playback-section {
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 12px 16px;
     background: rgba(255, 255, 255, 0.05);
     border-radius: 50px;
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .preview-play-btn {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: linear-gradient(135deg, rgba(244, 114, 182, 0.3), rgba(124, 58, 237, 0.3));
     border: 1px solid rgba(244, 114, 182, 0.4);
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.25s var(--transition-smooth);
     flex-shrink: 0;
     position: relative;
 }

 .preview-play-btn:disabled {
     opacity: 0.4;
     cursor: not-allowed;
     background: linear-gradient(135deg, rgba(244, 114, 182, 0.15), rgba(124, 58, 237, 0.15));
     border-color: rgba(255, 255, 255, 0.1);
 }

 .preview-play-btn:disabled:hover {
     transform: none;
     box-shadow: none;
     background: linear-gradient(135deg, rgba(244, 114, 182, 0.15), rgba(124, 58, 237, 0.15));
 }

 .preview-play-btn:hover {
     background: linear-gradient(135deg, rgba(244, 114, 182, 0.4), rgba(124, 58, 237, 0.4));
     transform: scale(1.05);
     box-shadow: 0 0 16px rgba(244, 114, 182, 0.3);
 }

 .preview-play-btn:active {
     transform: scale(0.95);
 }

 .preview-play-btn svg {
     width: 16px;
     height: 16px;
     fill: white;
 }

 .preview-waveform {
     flex: 1;
     height: 40px;
     display: flex;
     align-items: center;
     gap: 3px;
 }

 .preview-wave-bar {
     flex: 1;
     min-width: 3px;
     background: linear-gradient(180deg, rgba(244, 114, 182, 0.3), rgba(124, 58, 237, 0.3));
     border-radius: 2px;
     transition: all 0.3s var(--transition-smooth);
     display: block;
 }

 .preview-player.playing .preview-wave-bar {
     background: linear-gradient(180deg, rgba(244, 114, 182, 0.8), rgba(124, 58, 237, 0.8));
     animation: wave 1.2s ease-in-out infinite;
 }

 .preview-player.playing .preview-wave-bar:nth-child(1) {
     animation-delay: 0s;
 }

 .preview-player.playing .preview-wave-bar:nth-child(2) {
     animation-delay: 0.1s;
 }

 .preview-player.playing .preview-wave-bar:nth-child(3) {
     animation-delay: 0.2s;
 }

 .preview-player.playing .preview-wave-bar:nth-child(4) {
     animation-delay: 0.3s;
 }

 .preview-player.playing .preview-wave-bar:nth-child(5) {
     animation-delay: 0.4s;
 }

 .preview-player.playing .preview-wave-bar:nth-child(6) {
     animation-delay: 0.5s;
 }

 .preview-player.playing .preview-wave-bar:nth-child(7) {
     animation-delay: 0.6s;
 }

 .preview-player.playing .preview-wave-bar:nth-child(8) {
     animation-delay: 0.7s;
 }

 .report-options {
     display: flex;
     flex-direction: column;
     gap: 12px;
     margin-bottom: 20px;
 }

 .report-option {
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.15);
     border-radius: 14px;
     padding: 16px;
     cursor: pointer;
     transition: all 0.3s var(--transition-smooth);
     text-align: left;
     position: relative;
     overflow: hidden;
 }

 .report-option::before {
     content: '';
     position: absolute;
     inset: 0;
     background: linear-gradient(135deg, rgba(244, 114, 182, 0.1), rgba(124, 58, 237, 0.1));
     opacity: 0;
     transition: opacity 0.3s var(--transition-smooth);
 }

 .report-option:hover {
     background: rgba(255, 255, 255, 0.15);
     border-color: rgba(255, 255, 255, 0.3);
     transform: translateX(4px);
 }

 .report-option:hover::before {
     opacity: 1;
 }

 .toast-notification {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.7);
     backdrop-filter: blur(8px);
     -webkit-backdrop-filter: blur(8px);
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 10000;
     opacity: 0;
     pointer-events: none;
     transition: opacity 0.3s var(--transition-smooth);
 }

 .toast-notification.show {
     opacity: 1;
     pointer-events: all;
 }

 .toast-content {
     background: rgba(30, 27, 75, 0.95);
     backdrop-filter: blur(20px);
     -webkit-backdrop-filter: blur(20px);
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 20px;
     padding: 32px;
     color: var(--text-light);
     max-width: 440px;
     width: 90%;
     box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
     text-align: center;
     transform: scale(0.9);
     transition: transform 0.3s var(--transition-smooth);
 }

 .toast-notification.show .toast-content {
     transform: scale(1);
 }

 .toast-notification .toast-icon {
     display: block;
     font-size: 48px;
     margin-bottom: 16px;
 }

 .toast-notification .toast-message {
     font-size: 15px;
     line-height: 1.6;
     color: rgba(255, 255, 255, 0.9);
     margin-bottom: 24px;
 }

 .toast-notification .toast-close-btn {
     background: rgba(255, 255, 255, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 12px;
     padding: 12px 32px;
     color: white;
     font-size: 14px;
     font-weight: 500;
     cursor: pointer;
     transition: all 0.3s var(--transition-smooth);
     font-family: 'Rubik', sans-serif;
 }

 .toast-notification .toast-close-btn:hover {
     background: rgba(255, 255, 255, 0.2);
     border-color: rgba(255, 255, 255, 0.3);
     transform: translateY(-2px);
 }

 .empty-state {
     text-align: center;
     padding: 64px 20px;
     color: var(--text-muted);
     animation: fadeInUp 0.8s var(--transition-smooth);
 }

 .empty-state-icon {
     font-size: 56px;
     margin-bottom: 16px;
     display: inline-block;
     animation: float 3s ease-in-out infinite;
     opacity: 0.7;
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-10px);
     }
 }

 .loading-indicator {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     padding: 40px 20px;
     gap: 16px;
     animation: fadeInUp 0.5s var(--transition-smooth);
 }

 .loading-indicator p {
     color: var(--text-muted);
     font-size: 14px;
     font-weight: 400;
     margin: 0;
     opacity: 0.8;
     letter-spacing: 0.01em;
 }

 .spinner {
     width: 40px;
     height: 40px;
     border: 3px solid rgba(244, 114, 182, 0.2);
     border-top-color: var(--pink);
     border-radius: 50%;
     animation: spin 0.8s linear infinite;
 }

 @keyframes spin {
     to {
         transform: rotate(360deg);
     }
 }

 /* Large Screens */
 @media (min-width: 1200px) {
     .container {
         max-width: 820px;
         padding: 60px 40px;
     }

     h1 {
         font-size: 64px;
         margin-bottom: 12px;
     }

     .tagline {
         font-size: 15px;
         margin-top: 16px;
     }

     header {
         margin-bottom: 64px;
     }

     .record-section {
         margin-bottom: 80px;
     }

     .title-input-section {
         padding: 48px 52px 0;
         border-radius: 32px;
     }

     .record-control-area {
         padding: 40px 0;
         gap: 28px;
     }

     .record-button {
         width: 104px;
         height: 104px;
     }

     .record-button svg {
         width: 50px;
         height: 50px;
     }

     .status-info {
         gap: 16px;
     }

     .helper-text {
         font-size: 14px;
     }

     .timer {
         font-size: 34px;
     }

     .preview-section {
         margin-top: 20px;
         padding: 24px 40px 36px;
     }

     .preview-section h3 {
         font-size: 19px;
         margin-bottom: 20px;
     }

     .preview-playback-section {
         padding: 16px 20px;
     }

     .preview-play-btn {
         width: 48px;
         height: 48px;
     }

     .preview-play-btn svg {
         width: 22px;
         height: 22px;
     }

     .btn-gradient-text {
         font-size: 18px;
     }

     .preview-actions .btn {
         padding: 14px 40px;
     }

     .audio-card {
         padding: 28px 32px;
     }

     .card-title {
         font-size: 19px;
     }

     .card-meta {
         font-size: 13px;
     }

     .play-button {
         width: 56px;
         height: 56px;
     }

     .play-button svg {
         width: 26px;
         height: 26px;
     }
 }

 /* Desktop Screens */
 @media (min-width: 1440px) {
     .container {
         max-width: 920px;
         padding: 80px 56px;
     }

     h1 {
         font-size: 76px;
     }

     .tagline {
         font-size: 17px;
         margin-top: 18px;
     }

     .record-section {
         margin-bottom: 100px;
     }

     .title-input-section {
         padding: 56px 60px 0;
         border-radius: 36px;
     }

     .record-control-area {
         padding: 48px 0;
         gap: 32px;
     }

     .record-button {
         width: 116px;
         height: 116px;
     }

     .record-button svg {
         width: 56px;
         height: 56px;
     }

     .status-info {
         gap: 18px;
     }

     .helper-text {
         font-size: 15px;
     }

     .timer {
         font-size: 38px;
     }

     .preview-section {
         margin-top: 24px;
         padding: 28px 48px 44px;
     }

     .preview-section h3 {
         font-size: 21px;
         margin-bottom: 24px;
     }

     .audio-feed {
         gap: 24px;
     }
 }

 /* Tablet Breakpoint */
 @media (max-width: 1024px) and (min-width: 641px) {
     .emoji-picker {
         max-width: 450px;
         padding: 24px;
     }

     .emoji-grid {
         grid-template-columns: repeat(4, 1fr);
         gap: 10px;
     }

     .emoji-option {
         min-height: 80px;
     }
 }

 /* Mobile Breakpoint */
 @media (max-width: 640px) {
     .suggestions-carousel {
         margin-bottom: 20px;
         padding: 0 12px;
     }

     .suggestions-track {
         height: 75px;
         gap: 12px;
         padding: 0 10%;
         scroll-padding: 10%;
     }

     .suggestion-card {
         width: 78%;
         min-width: 280px;
         padding: 16px 20px;
         gap: 14px;
         border-radius: 16px;
     }

     .suggestion-icon {
         font-size: 26px;
     }

     .suggestion-text {
         font-size: 15px;
         font-weight: 500;
     }

     h1 {
         font-size: 40px;
     }

     .container {
         padding: 24px 16px;
         min-height: auto;
     }

     .audio-card {
         padding: 18px;
         border-radius: 18px;
     }

     .audio-feed {
         gap: 16px;
     }

     .recording-title {
         font-size: 15px;
     }

     .reactions {
         gap: 6px;
     }

     .reaction-btn {
         padding: 5px 8px;
         font-size: 13px;
     }

     /* Emoji Picker Mobile Responsiveness */
     .emoji-picker {
         max-width: 96vw;
         max-height: 90vh;
         padding: 18px 14px;
         border-radius: 20px;
     }

     .emoji-picker h3 {
         font-size: 17px;
         margin-bottom: 14px;
     }

     .emoji-grid {
         grid-template-columns: repeat(3, 1fr);
         gap: 8px;
         max-height: calc(90vh - 150px);
         padding-right: 2px;
     }

     .emoji-option {
         min-height: 82px;
         padding: 8px 4px;
         border-radius: 12px;
         gap: 4px;
     }

     .emoji-icon {
         font-size: 28px;
     }

     .emoji-label {
         font-size: 10px;
         line-height: 1.1;
     }

     .close-picker-btn {
         padding: 14px;
         font-size: 15px;
         border-radius: 14px;
     }

     /* Mobile Card Adjustments */
     .title-input-section {
         padding: 24px 20px 0;
         border-radius: 20px;
     }

     .title-main-label {
         font-size: 16px;
         margin-bottom: 16px;
     }

     .floating-label {
         font-size: 10px;
         left: 16px;
         top: 6px;
     }

     .record-control-area {
         padding: 28px 0;
     }
 }

 /* Extra Small Phone Breakpoint */
 @media (max-width: 380px) {
     .emoji-picker {
         max-width: 98vw;
         padding: 14px 10px;
         border-radius: 18px;
     }

     .emoji-picker h3 {
         font-size: 15px;
         margin-bottom: 12px;
     }

     .emoji-grid {
         grid-template-columns: repeat(3, 1fr);
         gap: 6px;
         max-height: calc(90vh - 140px);
         padding-right: 2px;
     }

     .emoji-option {
         min-height: 76px;
         padding: 6px 3px;
         border-radius: 10px;
         gap: 3px;
     }

     .emoji-icon {
         font-size: 26px;
     }

     .emoji-label {
         font-size: 9px;
         line-height: 1.1;
     }

     .close-picker-btn {
         padding: 12px;
         font-size: 14px;
         border-radius: 12px;
     }
 }

 /* Landscape Orientation for Mobile */
 @media (max-height: 500px) and (orientation: landscape) {
     .emoji-picker {
         max-height: 95vh;
         padding: 12px 16px;
     }

     .emoji-picker h3 {
         font-size: 16px;
         margin-bottom: 10px;
     }

     .emoji-grid {
         grid-template-columns: repeat(6, 1fr);
         gap: 8px;
         max-height: calc(95vh - 120px);
     }

     .emoji-option {
         min-height: 60px;
         padding: 6px 4px;
     }

     .emoji-icon {
         font-size: 22px;
     }

     .emoji-label {
         font-size: 9px;
     }

     .close-picker-btn {
         padding: 10px;
         font-size: 13px;
     }
 }
