/* ==========================================
   TENBURST - PROFESSIONAL DESIGN SYSTEM
   Color Palette:
   - Primary: #FF3D00 (vivid orange)
   - Secondary: #FF6D00 (gradient orange)
   - Highlight: #FFAB40 (light orange)
   - Electric Yellow: #FFD300 (notifications, accents)
   - Backgrounds: #121212 (main dark), #1E1E1E (cards)
   - Text: #FFFFFF (primary), rgba(255,255,255,0.7) (secondary)
   - Success: #00E676
   - Links: #2979FF
   ========================================== */

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

*, *::before, *::after {
    transition-timing-function: ease-in-out;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* ==========================================
   INTRO SCREEN - BLACK WITH ORANGE GLITCH
   ========================================== */

@keyframes glitch {
    0% {
        transform: translate(0);
        text-shadow: 
            -2px 0 #FF3D00, 
            2px 2px #FF6D00;
    }
    20% {
        transform: translate(-3px, 3px);
        text-shadow: 
            3px 0 #FF3D00, 
            -3px -3px #FF6D00;
    }
    40% {
        transform: translate(-3px, -3px);
        text-shadow: 
            -3px 0 #FF3D00, 
            3px 3px #FF6D00;
    }
    60% {
        transform: translate(3px, 3px);
        text-shadow: 
            -3px 0 #FF3D00, 
            3px 0 #FF6D00;
    }
    80% {
        transform: translate(-2px, -2px);
        text-shadow: 
            2px 0 #FF3D00, 
            -2px 2px #FF6D00;
    }
    100% {
        transform: translate(0);
        text-shadow: 
            -2px 0 #FF3D00, 
            2px 2px #FF6D00;
    }
}

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

@keyframes fadeOutIntro {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

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

.intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    overflow: hidden;
}

.intro-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 61, 0, 0.03) 2px,
            rgba(255, 61, 0, 0.03) 4px
        );
    pointer-events: none;
    animation: scanlines 8s linear infinite;
}

@keyframes scanlines {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(50px);
    }
}

.intro-logo {
    font-size: 5rem;
    font-weight: 900;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: glitch 1s infinite, scaleIn 0.8s ease-out;
    position: relative;
    z-index: 2;
    font-family: 'SF Pro Display', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.intro-tagline {
    position: absolute;
    bottom: 40%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    letter-spacing: 0.05em;
    animation: scaleIn 1s ease-out 0.3s both;
    text-shadow: 0 0 20px rgba(255, 61, 0, 0.6);
}

.intro-loading-container {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    max-width: 500px;
    height: 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    overflow: hidden;
    animation: scaleIn 1s ease-out 0.5s both;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.intro-credit {
    position: absolute;
    bottom: 24%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 900;
    letter-spacing: 0.15em;
    animation: scaleIn 1s ease-out 0.6s both;
    font-family: 'SF Pro Display', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-shadow: 0 0 10px rgba(255, 61, 0, 0.3);
}

.intro-loading-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #FF3D00, #FF6D00, #FFD300, #FF6D00, #FF3D00);
    background-size: 200% 100%;
    border-radius: 20px;
    animation: gradientShift 1s linear infinite;
    box-shadow: 0 0 20px rgba(255, 61, 0, 0.9), 0 0 40px rgba(255, 109, 0, 0.6);
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.intro-screen.fade-out {
    animation: fadeOutIntro 0.5s ease-out forwards;
}

/* Responsive Intro Styles */
@media (max-width: 768px) {
    .intro-logo {
        font-size: 3.5rem;
    }
    
    .intro-tagline {
        font-size: 1.2rem;
        bottom: 25%;
    }
}

@media (max-width: 480px) {
    .intro-logo {
        font-size: 2.5rem;
    }
    
    .intro-tagline {
        font-size: 1rem;
        bottom: 20%;
    }
}

/* ==========================================
   MODAL ANIMATIONS
   ========================================== */

@keyframes trollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes glitchText {
    0% { text-shadow: 2px 2px #FF3D00, -2px -2px #FF6D00; }
    25% { text-shadow: -2px 2px #FF6D00, 2px -2px #FF3D00; }
    50% { text-shadow: 2px -2px #FF3D00, -2px 2px #FF6D00; }
    75% { text-shadow: -2px -2px #FF6D00, 2px 2px #FF3D00; }
    100% { text-shadow: 2px 2px #FF3D00, -2px -2px #FF6D00; }
}

@keyframes spin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

.confetti {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, #FF3D00 20%, transparent 20%),
        radial-gradient(circle, #FF6D00 20%, transparent 20%),
        radial-gradient(circle, #FFD300 20%, transparent 20%),
        radial-gradient(circle, #FFAB40 20%, transparent 20%);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px, 50px 0, 0 25px;
    animation: confettiFall 3s linear infinite;
    opacity: 0.6;
}

@keyframes confettiFall {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 16px rgba(255, 61, 0, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 6px 20px rgba(255, 61, 0, 0.6); }
}

@keyframes adminPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(255, 61, 0, 0.3); }
    50% { box-shadow: 0 6px 25px rgba(255, 61, 0, 0.5); }
}

@keyframes scrollHintBounce {
    0%, 100% { 
        transform: translateX(-50%) translateY(0); 
        box-shadow: 0 8px 24px rgba(255, 61, 0, 0.5);
    }
    50% { 
        transform: translateX(-50%) translateY(8px); 
        box-shadow: 0 12px 32px rgba(255, 61, 0, 0.7);
    }
}

@keyframes adminMessageSlide {
    from { transform: translateX(-20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes celebrationBounce {
    0% { transform: scale(0.3) rotate(-10deg); opacity: 0; }
    50% { transform: scale(1.1) rotate(5deg); }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

@keyframes crownSpin {
    0% { transform: rotate(0deg) scale(0.5); opacity: 0; }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); opacity: 1; }
}

/* ==========================================
   BASE STYLES - #121212 BACKGROUND
   ========================================== */

body, html {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'SF Pro Display', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #121212;
    color: #FFFFFF;
    position: relative;
    font-size: 16px;
    font-weight: 400;
}

body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 61, 0, 0.05), transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 109, 0, 0.03), transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(30, 30, 30, 0.5), transparent 60%);
    animation: floatBackground 25s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes floatBackground {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, 20px) scale(1.05); }
}

/* ==========================================
   WARNING & BAN MODALS
   ========================================== */

.warning-notification {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(239, 68, 68, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 20px;
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.5);
    border-bottom: 3px solid rgba(255, 255, 255, 0.3);
    animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.warning-content {
    max-width: 900px;
    margin: 0 auto;
}

.warning-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.warning-icon {
    font-size: 1.8rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.warning-title {
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex: 1;
    color: #FFFFFF;
}

.warning-close {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.warning-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 61, 0, 0.6);
}

.warning-message {
    font-size: 1.1rem;
    line-height: 1.5;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ban-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    animation: banFadeIn 0.3s ease-in-out;
}

@keyframes banFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.ban-modal-content {
    background: rgba(220, 38, 38, 0.95);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    animation: scaleIn 0.3s ease-in-out;
}

.ban-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    animation: shake 0.6s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px) rotate(-5deg); }
    75% { transform: translateX(10px) rotate(5deg); }
}

.ban-title {
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.ban-reason {
    font-size: 1.2rem;
    color: #FFFFFF;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    line-height: 1.6;
}

.ban-footer {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

/* ==========================================
   FEED CONTAINER
   ========================================== */

.feed-container {
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    position: relative;
    z-index: 2;
    padding-bottom: 80px;
}

.feed-container::-webkit-scrollbar {
    display: none;
}

.feed-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ==========================================
   VIDEO CARD - 16PX ROUNDED, SUBTLE SHADOW
   ========================================== */

.video-card {
    position: relative;
    width: 100%;
    height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    background: #000000;
    opacity: 0;
    animation: fadeInSlideUp 0.3s ease-in-out forwards;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

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

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95) contrast(1.1) saturate(1.15);
    transition: all 0.3s ease-in-out;
}

.video-card:hover video {
    filter: brightness(1) contrast(1.12) saturate(1.2);
    transform: scale(1.02);
}

.fixed-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
    z-index: 100;
}

.fixed-overlay > * {
    pointer-events: auto;
}

.overlay-top {
    display: none !important;
}

/* ==========================================
   GLASSMORPHISM TOP BAR - rgba(18,18,18,0.9)
   ========================================== */

.new-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 61, 0, 0.2);
    z-index: 1000;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
}

.logo-mini {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FF3D00, #FF6D00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    filter: drop-shadow(0 0 10px rgba(255, 61, 0, 0.5));
    transition: all 0.3s ease-in-out;
}

.logo-mini:hover {
    filter: drop-shadow(0 0 20px rgba(255, 61, 0, 0.8));
}

.profile-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(30, 30, 30, 0.8);
    border: 2px solid rgba(255, 61, 0, 0.3);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
    color: #FFFFFF;
}

.profile-icon:hover {
    transform: scale(1.1);
    background: rgba(30, 30, 30, 0.95);
    box-shadow: 0 0 20px rgba(255, 61, 0, 0.6);
    border-color: #FF3D00;
}

.logout-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.2);
    border: 2.5px solid rgba(239, 68, 68, 0.8);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
    color: #FFFFFF;
}

.logout-btn:hover {
    transform: scale(1.1);
    border-color: rgba(239, 68, 68, 1);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
}

.record-btn-top {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #FF3D00, #FF6D00);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1rem;
}

.record-btn-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 61, 0, 0.6);
}

.top-action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 61, 0, 0.2);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.9rem;
}

.top-action-btn:hover {
    background: rgba(30, 30, 30, 0.95);
    transform: translateY(-1px);
    box-shadow: 0 0 20px rgba(255, 61, 0, 0.6);
    border-color: #FF3D00;
}

.challenge-banner-new {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 8px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 61, 0, 0.3);
}

.challenge-label-new {
    font-size: 0.75rem;
    font-weight: 700;
    color: #FFAB40;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.challenge-text-new {
    font-size: 0.9rem;
    font-weight: 600;
    color: #FFFFFF;
}

.creators-icon-new,
.mute-icon-new,
.profile-icon-new,
.logout-btn-new {
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 61, 0, 0.3);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.creators-icon-new {
    background: linear-gradient(135deg, #00E676, #16A34A);
    border-color: rgba(0, 230, 118, 0.5);
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.5);
    animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 230, 118, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 230, 118, 0.7);
    }
}

.creators-icon-new:hover,
.mute-icon-new:hover,
.profile-icon-new:hover,
.logout-btn-new:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 61, 0, 0.6);
}

/* ==========================================
   GLASSMORPHISM BOTTOM NAV - ORANGE ACCENT
   ========================================== */

.new-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 0 max(12px, env(safe-area-inset-bottom));
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 2px solid #FF3D00;
    z-index: 1000;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 8px 16px;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.nav-item:hover {
    color: #FFAB40;
    transform: translateY(-2px);
}

.nav-icon {
    font-size: 1.6rem;
    filter: drop-shadow(0 0 8px rgba(255, 171, 64, 0.6));
    transition: all 0.3s ease-in-out;
}

.nav-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-record {
    background: linear-gradient(135deg, #FF3D00, #FF6D00);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease-in-out;
}

.nav-record:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 61, 0, 0.6);
}

.nav-icon-record {
    font-size: 2rem;
    color: #FFFFFF;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.9));
}

/* ==========================================
   VIDEO INFO OVERLAY - BOTTOM LEFT
   ========================================== */

.overlay-bottom {
    position: fixed;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    background: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 50;
}

.video-info {
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.creator {
    font-size: 1.1rem;
    font-weight: 800;
    color: #FFFFFF;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95), 0 0 20px rgba(0, 0, 0, 0.8), 2px 2px 4px rgba(0, 0, 0, 0.9);
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 0.1em;
}

.creator strong {
    color: #FFFFFF;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95), 0 0 20px rgba(0, 0, 0, 0.8), 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.challenge-banner {
    margin-top: 6px;
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 10px 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 61, 0, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
}

.challenge-banner:hover {
    background: rgba(30, 30, 30, 0.95);
    transform: translateY(-1px);
    box-shadow: 0 0 20px rgba(255, 61, 0, 0.6);
    border-color: #FF3D00;
}

.challenge-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FF3D00;
    margin-bottom: 4px;
}

.challenge-text {
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* ==========================================
   ACTION BUTTONS - RIGHT SIDE VERTICAL
   ========================================== */

.action-buttons {
    position: fixed;
    right: 15px;
    bottom: 140px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    z-index: 500;
    pointer-events: auto;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 61, 0, 0.2);
    color: #FFFFFF;
    cursor: pointer;
    padding: 12px;
    border-radius: 16px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.action-btn:hover {
    background: rgba(30, 30, 30, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 61, 0, 0.6);
    border-color: #FF3D00;
}

.action-btn:active {
    transform: translateY(0);
}

.action-btn .icon {
    font-size: 2.2rem;
    margin-bottom: 6px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.9));
    transition: all 0.3s ease-in-out;
}

.action-btn:hover .icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(255, 61, 0, 0.6));
}

.action-btn .count,
.action-btn .label {
    font-size: 0.85rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.record-action {
    position: relative;
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 2px solid #FF3D00;
    padding: 12px;
}

.record-action:hover {
    background: rgba(30, 30, 30, 0.95);
    box-shadow: 0 0 30px rgba(255, 61, 0, 0.8);
}

.record-action .icon {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #FF3D00 0%, #FF6D00 33%, #FFAB40 66%, #FFD300 100%);
    background-size: 200% 200%;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    box-shadow: 0 0 30px rgba(255, 61, 0, 0.8), 0 0 60px rgba(255, 109, 0, 0.6), 0 0 90px rgba(255, 211, 0, 0.4);
    animation: recordGlow 2.5s ease-in-out infinite, gradientShift 4s linear infinite;
    position: relative;
    color: #FFFFFF;
}

.record-action .icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent 50%, rgba(255, 255, 255, 0.3));
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    opacity: 0.7;
    animation: shimmer 2s linear infinite;
}

@keyframes recordGlow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(255, 61, 0, 0.8), 0 0 60px rgba(255, 109, 0, 0.6), 0 0 90px rgba(255, 211, 0, 0.4);
        transform: scale(1) rotate(0deg);
    }
    50% {
        box-shadow: 0 0 45px rgba(255, 61, 0, 1), 0 0 90px rgba(255, 109, 0, 0.8), 0 0 120px rgba(255, 211, 0, 0.6);
        transform: scale(1.08) rotate(2deg);
    }
}

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

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(-45deg); opacity: 0; }
    50% { opacity: 0.7; }
    100% { transform: translateX(100%) rotate(-45deg); opacity: 0; }
}

.record-action:active .icon {
    animation: recordPress 0.3s ease-in-out;
}

@keyframes recordPress {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(0.85) rotate(-5deg); }
}

.action-btn.active .icon {
    animation: pulse 0.3s ease-in-out;
}

.right-action-stack {
    position: fixed;
    right: 15px;
    bottom: 140px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    z-index: 900;
}

.action-btn-new {
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 61, 0, 0.3);
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    color: #FFFFFF;
}

.action-btn-new:hover {
    transform: scale(1.1);
    background: rgba(30, 30, 30, 0.95);
    box-shadow: 0 0 20px rgba(255, 61, 0, 0.6);
    border-color: #FF3D00;
}

.action-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.5));
}

.action-count {
    font-size: 0.7rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-top: -4px;
}

.action-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
}

.swipe-hint {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    padding: 14px 28px;
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid rgba(255, 61, 0, 0.35);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    animation: fadeOut 3s ease-in-out forwards, floatHint 3s ease-in-out infinite;
    color: #FFFFFF;
}

@keyframes floatHint {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

.hint-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

@keyframes fadeOut {
    0%, 70% { opacity: 1; }
    100% { opacity: 0; }
}

.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.loading-spinner.active {
    display: block;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: #FF3D00;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* ==========================================
   MODALS - GLASSMORPHIC WITH BLUR
   ========================================== */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    margin: 30px auto;
    padding: 35px;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 61, 0, 0.2);
    position: relative;
    color: #FFFFFF;
}

.modal h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #FFFFFF;
    background: linear-gradient(135deg, #FF3D00, #FFAB40);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease-in-out;
}

.close:hover {
    color: #FF3D00;
    transform: scale(1.2);
}

.btn,
button {
    padding: 12px 24px;
    background: linear-gradient(135deg, #FF3D00, #FF6D00);
    color: #FFFFFF;
    border: none;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
}

.btn:hover,
button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 61, 0, 0.6);
}

.btn:active,
button:active {
    transform: translateY(0);
}

/* ==========================================
   AUTH FORMS
   ========================================== */

.auth-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #121212;
}

.auth-form {
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 40px;
    border-radius: 16px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 61, 0, 0.2);
}

.auth-form h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 2rem;
    font-weight: 800;
    color: #FF3D00;
}

.auth-form input {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 2px solid rgba(255, 61, 0, 0.3);
    border-radius: 16px;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
    color: #FFFFFF;
}

.auth-form input:focus {
    outline: none;
    background: rgba(18, 18, 18, 1);
    border-color: #FF3D00;
    box-shadow: 0 0 20px rgba(255, 61, 0, 0.6);
    transform: translateY(-2px);
}

.auth-form button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #FF3D00, #FF6D00);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: #FFFFFF;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
}

.auth-form button:hover {
    background: linear-gradient(135deg, #FF6D00, #FFAB40);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 61, 0, 0.6);
}

.auth-form button:active {
    transform: translateY(-1px);
}

.switch-auth {
    margin-top: 15px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.switch-auth a {
    color: #2979FF;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.switch-auth a:hover {
    color: #FFAB40;
    text-shadow: 0 0 10px rgba(255, 171, 64, 0.6);
}

.error-message {
    color: #ef4444;
    margin-top: 15px;
    text-align: center;
    font-weight: 500;
}

/* ==========================================
   CAMERA & RECORDING
   ========================================== */

#camera-container {
    position: relative;
    background: #000000;
    border-radius: 16px;
    overflow: hidden;
    margin: 20px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

#preview-video,
#playback-video {
    width: 100%;
    display: block;
    border-radius: 16px;
}

#countdown-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    color: #FFFFFF;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(255, 61, 0, 0.8);
    display: none;
}

#recording-controls,
.playback-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

#recording-controls button,
.playback-actions button {
    padding: 14px 35px;
    border: none;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
}

#recording-controls button:hover,
.playback-actions button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 61, 0, 0.6);
}

#start-recording-btn,
.primary-btn {
    background: linear-gradient(135deg, #FF3D00, #FF6D00);
    color: #FFFFFF;
}

#stop-recording-btn {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #FFFFFF;
}

.playback-actions button:not(.primary-btn) {
    background: rgba(224, 224, 224, 0.95);
    color: #1a1a1a;
}

#challenge-reminder {
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 16px;
    border-radius: 16px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #FF3D00;
    border: 2px solid rgba(255, 61, 0, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

#camera-selection {
    display: flex;
    align-items: center;
    gap: 10px;
}

#camera-select {
    flex: 1;
    padding: 10px;
    border-radius: 16px;
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 2px solid rgba(255, 61, 0, 0.3);
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
    color: #FFFFFF;
}

#camera-select:focus {
    outline: none;
    border-color: #FF3D00;
    box-shadow: 0 0 20px rgba(255, 61, 0, 0.6);
}

#upload-progress {
    text-align: center;
    padding: 20px;
    font-size: 1.2rem;
    color: #FF3D00;
}

/* ==========================================
   PROFILE
   ========================================== */

.profile-header {
    text-align: center;
    padding: 20px;
    border-bottom: 2px solid rgba(255, 61, 0, 0.2);
}

.profile-username {
    font-size: 2rem;
    font-weight: 800;
    color: #FF3D00;
    margin-bottom: 10px;
}

.profile-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 15px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF3D00;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.profile-submissions {
    display: grid;
    gap: 15px;
    margin-top: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.profile-submission {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.profile-submission video {
    width: 100%;
    display: block;
}

.profile-submission-info {
    padding: 10px;
}

/* ==========================================
   COMMENTS PANEL - GLASSMORPHIC
   ========================================== */

.comments-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70vh;
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 2px solid rgba(255, 61, 0, 0.3);
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
}

.comments-panel.active {
    transform: translateY(0);
}

.comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 61, 0, 0.2);
}

.comments-header h3 {
    margin: 0;
    font-size: 1.3rem;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.close-comments {
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 61, 0, 0.3);
    color: #FFFFFF;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.close-comments:hover {
    background: rgba(30, 30, 30, 0.95);
    transform: rotate(90deg);
    box-shadow: 0 0 20px rgba(255, 61, 0, 0.6);
    border-color: #FF3D00;
}

.comments-list {
    flex: 1;
    overflow-y: auto;
    padding: 20px 25px;
}

.comments-empty {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    padding: 40px 20px;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.comment-item {
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 61, 0, 0.2);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    animation: slideInComment 0.3s ease-in-out;
}

@keyframes slideInComment {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.comment-item.posting {
    opacity: 0.6;
    animation: pulse 1s infinite;
}

.comment-username {
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 6px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.comment-text {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.comment-time {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.comment-input-container {
    padding: 20px 25px;
    border-top: 1px solid rgba(255, 61, 0, 0.2);
    display: flex;
    gap: 12px;
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

#comment-input {
    flex: 1;
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 61, 0, 0.3);
    border-radius: 16px;
    padding: 12px 20px;
    color: #FFFFFF;
    font-size: 0.95rem;
    outline: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
}

#comment-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#comment-input:focus {
    border-color: #FF3D00;
    box-shadow: 0 0 20px rgba(255, 61, 0, 0.6);
}

#post-comment-btn {
    background: linear-gradient(135deg, #FF3D00, #FF6D00);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: none;
    color: #FFFFFF;
    padding: 12px 28px;
    border-radius: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

#post-comment-btn:hover {
    background: linear-gradient(135deg, #FF6D00, #FFAB40);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 61, 0, 0.6);
}

#post-comment-btn:active {
    transform: translateY(0);
}

/* ==========================================
   PROFILE TABS
   ========================================== */

.profile-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.profile-tab {
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 2px solid rgba(255, 61, 0, 0.3);
    color: #FF3D00;
    padding: 10px 25px;
    border-radius: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.profile-tab:hover {
    background: rgba(30, 30, 30, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 61, 0, 0.6);
    border-color: #FF3D00;
}

.profile-tab.active {
    background: linear-gradient(135deg, #FF3D00, #FF6D00);
    color: #FFFFFF;
    box-shadow: 0 0 20px rgba(255, 61, 0, 0.6);
}

/* ==========================================
   FRIENDS SEARCH
   ========================================== */

.friends-search {
    padding: 20px 0;
}

#user-search {
    width: 100%;
    padding: 14px 18px;
    border-radius: 16px;
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 2px solid rgba(255, 61, 0, 0.3);
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
    color: #FFFFFF;
}

#user-search:focus {
    outline: none;
    border-color: #FF3D00;
    box-shadow: 0 0 20px rgba(255, 61, 0, 0.6);
}

#search-results {
    margin-top: 10px;
    max-height: 300px;
    overflow-y: auto;
}

.user-search-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 8px;
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    border: 1px solid rgba(255, 61, 0, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.add-friend-btn {
    background: linear-gradient(135deg, #FF3D00, #FF6D00);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: none;
    color: #FFFFFF;
    padding: 10px 24px;
    border-radius: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.add-friend-btn::before {
    content: '';
    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-in-out;
}

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

.add-friend-btn:hover {
    background: linear-gradient(135deg, #FF6D00, #FFAB40);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 20px rgba(255, 61, 0, 0.6);
}

.friend-status {
    color: #FF3D00;
    font-weight: 600;
    font-size: 0.9rem;
}

.friends-list {
    max-height: 400px;
    overflow-y: auto;
}

.friend-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    margin-bottom: 10px;
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    border: 1px solid rgba(255, 61, 0, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.friend-request-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    margin-bottom: 10px;
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    border: 1px solid rgba(255, 171, 64, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.friend-request-actions {
    display: flex;
    gap: 8px;
}

.accept-btn {
    background: linear-gradient(135deg, #00E676, #16A34A);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: none;
    color: #FFFFFF;
    padding: 8px 18px;
    border-radius: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.accept-btn:hover {
    background: linear-gradient(135deg, #16A34A, #00E676);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.6);
}

.reject-btn {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: none;
    color: #FFFFFF;
    padding: 8px 18px;
    border-radius: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.reject-btn:hover {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
}

.delete-video-btn {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: none;
    color: #FFFFFF;
    padding: 6px 16px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    margin-left: auto;
}

.delete-video-btn:hover {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
}

/* ==========================================
   NAVIGATION BUTTONS
   ========================================== */

.nav-buttons {
    display: none !important;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 61, 0, 0.2);
    color: #FFFFFF;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: rgba(30, 30, 30, 0.95);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 61, 0, 0.6);
    border-color: #FF3D00;
}

.nav-btn:active {
    transform: scale(1);
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.nav-btn:disabled:hover {
    background: rgba(30, 30, 30, 0.8);
    transform: scale(1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* ==========================================
   MESSAGES & CHAT
   ========================================== */

.messages-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.messages-list {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-message {
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 61, 0, 0.2);
    border-radius: 16px;
    padding: 12px;
    max-width: 75%;
    align-self: flex-start;
    color: #FFFFFF;
}

.chat-message.own-message {
    background: rgba(30, 30, 30, 0.95);
    border-color: #FF3D00;
    border-left: 3px solid #FF3D00;
    align-self: flex-end;
}

.message-sender {
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 5px;
    color: #FFFFFF;
}

.message-text {
    margin-bottom: 5px;
    word-wrap: break-word;
    color: rgba(255, 255, 255, 0.9);
}

.message-time {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 5px;
}

.chat-input-container {
    padding: 15px;
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 61, 0, 0.2);
    display: flex;
    gap: 10px;
    align-items: center;
}

.chat-input-container input {
    flex: 1;
    background: rgba(18, 18, 18, 0.9);
    border: 1px solid rgba(255, 61, 0, 0.2);
    border-radius: 16px;
    padding: 10px 15px;
    color: #FFFFFF;
    font-size: 0.95rem;
}

.chat-input-container input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.chat-input-container button {
    background: linear-gradient(135deg, #FF3D00, #FF6D00);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: none;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 16px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.chat-input-container button:hover {
    background: linear-gradient(135deg, #FF6D00, #FFAB40);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 61, 0, 0.6);
}

.message-friend-btn {
    background: linear-gradient(135deg, #FF3D00, #FF6D00);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: none;
    color: #FFFFFF;
    padding: 6px 16px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.message-friend-btn:hover {
    background: linear-gradient(135deg, #FF6D00, #FFAB40);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 61, 0, 0.6);
}

/* ==========================================
   SPECIAL ACTIONS & ICONS
   ========================================== */

.nominate-action {
    background: rgba(255, 211, 0, 0.3);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 2px solid rgba(255, 211, 0, 0.5);
}

.nominate-action:hover {
    background: rgba(255, 211, 0, 0.5);
    border-color: rgba(255, 211, 0, 0.8);
    box-shadow: 0 0 30px rgba(255, 211, 0, 0.6);
}

.friends-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 3px solid #FF3D00;
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
    position: relative;
    color: #FFFFFF;
}

.friends-icon:hover {
    transform: scale(1.15);
    border-color: #FF6D00;
    background: rgba(30, 30, 30, 0.95);
    box-shadow: 0 0 20px rgba(255, 61, 0, 0.6);
}

.notification-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #FFFFFF;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    font-size: 0.7rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.6);
    animation: pulse-badge 2s ease-in-out infinite;
}

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

.leaderboard-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 3px solid #FFD300;
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
    color: #FFFFFF;
}

.leaderboard-icon:hover {
    transform: scale(1.15);
    border-color: #FFAB40;
    background: rgba(30, 30, 30, 0.95);
    box-shadow: 0 0 20px rgba(255, 211, 0, 0.6);
}

.chat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 3px solid #FF3D00;
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
    color: #FFFFFF;
}

.chat-icon:hover {
    transform: scale(1.15);
    border-color: #FF6D00;
    background: rgba(30, 30, 30, 0.95);
    box-shadow: 0 0 20px rgba(255, 61, 0, 0.6);
}

.mute-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 3px solid #FF3D00;
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
    color: #FFFFFF;
}

.mute-icon:hover {
    transform: scale(1.15);
    border-color: #FF6D00;
    background: rgba(30, 30, 30, 0.95);
    box-shadow: 0 0 20px rgba(255, 61, 0, 0.6);
}

/* ==========================================
   LEADERBOARD
   ========================================== */

.leaderboard-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.leaderboard-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    border: 2px solid rgba(255, 61, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.leaderboard-row:hover {
    background: rgba(30, 30, 30, 0.95);
    border-color: #FF3D00;
    transform: translateX(5px);
    box-shadow: 0 0 20px rgba(255, 61, 0, 0.6);
}

.leaderboard-rank {
    font-size: 1.1rem;
    font-weight: 700;
    min-width: 60px;
    color: #FFFFFF;
}

.leaderboard-username {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
}

.leaderboard-stats {
    display: flex;
    gap: 15px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.leaderboard-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ==========================================
   ONBOARDING MODAL
   ========================================== */

#onboarding-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    overflow-y: auto;
}

.onboarding-content {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    border: 1px solid rgba(255, 61, 0, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.onboarding-slide {
    display: none;
    text-align: center;
}

.onboarding-slide.active {
    display: block;
}

.onboarding-slide h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FF3D00, #FFAB40);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.onboarding-slide p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.onboarding-icon {
    font-size: 5rem;
    margin: 20px 0;
}

.onboarding-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.onboarding-controls button {
    background: linear-gradient(135deg, #FF3D00, #FF6D00);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: none;
    color: #FFFFFF;
    padding: 12px 30px;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.onboarding-controls button:hover {
    background: linear-gradient(135deg, #FF6D00, #FFAB40);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 61, 0, 0.6);
}

#onboarding-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.onboarding-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.onboarding-dot.active {
    background: linear-gradient(135deg, #FF3D00, #FFAB40);
    transform: scale(1.3);
}

/* ==========================================
   FRIENDS MODAL
   ========================================== */

#friends-modal .modal-content {
    max-width: 500px;
    background: rgba(30, 30, 30, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

#friends-modal h2 {
    color: #FFFFFF !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#friends-modal p {
    color: rgba(255, 255, 255, 0.9) !important;
}

#friends-modal strong {
    color: #FFFFFF !important;
}

#friends-modal span {
    color: rgba(255, 255, 255, 0.8) !important;
}

#friends-modal input::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.friends-search {
    position: relative;
    margin-bottom: 20px;
}

.friends-search input {
    width: 100%;
    background: rgba(18, 18, 18, 0.9);
    border: 1px solid rgba(255, 61, 0, 0.2);
    color: #FFFFFF;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 1rem;
    outline: none;
}

.friends-search input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#friends-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 300px;
    overflow-y: auto;
    background: rgba(30, 30, 30, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 61, 0, 0.15);
    border-radius: 16px;
    margin-top: 8px;
    z-index: 1000;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.search-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 61, 0, 0.1);
}

.search-result-item:last-child {
    border-bottom: none;
}

.friends-tab-btn {
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 61, 0, 0.2);
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 16px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.friends-tab-btn.active {
    background: linear-gradient(135deg, #FF3D00, #FF6D00);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(255, 61, 0, 0.6);
}

.friends-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.friend-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(255, 61, 0, 0.1);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
    .overlay-top {
        padding: 12px;
        padding-bottom: 30px;
    }
    
    .logo-mini {
        font-size: 1.1rem;
    }
    
    .profile-icon {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    
    .record-btn-top {
        padding: 8px 14px;
        font-size: 0.85rem;
        gap: 6px;
    }
    
    .top-action-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
        gap: 4px;
    }
    
    .action-btn .icon {
        font-size: 1.8rem;
    }
    
    .record-action .icon {
        width: 55px;
        height: 55px;
        font-size: 2.5rem;
    }
    
    .modal-content {
        margin: 15px;
        padding: 18px;
        max-height: 85vh;
        max-width: 95vw;
    }
    
    .challenge-banner {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .video-username {
        font-size: 1rem;
    }
    
    .challenge-banner-new {
        display: none;
    }
    
    .new-top-bar {
        padding: 10px 15px;
    }
    
    .right-action-stack {
        right: 10px;
        bottom: 120px;
        gap: 12px;
    }
    
    .action-btn-new {
        width: 50px;
        height: 50px;
    }
    
    .action-icon {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .overlay-top {
        padding: 10px 8px;
        padding-bottom: 25px;
        gap: 8px;
    }
    
    .logo-mini {
        font-size: 0.95rem;
    }
    
    .profile-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        min-width: 36px;
        flex-shrink: 0;
    }
    
    .record-btn-top {
        padding: 8px 14px;
        font-size: 0.85rem;
        gap: 5px;
        white-space: nowrap;
    }
    
    .top-action-btn {
        padding: 7px 11px;
        font-size: 0.8rem;
        gap: 3px;
        min-width: 44px;
        min-height: 44px;
    }
    
    .modal-content {
        margin: 8px;
        padding: 16px;
        max-height: 92vh;
        max-width: 98vw;
        width: 100%;
    }
    
    .modal h2 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .challenge-banner {
        padding: 12px 14px;
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .btn, button {
        padding: 12px 20px;
        font-size: 1rem;
        min-height: 44px;
        touch-action: manipulation;
    }
    
    input, textarea, select {
        font-size: 16px !important;
        min-height: 44px;
        padding: 12px 14px;
    }
    
    .action-btn {
        min-width: 50px;
        min-height: 50px;
    }
    
    .action-btn .icon {
        font-size: 2rem;
    }
    
    .record-action {
        padding: 12px;
    }
    
    .record-action .icon {
        width: 60px;
        height: 60px;
        font-size: 2.8rem;
    }
    
    .video-actions {
        gap: 12px;
        flex-wrap: nowrap;
    }
    
    .nav-btn {
        min-width: 44px;
        min-height: 44px;
        font-size: 1rem;
    }
    
    #camera-container, #playback-container video {
        max-height: 60vh;
    }
    
    .comment-item {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .emoji-btn {
        font-size: 1.5rem;
        padding: 8px;
        min-width: 44px;
        min-height: 44px;
    }
    
    .creators-icon-new,
    .mute-icon-new,
    .profile-icon-new {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    
    .right-action-stack {
        gap: 10px;
        bottom: 110px;
    }
    
    .action-btn-new {
        width: 45px;
        height: 45px;
    }
}
