/* 🎨 KSC Fun Squad - Kid-Friendly Styles */

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Sans MS', 'Chalkboard SE', 'Bradley Hand', cursive, sans-serif;
    background: linear-gradient(135deg, #00B4D8 0%, #0077B6 50%, #06D6A0 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ============================================
   LOADING SCREEN
   ============================================ */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #00B4D8 0%, #0077B6 50%, #06D6A0 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-logo {
    position: relative;
    margin-bottom: 30px;
}

.sparkle {
    position: absolute;
    font-size: 40px;
    animation: sparkleFloat 2s ease-in-out infinite;
}

.sparkle-1 {
    top: -30px;
    left: -40px;
    animation-delay: 0s;
}

.sparkle-2 {
    top: -40px;
    right: -40px;
    animation-delay: 0.3s;
}

.sparkle-3 {
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.6s;
}

@keyframes sparkleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) scale(1.2);
        opacity: 0.8;
    }
}

.loading-title {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    background: linear-gradient(45deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3, #54a0ff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbowText 3s ease infinite;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

@keyframes rainbowText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 6px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-top: 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   FLOATING DECORATIONS
   ============================================ */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.float-item {
    position: absolute;
    font-size: 40px;
    animation: floatAround 20s infinite;
    opacity: 0.6;
}

.float-item:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.float-item:nth-child(2) { left: 80%; top: 40%; animation-delay: 2s; }
.float-item:nth-child(3) { left: 50%; top: 60%; animation-delay: 4s; }
.float-item:nth-child(4) { left: 20%; top: 80%; animation-delay: 6s; }
.float-item:nth-child(5) { left: 70%; top: 15%; animation-delay: 8s; }
.float-item:nth-child(6) { left: 40%; top: 90%; animation-delay: 10s; }

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -50px) rotate(90deg);
    }
    50% {
        transform: translate(-20px, 30px) rotate(180deg);
    }
    75% {
        transform: translate(40px, 20px) rotate(270deg);
    }
}

/* ============================================
   MAIN CONTAINER
   ============================================ */
.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* ============================================
   SCREEN MANAGEMENT
   ============================================ */
.screen {
    display: none;
    width: 100vw;
    height: 100vh;
    overflow-y: auto;
}

.screen.active {
    display: flex;
    flex-direction: column;
}

/* ============================================
   CHARACTER SELECTION SCREEN
   ============================================ */
#selection-screen {
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.selection-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.logo-header {
    text-align: center;
    margin-bottom: 20px;
}

.logo-bubble {
    font-size: 64px;
    margin-bottom: 10px;
    animation: bounce-slow 3s ease-in-out infinite;
}

.app-title {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 4px 4px 8px rgba(0,0,0,0.3);
    margin-bottom: 10px;
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.title-word {
    display: inline-block;
}

.rainbow-text {
    background: linear-gradient(45deg, #ff6b6b, #feca57, #48dbfb, #0077B6, #06D6A0);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbowText 3s ease infinite;
}

@keyframes bounce-slow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.app-subtitle {
    font-size: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    font-weight: 600;
}

.selection-title {
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.emoji-bounce {
    display: inline-block;
    animation: bounce-slow 2s ease-in-out infinite;
}

.character-selection {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.fun-footer {
    margin-top: 30px;
}

.footer-icons {
    display: flex;
    gap: 20px;
    font-size: 32px;
    justify-content: center;
}

.footer-icons span {
    animation: bounce-slow 2s ease-in-out infinite;
}

.footer-icons span:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-icons span:nth-child(3) {
    animation-delay: 0.4s;
}

.footer-icons span:nth-child(4) {
    animation-delay: 0.6s;
}

.footer-icons span:nth-child(5) {
    animation-delay: 0.8s;
}

.stars-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
    animation: twinkle 2s ease-in-out infinite;
}

.star:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.star:nth-child(2) {
    top: 40%;
    left: 80%;
    animation-delay: 0.5s;
}

.star:nth-child(3) {
    top: 60%;
    left: 30%;
    animation-delay: 1s;
}

.star:nth-child(4) {
    top: 80%;
    left: 70%;
    animation-delay: 1.5s;
}

.star:nth-child(5) {
    top: 30%;
    left: 50%;
    animation-delay: 2s;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

.character-selection {
    text-align: center;
    padding: 40px 20px;
}

.welcome-title {
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 4px 4px 8px rgba(0,0,0,0.3);
    margin-bottom: 20px;
    animation: bounceIn 1s ease;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.welcome-subtitle {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.character-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.character-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    border-radius: 30px;
    padding: 40px 30px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    width: 280px;
    position: relative;
    z-index: 10;
}

.character-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.boy-card {
    border: 5px solid #4facfe;
}

.boy-card:hover {
    background: linear-gradient(135deg, #e0f4ff 0%, #b3e5ff 100%);
}

.girl-card {
    border: 5px solid #FF6B35;
}

.girl-card:hover {
    background: linear-gradient(135deg, #FFE5D9 0%, #FFCDB2 100%);
}

.avatar-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.character-avatar {
    position: relative;
}

.card-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.character-card:hover .card-glow {
    opacity: 0.6;
}

.boy-glow {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    filter: blur(15px);
}

.girl-glow {
    background: linear-gradient(135deg, #FF6B35 0%, #F77F00 100%);
    filter: blur(15px);
}

.character-name {
    font-size: 28px;
    font-weight: 900;
    color: #333;
    margin-bottom: 10px;
}

.character-desc {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.select-badge {
    font-size: 14px;
    font-weight: bold;
    color: #0077B6;
    background: #E0F7FA;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
}

.boy-circle {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 8px 20px rgba(79, 172, 254, 0.4);
}

.girl-circle {
    background: linear-gradient(135deg, #FF6B35 0%, #FFB997 100%);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.character-card:hover .avatar-circle {
    transform: rotate(360deg);
}

.avatar-emoji {
    font-size: 70px;
}

.character-label {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.character-description {
    font-size: 16px;
    color: #666;
}

/* ============================================
   MAIN APP SCREEN
   ============================================ */
#app-screen {
    background: linear-gradient(135deg, #E0F7FA 0%, #FFEDD5 50%, #FCE7F3 100%);
}

.app-header {
    height: 70px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    background: linear-gradient(135deg, #FF6B35 0%, #F77F00 100%);
    border-bottom: 3px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
    z-index: 100;
}

.app-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.header-center {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1;
}

.logo-small {
    font-size: 32px;
}

.app-name {
    font-size: 24px;
    color: #ffffff;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1;
}

.auth-btns {
    display: flex;
    gap: 8px;
}

.user-panel {
    display: flex;
    gap: 8px;
    align-items: center;
}

.user-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.95);
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.user-icon {
    font-size: 20px;
}

.user-name {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.95);
    color: #FF6B35;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.back-btn {
    color: #0077B6;
}

.btn-icon {
    font-size: 18px;
}

.btn-emoji {
    font-size: 16px;
}

.btn-label {
    font-size: 14px;
    font-weight: 700;
}

.btn-login {
    background: linear-gradient(135deg, #06D6A0 0%, #00B4A0 100%);
}

.btn-register {
    background: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
}

.btn-premium {
    background: linear-gradient(135deg, #FFD60A 0%, #FFC300 100%);
}

.btn-logout {
    background: linear-gradient(135deg, #ed213a 0%, #93291e 100%);
}

/* Main Content Area */
.app-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Desktop layout */
@media (min-width: 768px) {
    .app-main {
        flex-direction: row;
    }
}

/* Character Zone */
.character-zone {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.float-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.float-item {
    position: absolute;
    font-size: 40px;
    animation: floatAround 20s infinite;
    opacity: 0.6;
}

.float-1 { left: 10%; top: 20%; animation-delay: 0s; }
.float-2 { left: 80%; top: 40%; animation-delay: 2s; }
.float-3 { left: 50%; top: 60%; animation-delay: 4s; }
.float-4 { left: 20%; top: 80%; animation-delay: 6s; }
.float-5 { left: 70%; top: 15%; animation-delay: 8s; }
.float-6 { left: 40%; top: 90%; animation-delay: 10s; }

.character-stage {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.character-container {
    position: relative;
}

.character-bubble {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(240,240,240,0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
    border: 5px solid rgba(255,255,255,0.5);
}

.character-emoji {
    font-size: 180px;
    animation: idle-float 3s ease-in-out infinite;
}

@keyframes idle-float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

.status-badge {
    background: rgba(255,255,255,0.95);
    padding: 12px 24px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #06D6A0;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

#status-text {
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

/* Control Center */
.control-center {
    position: relative;
    z-index: 20;
    margin-top: 20px;
}

.wake-btn, .sleep-btn {
    padding: 16px 32px;
    border-radius: 30px;
    border: none;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.wake-btn {
    background: linear-gradient(135deg, #FFD60A 0%, #FFC300 100%);
    color: #333;
}

.sleep-btn {
    background: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
    color: white;
}

.wake-btn:hover, .sleep-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.wake-emoji, .sleep-emoji {
    font-size: 24px;
}

.wake-text, .sleep-text {
    font-size: 16px;
}

.wake-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Activities Panel */
.activities-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 30;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    border-top: 3px solid #FF6B35;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.panel-header {
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(0,0,0,0.05);
}

.panel-title {
    font-size: 18px;
    font-weight: 900;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.title-emoji {
    font-size: 22px;
}

.scroll-btns {
    display: flex;
    gap: 8px;
}

.scroll-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #FF6B35;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.scroll-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.activities-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 16px 20px;
    display: flex;
    gap: 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.activities-scroll::-webkit-scrollbar {
    display: none;
}

.activity-card {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 20px;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-family: inherit;
    background: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
}

.activity-card:nth-child(1) {
    background: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
}

.activity-card:nth-child(2) {
    background: linear-gradient(135deg, #FF6B35 0%, #F77F00 100%);
}

.activity-card:nth-child(3) {
    background: linear-gradient(135deg, #06D6A0 0%, #00B4A0 100%);
}

.activity-card:nth-child(4) {
    background: linear-gradient(135deg, #FFD60A 0%, #FFC300 100%);
}

.activity-card:nth-child(5) {
    background: linear-gradient(135deg, #ed213a 0%, #93291e 100%);
}

.activity-card:nth-child(6) {
    background: linear-gradient(135deg, #FF6B35 0%, #F77F00 100%);
}

.activity-card:nth-child(7) {
    background: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
}

.activity-card:nth-child(8) {
    background: linear-gradient(135deg, #06D6A0 0%, #00B4A0 100%);
}

.activity-card:nth-child(9) {
    background: linear-gradient(135deg, #FF6B35 0%, #F77F00 100%);
}

.activity-card:nth-child(10) {
    background: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
}

.activity-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.activity-card:active {
    transform: translateY(-2px) scale(1.02);
}

.activity-icon {
    font-size: 36px;
}

.activity-name {
    font-size: 12px;
    font-weight: 900;
    text-align: center;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Chat Panel */
.chat-panel {
    width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    background: white;
    border-top: 3px solid rgba(0,0,0,0.05);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    height: 40vh;
}

/* Desktop chat panel */
@media (min-width: 768px) {
    .chat-panel {
        width: 420px;
        height: auto;
        border-top: none;
        border-left: 3px solid rgba(0,0,0,0.05);
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    }
}

.chat-header {
    height: 60px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #FF6B35 0%, #F77F00 100%);
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.chat-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 20px;
    font-weight: 900;
}

.chat-emoji {
    font-size: 28px;
}

.save-btn {
    background: rgba(255,255,255,0.95);
    color: #FF6B35;
}

.save-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-empty {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.empty-icon {
    font-size: 64px;
    opacity: 0.3;
    margin-bottom: 16px;
}

.empty-title {
    font-size: 18px;
    font-weight: 900;
    color: #6C757D;
    margin-bottom: 8px;
}

.empty-subtitle {
    font-size: 14px;
    color: #ADB5BD;
}

.chat-footer {
    flex-shrink: 0;
    background: white;
    border-top: 2px solid rgba(0,0,0,0.05);
}

.footer-badge {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mic-pulse {
    width: 8px;
    height: 8px;
    background: #06D6A0;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.footer-text {
    font-size: 12px;
    font-weight: 700;
    color: #6C757D;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chat-input-container {
    display: flex;
    gap: 10px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.chat-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 24px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
    background: white;
}

.chat-input:focus {
    border-color: #00B4D8;
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}

.chat-input:disabled {
    background: #e9ecef;
    cursor: not-allowed;
    opacity: 0.6;
}

.chat-send-btn {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #00B4D8 0%, #0077B6 100%);
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 119, 182, 0.3);
}

.chat-send-btn:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 119, 182, 0.4);
}

.chat-send-btn:active:not(:disabled) {
    transform: scale(0.95);
}

.chat-send-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: none;
}

.footer-info {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: white;
}

.subscription-badge {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
}

.badge-active {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(56, 239, 125, 0.4);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(56, 239, 125, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(56, 239, 125, 0.6);
    }
}

.badge-inactive {
    background: linear-gradient(135deg, #ed213a 0%, #93291e 100%);
    color: white;
}

.header-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-family: inherit;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:active {
    transform: scale(0.95);
}

.btn-primary {
    background: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
    color: white;
}

.btn-primary:hover {
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.5);
    transform: translateY(-3px);
}

.btn-success {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
}

.btn-success:hover {
    box-shadow: 0 10px 30px rgba(56, 239, 125, 0.5);
    transform: translateY(-3px);
}

.btn-danger {
    background: linear-gradient(135deg, #ed213a 0%, #93291e 100%);
    color: white;
}

.btn-danger:hover {
    box-shadow: 0 10px 30px rgba(237, 33, 58, 0.5);
    transform: translateY(-3px);
}

.btn-warning {
    background: linear-gradient(135deg, #FFD60A 0%, #FFC300 100%);
    color: white;
}

.btn-warning:hover {
    box-shadow: 0 10px 30px rgba(255, 214, 10, 0.5);
    transform: translateY(-3px);
}

/* ============================================
   CHAT INTERFACE
   ============================================ */
.chat-section {
    background: white;
    border-radius: 25px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.section-title {
    font-size: 32px;
    color: #0077B6;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.chat-container {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 20px;
    height: 400px;
    overflow-y: auto;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: inset 0 4px 10px rgba(0,0,0,0.1);
}

.chat-message {
    display: flex;
    margin-bottom: 15px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.chat-message.user-message {
    justify-content: flex-end;
}

.message-bubble {
    max-width: 70%;
    padding: 15px 20px;
    border-radius: 20px;
    font-size: 16px;
    line-height: 1.5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    word-wrap: break-word;
}

.user-message .message-bubble {
    background: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
    color: white;
    border-bottom-right-radius: 5px;
}

.ai-message .message-bubble {
    background: linear-gradient(135deg, #ffffff 0%, #E0F7FA 100%);
    color: #333;
    border-bottom-left-radius: 5px;
    border: 2px solid #0077B6;
}

.chat-input-container {
    display: flex;
    gap: 10px;
}

.chat-input {
    flex: 1;
    padding: 15px 20px;
    border: 3px solid #0077B6;
    border-radius: 25px;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    transition: all 0.3s;
}

.chat-input:focus {
    border-color: #06D6A0;
    box-shadow: 0 0 0 4px rgba(0, 119, 182, 0.2);
}

.btn-send {
    padding: 15px 30px;
    background: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-send:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 119, 182, 0.4);
}

/* ============================================
   MODALS
   ============================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 30px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.8);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.modal-large {
    max-width: 700px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    z-index: 10;
}

.modal-close:hover {
    color: #333;
    background: #e0e0e0;
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-icon {
    font-size: 64px;
    margin-bottom: 15px;
}

.crown-icon {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.modal-title {
    font-size: 32px;
    color: #0077B6;
    font-weight: 900;
    margin-bottom: 10px;
}

.modal-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 0;
}

.modal-error {
    background: linear-gradient(135deg, #fee 0%, #fdd 100%);
    border: 2px solid #ef4444;
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: shake 0.5s ease;
}

.modal-error::before {
    content: '⚠️';
    font-size: 20px;
    flex-shrink: 0;
}

.modal-error-text {
    color: #dc2626;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    flex: 1;
}

.modal-success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-success::before {
    content: '✅';
    font-size: 20px;
    flex-shrink: 0;
}

.modal-success-text {
    color: #059669;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    flex: 1;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

.modal-form {
    margin-bottom: 20px;
}

.form-field {
    margin-bottom: 20px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.label-emoji {
    font-size: 18px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: all 0.3s;
    background: #fafafa;
}

.form-input:focus {
    border-color: #0077B6;
    box-shadow: 0 0 0 4px rgba(0, 119, 182, 0.1);
    background: white;
}

.form-input::placeholder {
    color: #999;
}

select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
}

select.form-input option {
    padding: 10px;
}

.pin-input {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 8px;
}

.modal-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
    text-align: center;
}

.footer-link {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.footer-link a {
    color: #0077B6;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-link a:hover {
    color: #06D6A0;
    text-decoration: underline;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 3px solid #e0e0e0;
    border-radius: 15px;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #0077B6;
    box-shadow: 0 0 0 4px rgba(0, 119, 182, 0.2);
}

.switch-text {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 14px;
}

.switch-link {
    color: #0077B6;
    font-weight: bold;
    cursor: pointer;
    text-decoration: underline;
}

.switch-link:hover {
    color: #06D6A0;
}

/* ============================================
   SUBSCRIPTION TABS
   ============================================ */
.subscription-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    background: #f5f5f5;
    padding: 6px;
    border-radius: 16px;
}

.tab-button {
    flex: 1;
    padding: 14px 20px;
    background: transparent;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tab-button.active {
    background: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
}

.tab-emoji {
    font-size: 20px;
}

.tab-text {
    font-weight: 700;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.tab-content {
    display: block;
}

.info-card {
    background: linear-gradient(135deg, #E0F7FA 0%, #B2EBF2 100%);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 2px solid #0077B6;
}

.info-emoji {
    font-size: 36px;
}

.info-card p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #0077B6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px;
}

.price-card {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    border: 3px solid #e0e0e0;
    transition: all 0.3s;
    position: relative;
    text-align: center;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #0077B6;
}

.price-card.featured {
    border-color: #FFD60A;
    background: linear-gradient(135deg, #FFFBF0 0%, #FFF8E1 100%);
    box-shadow: 0 8px 25px rgba(255, 214, 10, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD60A 0%, #FFC300 100%);
    color: #333;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(255, 214, 10, 0.3);
}

.price-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
}

.price-emoji {
    font-size: 56px;
    margin-bottom: 15px;
}

.price-amount {
    font-size: 42px;
    font-weight: 900;
    color: #0077B6;
    margin-bottom: 8px;
}

.price-period {
    font-size: 16px;
    color: #666;
    font-weight: 700;
    margin-bottom: 20px;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.price-features li {
    padding: 10px 0;
    font-size: 14px;
    color: #333;
    font-weight: 600;
    border-bottom: 1px solid #f0f0f0;
}

.price-features li:last-child {
    border-bottom: none;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-success {
    background: linear-gradient(135deg, #06D6A0 0%, #00B4A0 100%);
    color: white;
}

.btn-success:hover {
    box-shadow: 0 8px 20px rgba(6, 214, 160, 0.4);
    transform: translateY(-2px);
}

.plan-cards {
    display: grid;
    gap: 20px;
    margin-bottom: 25px;
}

.plan-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 20px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s;
    border: 3px solid transparent;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.plan-card.selected {
    border-color: #0077B6;
    background: linear-gradient(135deg, #E0F7FA 0%, #B2EBF2 100%);
    box-shadow: 0 8px 25px rgba(0, 119, 182, 0.3);
}

.plan-name {
    font-size: 24px;
    font-weight: bold;
    color: #0077B6;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 32px;
    font-weight: 900;
    color: #333;
    margin-bottom: 10px;
}

.plan-duration {
    font-size: 14px;
    color: #666;
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PWA INSTALL PROMPT
   ============================================ */
.install-prompt {
    position: fixed;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF6B35 0%, #F77F00 100%);
    color: white;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 90%;
    transition: bottom 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.install-prompt.show {
    bottom: 20px;
}

.install-text {
    flex: 1;
}

.install-text h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.install-text p {
    font-size: 14px;
    opacity: 0.9;
}

.install-buttons {
    display: flex;
    gap: 10px;
}

.btn-install {
    padding: 10px 20px;
    background: white;
    color: #0077B6;
    border: none;
    border-radius: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-install:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

.btn-dismiss {
    padding: 10px 20px;
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
    border-radius: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-dismiss:hover {
    background: rgba(255,255,255,0.3);
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast {
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 300px;
    max-width: 500px;
    padding: 16px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 900;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: toastSlideIn 0.3s ease;
}

.toast.show {
    display: flex;
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.toast.success {
    background: linear-gradient(135deg, #06D6A0 0%, #00B4A0 100%);
    color: white;
}

.toast.error {
    background: linear-gradient(135deg, #ed213a 0%, #93291e 100%);
    color: white;
}

.toast.warning {
    background: linear-gradient(135deg, #FFD60A 0%, #FFC300 100%);
    color: #333;
}

.toast.info {
    background: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
    color: white;
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
    padding: 15px 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: bold;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 2px solid #c3e6cb;
}

.alert-error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border: 2px solid #f5c6cb;
}

.alert-info {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    color: #0c5460;
    border: 2px solid #bee5eb;
}

/* ============================================
   HIDDEN UTILITY
   ============================================ */
.hidden {
    display: none !important;
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #06D6A0 0%, #0077B6 100%);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .welcome-title {
        font-size: 36px;
    }

    .welcome-subtitle {
        font-size: 18px;
    }

    .character-cards {
        gap: 20px;
    }

    .character-card {
        width: 160px;
        padding: 30px 20px;
    }

    .avatar-circle {
        width: 100px;
        height: 100px;
    }

    .avatar-emoji {
        font-size: 60px;
    }

    .character-label {
        font-size: 24px;
    }

    .app-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 24px;
    }

    .chat-container {
        height: 300px;
    }

    .message-bubble {
        max-width: 85%;
        font-size: 14px;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .modal-title {
        font-size: 24px;
    }

    .btn {
        font-size: 16px;
        padding: 12px 24px;
    }

    .header-actions {
        flex-direction: column;
    }

    .user-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .install-prompt {
        flex-direction: column;
        text-align: center;
    }

    .install-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .welcome-title {
        font-size: 28px;
    }

    .character-card {
        width: 140px;
    }

    .float-item {
        font-size: 30px;
    }

    .sparkle {
        font-size: 30px;
    }

    .loading-title {
        font-size: 36px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .floating-elements,
    .install-prompt,
    .btn,
    .modal {
        display: none !important;
    }
}
