/* ============================================================
   EMOJI QUEST - PREMIUM STYLESHEET (2026 Edition)
   Developed by QuestNest Games
   ============================================================ */

/* --- 1. BASE STYLES --- */
/* Container for the scrollable list */
#myHistoryList, #friendHistoryList {
    max-height: 400px; /* Limits the height */
    overflow-y: auto;  /* Makes it scrollable */
    padding-right: 5px;
    margin-top: 15px;
    border-radius: 12px;
}

/* Custom Scrollbar for a "Gaming" look */
#h2hStats {
    font-size: 14px;
    font-weight: 800;
    color: #ffd700; /* Gold color */
    background: rgba(255, 215, 0, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 5px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}
#myHistoryList::-webkit-scrollbar, #friendHistoryList::-webkit-scrollbar {
    width: 6px;
}
#myHistoryList::-webkit-scrollbar-thumb, #friendHistoryList::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

/* Style for each Match Card */
.history-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 8px;
    border-left: 5px solid #ccc; /* Default color */
}

.history-card.win { border-left-color: #55efc4; background: rgba(85, 239, 196, 0.1); }
.history-card.loss { border-left-color: #ff7675; background: rgba(255, 118, 117, 0.1); }
.history-card.draw { border-left-color: #ffeaa7; background: rgba(255, 234, 167, 0.1); }

.history-opp-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
}

.history-details { flex: 1; display: flex; flex-direction: column; }
.history-name { font-weight: bold; font-size: 14px; }
.history-meta { font-size: 11px; opacity: 0.6; }
.history-badge { font-weight: 900; font-size: 12px; }
* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, sans-serif;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

body {
    min-height: 100vh;
    background: linear-gradient(to bottom, #0f0c29, #302b63, #24243e);
    display: flex; justify-content: center; align-items: center;
    padding: 15px; overflow: hidden; color: white;
}

.background-anim {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1;
    background: radial-gradient(circle at 15% 50%, rgba(108, 92, 231, 0.4), transparent 25%),
                radial-gradient(circle at 85% 30%, rgba(225, 112, 85, 0.4), transparent 25%);
    animation: pulseBg 8s ease-in-out infinite alternate;
}
@keyframes pulseBg { from { opacity: 0.5; } to { opacity: 0.8; } }

/* --- 2. LAYOUT CONTAINERS --- */
.container {
    position: relative; width: 100%; max-width: 420px; height: 90vh;
    background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 30px;
    padding: 24px; display: flex; flex-direction: column; overflow: hidden;
}

.glass-card {
    background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px; padding: 15px; margin-bottom: 15px;
}

/* --- 3. PROFILE & STATS DESIGN --- */
.user-profile-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.2s;
}
.user-profile-bar:active { transform: scale(0.98); opacity: 0.9; }

.avatar-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    object-fit: cover;
}

/* The Main Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    text-align: center;
    margin-bottom: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
    padding: 14px 5px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s;
}

.stat-item .label {
    font-size: 10px;
    opacity: 0.5;
    text-transform: uppercase;
    margin-bottom: 6px;
    font-weight: 800;
    letter-spacing: 1px;
}

.stat-item .val {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* --- Lethality & Draw Specifics --- */

/* Highlight for Draws: Showing them as a sign of skill */
.stat-item.draw-highlight {
    background: rgba(255, 234, 167, 0.03);
    border: 1px dashed rgba(255, 234, 167, 0.2);
}
.stat-item.draw-highlight .val { color: #ffeaa7; }

/* Win Rate / Lethality Label */
#fpWinRate, #accWinRate {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-align: center;
    padding: 4px 0;
    text-shadow: 0 0 10px rgba(85, 239, 196, 0.2);
}

/* History Form Section */
.history-list-wrapper {
    max-height: 380px;
    overflow-y: auto;
    padding-right: 4px;
    margin-top: 10px;
}

/* Custom Scrollbar for History */
.history-list-wrapper::-webkit-scrollbar { width: 4px; }
.history-list-wrapper::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}
/* --- 4. SOCIAL & FRIENDS SECTION (UPDATED) --- */
.friends-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 15px;
}

.header-actions {
    display: flex; gap: 10px; align-items: center;
}

/* Round Glass Buttons (Mail & Invite) */
.btn-icon {
    position: relative;
    width: 38px; height: 38px; border-radius: 50%; border: none;
    background: rgba(255,255,255,0.1); color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; cursor: pointer; transition: 0.2s;
}
.btn-icon:active { transform: scale(0.9); background: rgba(255,255,255,0.2); }

/* The Dot on the Mail Button */
.unread-dot {
    position: absolute; top: 0; right: 0; width: 10px; height: 10px;
    background: #ff7675; border-radius: 50%; border: 2px solid #2d3436;
    box-shadow: 0 0 5px rgba(255, 118, 117, 0.8);
}

/* Horizontal Scroll Container */
.friends-scroll-wrapper {
    width: 100%; overflow-x: auto; padding: 5px 0 15px 0;
    scrollbar-width: none; -ms-overflow-style: none; /* Firefox/IE */
    min-height: 85px; display: flex; align-items: center;
}
.friends-scroll-wrapper::-webkit-scrollbar { display: none; /* Chrome */ }

/* Logged Out State */
.social-prompt {
    display: flex; flex-direction: row;
    align-items: center; justify-content: flex-start;
    flex-shrink: 0;
}
.social-btns-row { display: flex; gap: 8px; }

/* Logged In State (Avatar Row) */
.friends-row { display: flex; gap: 12px; flex-shrink: 0; }

.friend-avatar-wrapper {
    display: flex; flex-direction: column; align-items: center;
    min-width: 60px; cursor: pointer; position: relative;
}

.avatar-stack { position: relative; width: 50px; height: 50px; }

.friend-scroll-avatar {
    width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
    border: 2px solid rgba(255,255,255,0.1); transition: transform 0.2s;
}
.friend-avatar-wrapper:active .friend-scroll-avatar { transform: scale(0.9); }

/* Status Borders */
.online-border { border-color: #55efc4 !important; box-shadow: 0 0 10px rgba(85, 239, 196, 0.3); }

/* Notification Dots on Avatars */
.notification-point {
    position: absolute; top: -2px; right: -2px; width: 14px; height: 14px;
    border-radius: 50%; border: 2px solid #2d3436; z-index: 5;
    animation: pulse-dot 1.2s infinite;
}
.new-msg { background: #00cec9; }   /* Teal */
.match-offer { background: #fab1a0; } /* Coral */

@keyframes pulse-dot {
    0% { transform: scale(1); }
    50% { transform: scale(1.25); }
    100% { transform: scale(1); }
}

.friend-scroll-name {
    font-size: 10px; margin-top: 6px; opacity: 0.8;
    max-width: 60px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
/* --- 5. MODERN LEADERBOARD DESIGN --- */
.leaderboard-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 20px;
}

.leaderboard-item {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

/* Hover & Active States */
.leaderboard-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.leaderboard-item:active {
    transform: scale(0.96);
    opacity: 0.8;
}

/* --- Top 3 Podiums --- */

/* Gold - 1st Place */
.leaderboard-item.top-1 {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.12), rgba(255, 215, 0, 0.02));
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
}
.leaderboard-item.top-1 .rank-badge {
    background: #ffd700;
    color: #000;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}
.leaderboard-item.top-1 .lb-score { color: #ffd700; font-size: 20px; }

/* Silver - 2nd Place */
.leaderboard-item.top-2 {
    background: linear-gradient(90deg, rgba(192, 192, 192, 0.12), rgba(192, 192, 192, 0.02));
    border-color: rgba(192, 192, 192, 0.4);
}
.leaderboard-item.top-2 .rank-badge {
    background: #c0c0c0;
    color: #000;
}

/* Bronze - 3rd Place */
.leaderboard-item.top-3 {
    background: linear-gradient(90deg, rgba(205, 127, 50, 0.12), rgba(205, 127, 50, 0.02));
    border-color: rgba(205, 127, 50, 0.4);
}
.leaderboard-item.top-3 .rank-badge {
    background: #cd7f32;
    color: #fff;
}

/* Rank Badge Base */
.rank-badge {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
    flex-shrink: 0;
}
.rank-badge {
    width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 14px;
}
.lb-avatar { width: 42px; height: 42px; border-radius: 50%; border: 2px solid white; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }
.lb-info { flex: 1; display: flex; flex-direction: column; }
.lb-name { font-weight: 800; font-size: 16px; color: #fff; }
.lb-stats { font-size: 11px; opacity: 0.6; font-weight: 600; margin-top: 2px; }
.lb-score { font-weight: 900; color: #ffd700; font-size: 18px; text-shadow: 0 0 10px rgba(255,215,0,0.3); }

/* --- 6. GAME ELEMENTS --- */
.game-board-wrapper {
    position: relative;
    width: 100%;
    max-width: 320px;
    min-height: 320px;
    margin: 0 auto;
    flex-shrink: 0;
}

.game-board {
    display: grid; grid-template-columns: repeat(var(--grid-size, 3), 1fr);
    gap: 8px; width: 100%; max-width: 320px; height: 320px; margin: auto;
}
.cell {
    background: rgba(255, 255, 255, 0.08); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: calc(180px / var(--grid-size, 3)); cursor: pointer;
    border: 1px solid rgba(255,255,255,0.05); transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    aspect-ratio: 1/1;
    overflow: hidden;
}
.cell:active { background: rgba(255, 255, 255, 0.15); }
.cell.blocked { background: rgba(231, 76, 60, 0.3); color: #fff; cursor: not-allowed; border-color: #ff7675; }

/* Winning Line Highlight */
.cell.winning-cell {
    background: rgba(85, 239, 196, 0.4) !important;
    border-color: #55efc4 !important;
    box-shadow: 0 0 20px rgba(85, 239, 196, 0.6);
    transform: scale(1.05);
    animation: winPulse 0.5s ease-in-out infinite alternate;
}

@keyframes winPulse {
    from { box-shadow: 0 0 15px rgba(85, 239, 196, 0.4); }
    to { box-shadow: 0 0 25px rgba(85, 239, 196, 0.8); }
}

.timer-pill { transition: 0.3s; padding: 8px 20px; border-radius: 20px; background: rgba(0,0,0,0.3); font-weight: 900; border: 1px solid rgba(255,255,255,0.1); }
.timer-grace { background: rgba(46, 213, 115, 0.4); border-color: #2ed573; }
.timer-warning { background: rgba(255, 118, 117, 0.4); border-color: #ff7675; animation: flash 1s infinite; }
.timer-alarm { background: #d63031; border-color: #fff; animation: flash 0.5s infinite; }
@keyframes flash { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }

/* Selector buttons (Board Size / Mode) */
.selector { display: flex; gap: 8px; margin-bottom: 15px; }
.selector button { flex: 1; padding: 12px 5px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); color: white; font-weight: 700; transition: 0.2s; font-size: 12px; }
.selector button.active { border: 2px solid #6c5ce7; background: rgba(108, 92, 231, 0.25); box-shadow: 0 0 15px rgba(108, 92, 231, 0.4); transform: scale(1.05); }

.stat-box { 
    border: 2px solid transparent; 
    border-radius: 20px; 
    padding: 10px; 
    transition: 0.3s; 
    position: relative;
    min-width: 80px;
    min-height: 100px;
}
.stat-box.active-turn { border-color: #6c5ce7; background: rgba(108, 92, 231, 0.1); }

.player-stats-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    min-height: 110px;
}

/* --- 7. BUTTONS --- */
.button-group { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
button { padding: 15px; border-radius: 14px; border: none; font-size: 14px; font-weight: 800; cursor: pointer; text-transform: uppercase; transition: 0.2s; }
button:active { transform: scale(0.97); }
.btn-primary { background: linear-gradient(135deg, #6c5ce7, #a29bfe); color: white; box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3); }
.btn-secondary { background: rgba(255,255,255,0.1); color: white; border: 1px solid rgba(255,255,255,0.1); }
.btn-gold { background: linear-gradient(135deg, #f1c40f, #f39c12); color: #2d3436; margin-bottom: 20px; box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3); }

.social-icon {
    width: 44px; height: 44px; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; font-size: 22px;
    color: white; border: none; cursor: pointer; flex-shrink: 0;
}
.social-icon.google { background: #ea4335; }
.social-icon.fb { background: #1877f2; }

/* Smaller social icons when shown inline with friends */
.social-prompt .social-icon {
    width: 36px; height: 36px; font-size: 18px;
}


/* --- 8. MODALS & SCREENS --- */
.modal {
    display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.85);
    z-index: 100; justify-content: center; align-items: center; backdrop-filter: blur(10px);
}
.modal.active { display: flex; }
.glass-modal {
    background: rgba(25, 25, 35, 0.95); padding: 30px; border-radius: 30px;
    width: 90%; max-width: 360px; text-align: center; border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.quest-card {
    position: relative;
    background: rgba(255,255,255,0.05); border-radius: 18px; padding: 15px;
    margin-bottom: 12px; display: flex; align-items: center; gap: 15px; text-align: left;
    border: 1px solid rgba(255,255,255,0.05);
}
.quest-reward { font-weight: bold; color: #ffd700; font-size: 13px; }

.quest-card.completed { border-color: #2ecc71; background: rgba(46, 204, 113, 0.1); }
.quest-card.tomorrow { opacity: 0.4; pointer-events: none; filter: grayscale(1); }

.tomorrow-overlay {
    position: absolute; inset: 0; background: rgba(0,0,0,0.5);
    display: flex; align-items: center; justify-content: center;
    border-radius: 18px; font-weight: 900; font-size: 18px;
    color: #fff; text-transform: uppercase; letter-spacing: 2px;
}

.screen { display: none; flex-direction: column; height: 100%; overflow-y: auto; padding-bottom: 20px; }
.screen.active { display: flex; }

.streak-badge { background: linear-gradient(135deg, #ff7675, #d63031); color: white; padding: 3px 8px; border-radius: 12px; font-size: 10px; font-weight: 900; margin-top: 5px; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }

/* --- 9. OTHER GAMES --- */
.rocket-container { margin: 30px 0; }
.ph-rocket-launch { animation: rocketFloat 3s ease-in-out infinite; filter: drop-shadow(0 0 15px rgba(162, 155, 254, 0.5)); }
@keyframes rocketFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(10deg); }
}

/* Quick Reaction Bubble Animation */
@keyframes bubblePop {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.coming-soon-badge {
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), transparent);
    color: #ffd700; padding: 10px 25px; border-radius: 30px; border: 1px solid #ffd700;
    font-weight: 900; letter-spacing: 2px; margin-top: 15px; display: inline-block;
    animation: glowText 2s infinite alternate;
}
@keyframes glowText { from { box-shadow: 0 0 5px #ffd700; } to { box-shadow: 0 0 20px #ffd700; } }

/* --- 10. SYSTEM UTILS --- */
.switch { position: relative; display: inline-block; width: 44px; height: 24px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; inset: 0; background-color: rgba(255,255,255,0.2); transition: .4s; border-radius: 24px; }
.slider:before { position: absolute; content: ""; height: 18px; width: 18px; left: 3px; bottom: 3px; background-color: white; transition: .4s; border-radius: 50%; }
input:checked + .slider { background-color: #6c5ce7; }
input:checked + .slider:before { transform: translateX(20px); }

.btn-whatsapp { background: #25D366; color: white; width: 100%; margin-bottom: 10px; }
.btn-email { background: #ea4335; color: white; width: 100%; }

/* --- 11. CHAT & EMOJI PICKER --- */
.dm-area {
    display: flex; flex-direction: column; gap: 10px; padding: 10px;
}
.chat-bubble {
    max-width: 80%; padding: 10px 15px; border-radius: 18px; font-size: 14px; line-height: 1.4;
    word-wrap: break-word;
}
.chat-bubble.me {
    align-self: flex-end; background: #6c5ce7; color: white;
    border-bottom-right-radius: 4px;
}
.chat-bubble.friend {
    align-self: flex-start; background: rgba(255,255,255,0.1); color: white;
    border-bottom-left-radius: 4px;
}

.chat-emoji-picker {
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px;
    background: rgba(0,0,0,0.3); border-radius: 15px; padding: 10px;
    margin-bottom: 10px; max-height: 150px; overflow-y: auto;
}
.chat-emoji-picker span {
    font-size: 24px; text-align: center; cursor: pointer; transition: 0.1s;
}
.chat-emoji-picker span:active { transform: scale(1.2); }

.btn-emoji-toggle {
    background: rgba(255,255,255,0.1); border: none; border-radius: 10px;
    width: 40px; height: 40px; font-size: 20px; cursor: pointer;
}

.unread-dot {
    position: absolute; top: 0; right: 0; width: 12px; height: 12px;
    background: #ff7675; border-radius: 50%; border: 2px solid #24243e;
    box-shadow: 0 0 5px rgba(255, 118, 117, 0.5);
}

.btn-xs { padding: 8px 15px; font-size: 12px; border-radius: 10px; }

.quest-progress-bg {
    width: 100%; height: 8px; background: rgba(255,255,255,0.1);
    border-radius: 4px; margin-top: 8px; overflow: hidden;
}
.quest-progress-fill {
    height: 100%; background: #6c5ce7; transition: 0.3s;
}
.completed .quest-progress-fill { background: #2ecc71; }

/* --- 12. SETUP SELECTION HIGHLIGHTS --- */
.avatar-option {
    width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
    border: 3px solid transparent; transition: 0.2s; object-fit: cover;
}
.avatar-option.selected { border-color: #6c5ce7; transform: scale(1.1); box-shadow: 0 0 15px rgba(108, 92, 231, 0.6); }

.emoji-option {
    font-size: 24px; cursor: pointer; padding: 5px; border-radius: 8px;
    border: 2px solid transparent; transition: 0.2s;
    display: inline-flex; align-items: center; justify-content: center;
}
.emoji-option.selected { border-color: #6c5ce7; background: rgba(108, 92, 231, 0.1); transform: scale(1.2); }
/* --- BOT TOAST NOTIFICATION --- */
.bot-toast-notif {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    background: rgba(108, 92, 231, 0.95); /* Deep Purple */
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 1px;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 15px rgba(108, 92, 231, 0.5);
    border: 1px solid rgba(255,255,255,0.2);
}

.bot-toast-notif.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Speech Bubble for Chat/Reactions */
.speech-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 14px;
    max-width: 120px;
    word-wrap: break-word;
    z-index: 200;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    animation: bubblePop 0.3s ease-out;
}

.speech-bubble.left {
    top: -10px;
    left: 100%;
    margin-left: 10px;
}

.speech-bubble.left::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 12px;
    border-width: 8px;
    border-style: solid;
    border-color: transparent rgba(255,255,255,0.95) transparent transparent;
}

.speech-bubble.right {
    top: -10px;
    right: 100%;
    margin-right: 10px;
}

.speech-bubble.right::before {
    content: '';
    position: absolute;
    right: -8px;
    top: 12px;
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(255,255,255,0.95);
}

.speech-bubble.emoji-only {
    font-size: 28px;
    padding: 5px 10px;
    background: linear-gradient(135deg, #ffeaa7, #fdcb6e);
}
