/* ================================================
   FIORRA DASHBOARD - EMPOWERING WOMEN DESIGN
   Created with love 💜
   Son Düzenleme 17:12:24 20:15:00
   - Weather bar, Mood Music Player stilleri
   ================================================ */

:root {
    /* Empowering Color Palette */
    --primary-purple: #9d4edd;
    --primary-pink: #ff6b9d;
    --rose-gold: #d4af37;
    --gold: #ffd700;
    --soft-blue: #7209b7;
    --deep-purple: #5a189a;
    
    /* Gradients */
    --aurora-gradient: linear-gradient(135deg, 
        #667eea 0%, 
        #764ba2 25%,
        #f093fb 50%,
        #f5576c 75%,
        #ffd200 100%
    );
    
    --card-gradient: linear-gradient(135deg,
        rgba(157, 78, 221, 0.1) 0%,
        rgba(255, 107, 157, 0.1) 100%
    );
    
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Border Radius */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-full: 999px;
    
    /* Shadows */
    --shadow-glow: 0 8px 32px rgba(157, 78, 221, 0.3);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 12px 40px rgba(157, 78, 221, 0.4);
}

/* ================================================
   GLOBAL STYLES
   ================================================ */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* ================================================
   AURORA BACKGROUND (Animated)
   ================================================ */

.aurora-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, 
        #1e1e2e 0%,
        #2d1b4e 25%,
        #4a1f6f 50%,
        #5e2a84 75%,
        #7b2d8f 100%
    );
    animation: aurora-shift 15s ease-in-out infinite;
}

.aurora-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(157, 78, 221, 0.3) 0%,
        transparent 50%
    );
    animation: aurora-rotate 20s linear infinite;
}

.aurora-bg::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(255, 107, 157, 0.2) 0%,
        transparent 50%
    );
    animation: aurora-rotate 25s linear infinite reverse;
}

@keyframes aurora-shift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(20deg); }
}

@keyframes aurora-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ================================================
   DASHBOARD CONTAINER
   ================================================ */

.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-md);
    padding-bottom: 250px; /* Extra extra space for bottom nav */
    min-height: 100vh;
}

/* ================================================
   HAMBURGER MENU BUTTON
   ================================================ */

.hamburger-menu {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    flex-shrink: 0;
    order: 2; /* Sağda olacak */
}
@supports (-webkit-touch-callout: none) {
    .hamburger-menu {
        font-size: 1.6rem!important;
        display: flex!important;
        align-items: center!important;
        justify-content: center!important;
    }
}
.hamburger-menu:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.hamburger-icon {
    font-size: 1.25rem;
    color: white;
    line-height: 1;
}
/* Sadece iOS cihazlar için */
@supports (-webkit-touch-callout: none) {
    .hamburger-icon {
        font-size: 1.6rem!important;
        line-height: 1.2rem;
		display: flex!important;
        align-items: center!important;
        justify-content: center!important;
    }
}
/* ================================================
   FULL SCREEN MENU OVERLAY
   ================================================ */

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 30, 46, 0.98);
    backdrop-filter: blur(30px);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: flex;
    opacity: 1;
}

.menu-content {
    width: 100%;
    height: 100%;
    padding: 16rem 2rem 0 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: menu-slide-in 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.menu-content {
    justify-content: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-top: 60px; /* Close butonu için boşluk */
    padding-bottom: 40px;
}
@keyframes menu-slide-in {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-close:hover {
    background: rgba(255, 107, 157, 0.3);
    transform: rotate(90deg) scale(1.1);
}

.close-icon {
    font-size: 2.5rem;
    color: white;
    line-height: 1;
}

/* ================================================
   MENU HEADER
   ================================================ */

.menu-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.menu-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.logo-icon {
    font-size: 3rem;
    animation: float 3s ease-in-out infinite;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #ff6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-subtitle {
    font-size: 1rem;
    opacity: 0.7;
    font-weight: 300;
}

/* ================================================
   MENU NAVIGATION
   ================================================ */

.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    max-width: 400px;
    margin-bottom: var(--spacing-xl);
}

.menu-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    position: relative;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    box-shadow: var(--shadow-glow);
}

.menu-item.active {
    background: linear-gradient(135deg, 
        rgba(255, 107, 157, 0.3) 0%,
        rgba(157, 78, 221, 0.3) 100%
    );
    border-color: rgba(255, 107, 157, 0.5);
}

.menu-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.menu-label {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
}

.menu-badge {
    background: #ff3366;
    color: white;
    border-radius: var(--radius-full);
    padding: 0.2rem 0.6rem;
    font-size: 0.85rem;
    font-weight: 700;
    min-width: 24px;
    text-align: center;
}

/* ================================================
   MENU FOOTER
   ================================================ */

.menu-footer {
    width: 100%;
    max-width: 400px;
    margin-top: auto;
}

.menu-divider {
    width: 100%;
    height: 1px;
    background: var(--glass-border);
    margin-bottom: var(--spacing-md);
}

.footer-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.25rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-radius: var(--radius-sm);
    margin-top: 0.25rem;
}

.footer-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.footer-icon {
    font-size: 1.2rem;
}

.footer-label {
    flex: 1;
}

.menu-version {
    text-align: center;
    padding: var(--spacing-md) 0;
    font-size: 0.85rem;
    opacity: 0.5;
}

/* ================================================
   GLASS CARD EFFECT
   ================================================ */

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ================================================
   HEADER
   ================================================ */

.dashboard-header {
    margin-bottom: var(--spacing-lg);
}

.header-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    flex-wrap: nowrap;
}

.welcome-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    margin-top: 0;
    line-height: 1.3;
    flex: 1;
    text-align: left;
    order: 1;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.3rem;
}

.welcome-title #greeting-text,
.welcome-title .username {
    background: linear-gradient(135deg, #fff 0%, #ff6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sparkle {
    display: inline-block;
    animation: sparkle-rotate 3s ease-in-out infinite;
    -webkit-text-fill-color: initial;
    flex-shrink: 0;
}

@keyframes sparkle-rotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
}

.username {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.welcome-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
}

/* ================================================
   USER STATS BAR
   ================================================ */

.user-stats-bar {
    display: flex;
    gap: 0.25rem;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.user-stats-bar::-webkit-scrollbar {
    display: none;
}

.stat-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    padding: 0.4rem 0.29rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
    min-width: fit-content;
    white-space: nowrap;
}

.stat-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.balance-stat {
    background: linear-gradient(135deg, 
        rgba(157, 78, 221, 0.3) 0%,
        rgba(255, 107, 157, 0.3) 100%
    );
    padding: 0.4rem 0.6rem 0.4rem 0.06rem !important;
}

.streak-stat {
    background: linear-gradient(135deg,
        rgba(255, 215, 0, 0.3) 0%,
        rgba(255, 195, 113, 0.3) 100%
    );
    padding: 0.4rem 0.5rem 0.4rem 0.1rem !important;
}

.rewards-stat {
    background: linear-gradient(135deg,
        rgba(255, 107, 77, 0.3) 0%,
        rgba(255, 69, 0, 0.3) 100%
    );
    padding: 0.4rem 0.6rem 0.4rem 0.06rem !important;
}

/* Offers Bar - Ayrı satır */
.offers-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 165, 0, 0.2));
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    margin-top: -10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    animation: glow-offer 2s ease-in-out infinite;
}

.offers-bar:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.6);
}

@keyframes glow-offer {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.2); }
    50% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.4); }
}

.offers-icon {
    font-size: 1.5rem;
    animation: bounce-icon 1.5s ease-in-out infinite;
}

@keyframes bounce-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.offers-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.offers-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.offers-cta {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offers-arrow {
    font-size: 1.2rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.offers-bar:hover .offers-arrow {
    transform: translateX(5px);
}

.notification-stat {
    position: relative;
    padding: 0.1rem 0.15rem 0.1rem 0.15rem !important;
    border: none !important;
    background: none !important;
}

.stat-icon {
    font-size: 1.25rem;
    line-height: 1;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.7rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 0.8rem !important;
    font-weight: 500;
}

.notification-icon {
    position: relative;
}

.notification-badge {
    position: absolute;
    top: -8px;
    left: 19px;
    background: #ff3366;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); box-shadow: 0 0 20px rgba(255, 51, 102, 0.6); }
}

/* ================================================
   MAIN CONTENT
   ================================================ */

.dashboard-main {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

/* ================================================
   NOTIFICATION CARD
   ================================================ */

.notification-card {
    padding: var(--spacing-md);
    background: linear-gradient(135deg,
        rgba(157, 78, 221, 0.2) 0%,
        rgba(255, 107, 157, 0.2) 100%
    );
    animation: slide-in-top 0.5s ease-out;
}

@keyframes slide-in-top {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.notification-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.notification-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.notification-text {
    flex: 1;
}

.notification-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.notification-text p {
    font-size: 0.95rem;
    opacity: 0.8;
}

.notification-action {
    background: linear-gradient(135deg, #ff6b9d 0%, #9d4edd 100%);
    border: none;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-full);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.notification-action:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(255, 107, 157, 0.4);
}

.arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.notification-action:hover .arrow {
    transform: translateX(4px);
}

/* ================================================
   PERSONAS SECTION
   ================================================ */

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
}

.section-title .icon {
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

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

.section-subtitle {
    font-size: 1rem;
    opacity: 0.8;
}

.personas-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

/* ================================================
   PERSONA CARDS
   ================================================ */

.persona-card {
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 16px;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.persona-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.persona-card:hover {
    transform: translateY(-12px) scale(1.02);
    /* box-shadow and border-color set by JavaScript */
}

.persona-card:hover::before {
    opacity: 1;
}

.persona-avatar {
    font-size: 1.5rem;
    margin-bottom: 5px;
    display: inline-block;
    animation: persona-pulse 2s ease-in-out infinite;
}

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

.persona-card:hover .persona-avatar {
    animation: persona-bounce 0.6s ease-in-out;
}

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

.persona-name {
    font-size: 1.2rem !important;
    font-weight: 700;
    margin-bottom: 0rem;
    color: var(--persona-primary, #ff6b9d);
    -webkit-text-fill-color: inherit;
}

.persona-tagline {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.25 !important;
    margin-bottom: 0 !important;
}

.persona-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: var(--spacing-xs);
}

.status-free {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.status-locked {
    background: rgba(255, 255, 255, 0.1);
    color: #ffd700;
    border: 1px solid #ffd700;
}

.unlock-cost {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

/* 🏷️ Persona Badge (YENİ, POPÜLER, vs) */
.persona-badge {
    position: absolute;
    top: 1px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.5rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 10;
    animation: badge-pulse 2s ease-in-out infinite;
}

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

/* 👑 Premium Badge (is_free=0 personalar için) */
.premium-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.55rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 10;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    animation: premium-glow 2s ease-in-out infinite;
}

@keyframes premium-glow {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.6);
    }
}

/* ⭐ Featured Card */
.persona-card.featured {
    border-width: 2px;
    position: relative;
}

.persona-card.featured::after {
    content: '⭐';
    position: absolute;
    top: 1px;
    right: 12px;
    font-size: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* 💰 Discount Price */
.status-discount {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.original-price {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.discount-price {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* 📊 Chat Count */
.persona-chats {
    display: inline-block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

/* Loading Shimmer for personas */
.loading-card {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    min-height: 280px;
}

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

/* ================================================
   QUICK ACTIONS
   ================================================ */

.quick-actions {
    text-align: center;
}

.action-btn {
    background: linear-gradient(135deg, #ff6b9d 0%, #9d4edd 100%);
    border: none;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-full);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.3);
}

.action-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 107, 157, 0.5);
}

.action-btn:active {
    transform: scale(0.98);
}

.btn-icon {
    font-size: 1.5rem;
}

.btn-sparkle {
    animation: sparkle-rotate 2s ease-in-out infinite;
}

/* ================================================
   EMPOWERMENT CARD
   ================================================ */

.empowerment-card {
    padding: var(--spacing-lg);
    text-align: center;
    background: linear-gradient(135deg,
        rgba(255, 107, 157, 0.15) 0%,
        rgba(157, 78, 221, 0.15) 100%
    );
    margin-bottom: 5rem; /* 80px extra space from bottom */
}

.quote-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.quote-icon {
    font-size: 3rem;
    animation: heart-beat 1.5s ease-in-out infinite;
}

@keyframes heart-beat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
    75% { transform: scale(1.05); }
}

.quote-text {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    max-width: 600px;
}

.quote-author {
    font-size: 1rem;
    opacity: 0.7;
    font-style: normal;
}

/* ================================================
   BOTTOM NAVIGATION
   ================================================ */

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 30, 46, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-sm);
    display: flex;
    justify-content: space-around;
    z-index: 1000;
}

.nav-item {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    position: relative;
    min-width: 60px;
}

.nav-item:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.nav-item.active {
    color: #ff6b9d;
}

.nav-item.active .nav-icon {
    transform: scale(1.2);
}

.nav-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.nav-label {
    font-size: 0.75rem;
    font-weight: 500;
}

.nav-badge {
    position: absolute;
    top: 0;
    right: 5px;
    background: #ff3366;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

/* ================================================
   LOADING OVERLAY
   ================================================ */

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 30, 46, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-overlay.active {
    display: flex;
}

.loading-spinner {
    text-align: center;
}

.spinner-ring {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: #ff6b9d;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

.spinner-ring:nth-child(2) {
    width: 60px;
    height: 60px;
    border-top-color: #9d4edd;
    animation-duration: 1.5s;
    position: relative;
    top: -70px;
    margin-bottom: -60px;
}

.spinner-ring:nth-child(3) {
    width: 40px;
    height: 40px;
    border-top-color: #ffd700;
    animation-duration: 2s;
    position: relative;
    top: -60px;
    margin-bottom: -40px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-text {
    margin-top: var(--spacing-md);
    font-size: 1.1rem;
    opacity: 0.8;
}

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

@media (max-width: 768px) {
    .dashboard-container {
        padding: var(--spacing-sm);
    }
    
    .welcome-title {
        font-size: 1.25rem;
    }
    
    .welcome-subtitle {
        font-size: 1rem;
    }
    
    .user-stats-bar {
        /* flex-wrap: wrap; KALDIRILDI! */
        /* Artık mobilde de scroll yapacak, wrap olmayacak! */
        gap: 0.25rem;
        justify-content: flex-start;
    }
    
    .stat-item {
        flex-shrink: 0; /* Küçülmeyecek */
        padding: 0.6rem 1rem;
    }
    
    .stat-value {
        font-size: 0.8rem !important;
    }
    
    /* .personas-grid override KALDIRILDI - 2 kolon kalacak! */
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .action-btn {
        font-size: 1rem;
        padding: var(--spacing-sm) var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .welcome-title {
        font-size: 1.15rem;
    }
    
    .stat-item {
        padding: 0.4rem 0.5rem;
    }
    
    .stat-value {
        font-size: 0.8rem !important;
    }
    
    /* .personas-grid KALDIRILDI - HER ZAMAN 2 KOLON! */
    
    .notification-content {
        flex-direction: column;
        text-align: center;
    }
    
    .quote-text {
        font-size: 1.1rem;
    }
}

/* ================================================
   UTILITY ANIMATIONS
   ================================================ */

.fade-in {
    animation: fade-in 0.5s ease-out;
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-up {
    animation: slide-up 0.5s ease-out;
}

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

/* Success celebration animation */
@keyframes celebrate {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.2) rotate(-10deg); }
    50% { transform: scale(1.3) rotate(10deg); }
    75% { transform: scale(1.2) rotate(-10deg); }
}

.celebrate {
    animation: celebrate 0.6s ease-in-out;
}

.notification-icon {
    font-size: 1.5rem;
    line-height: 1;
}
.menu-close {
    position: absolute;
    top: 1rem;
    right: 0.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.close-icon {
    font-size: 1.5rem;
    color: white;
    line-height: 1;
}
.menu-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    position: relative;
}
.status-free {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
	font-size: 0.72rem;
}

/* ================================================
   WEATHER & MOOD BAR
   ================================================ */
.weather-mood-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.15) 0%, rgba(255, 107, 157, 0.15) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    margin-bottom: 12px;
    backdrop-filter: blur(10px);
}

/* Weather Section (Sol) */
.weather-section {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    flex: 1;
}

.weather-section:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(3px);
}

.weather-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.weather-icon-emoji {
    font-size: 1.8rem;
}

/* Mini Loading Spinner */
.weather-loading {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-spinner {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--primary-purple);
    border-radius: 50%;
    animation: miniSpin 0.8s linear infinite;
}

@keyframes miniSpin {
    to { transform: rotate(360deg); }
}

.weather-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.weather-city {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.weather-location {
    display: flex;
    align-items: center;
    gap: 4px;
}

.weather-district {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

.weather-district:before {
    content: "·";
    margin-right: 2px;
}

.weather-district:empty {
    display: none;
}

.weather-district:empty:before {
    display: none;
}

.weather-temp-line {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.weather-temp {
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ffd700, #ffb700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.weather-condition {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Mood Section (Sağ) */
.mood-section {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mood-section:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mood-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

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

.mood-display {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mood-icon {
    font-size: 1.5rem;
}

.mood-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: white;
}

/* ================================================
   MOOD MUSIC PLAYER
   ================================================ */
.mood-music-player {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.25) 0%, rgba(255, 107, 157, 0.25) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    margin-top: 8px;
    margin-bottom: 8px;
    backdrop-filter: blur(10px);
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
        max-height: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 150px;
    }
}

.music-intro-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    text-align: center;
    font-style: italic;
}

.music-player-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.music-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 1rem;
}

.music-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.play-pause-btn {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    border: none;
}

.play-pause-btn:hover {
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.4);
}

.close-btn {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
    opacity: 0.7;
}

.close-btn:hover {
    opacity: 1;
    background: rgba(255, 100, 100, 0.3);
}

.music-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.music-title {
    font-size: 0.8rem;
    color: white;
    font-weight: 500;
}

.music-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-pink));
    border-radius: 2px;
    transition: width 0.1s linear;
}

/* Responsive */
@media (max-width: 480px) {
    .mood-music-player {
        padding: 10px 12px;
    }
    
    .music-intro-text {
        font-size: 0.8rem;
    }
    
    .music-btn {
        width: 36px;
        height: 36px;
    }
}

/* ================================================
   MOOD MODAL
   ================================================ */
.mood-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.mood-modal {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 400px;
    max-height: 80vh;
    overflow: hidden;
    animation: modalSlideUp 0.3s ease;
}

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

.mood-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mood-modal-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: white;
}

.mood-modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
}

.mood-modal-close:hover {
    color: white;
}

.mood-modal-body {
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
}

.mood-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mood-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mood-option:hover {
    background: rgba(157, 78, 221, 0.2);
    border-color: var(--primary-purple);
    transform: translateY(-2px);
}

.mood-option.selected {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.3), rgba(255, 107, 157, 0.3));
    border-color: var(--primary-pink);
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.3);
}

.mood-option-icon {
    font-size: 2rem;
}

.mood-option-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

/* Responsive */
@media (max-width: 480px) {
    .weather-mood-bar {
        padding: 10px 12px;
    }
    
    .weather-section,
    .mood-section {
        padding: 6px 8px;
    }
    
    .mood-label {
        display: none;
    }
    
    .weather-icon {
        font-size: 1.5rem;
    }
    
    .weather-temp {
        font-size: 1rem;
    }
    
    .mood-options {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .mood-option {
        padding: 12px 8px;
    }
    
    .mood-option-icon {
        font-size: 1.6rem;
    }
}

/* ============================================
   PREMIUM MENU & BAR STYLES
   dashboard.css dosyasının sonuna ekle
   ============================================ */

/* Premium Bar (Ana sayfada - offers-bar benzeri) */
.premium-bar {
    display: flex;
    align-items: center;
    gap: 12ppx;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgb(129 126 43 / 51%), rgb(109 110 40 / 55%));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    margin-top: 10px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 2px;
}

.premium-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    animation: premiumShimmer 3s infinite;
}

@keyframes premiumShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.premium-bar:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 165, 0, 0.2));
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.premium-bar .premium-icon {
    font-size: 1.5rem;
    animation: crownBounce 2s ease-in-out infinite;
}

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

.premium-bar .premium-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-left: 0.5rem;
}

.premium-bar .premium-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: #FFD700;
}

.premium-bar .premium-cta {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.premium-bar .premium-arrow {
    font-size: 1.2rem;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.premium-bar:hover .premium-arrow {
    transform: translateX(4px);
}

/* Premium menü öğesi */
.menu-item-premium {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    margin: 5px 0;
}

.menu-item-premium:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
    border-color: rgba(255, 215, 0, 0.4);
}

/* Premium üye ise altın parıltı */
.menu-item-premium.is-premium {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.15));
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.menu-item-premium.is-premium .menu-icon {
    animation: crownPulse 2s ease-in-out infinite;
}

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

.menu-item-premium .menu-label {
    color: #FFD700;
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   LATEST TIPS BAR - Son Bahşişler
   ═══════════════════════════════════════════════════════════ */

.latest-tips-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    margin-top: 0.20rem;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.15), rgba(147, 112, 219, 0.15));
    border: 1px solid rgba(255, 105, 180, 0.25);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.latest-tips-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255, 105, 180, 0.1) 0%, 
        rgba(147, 112, 219, 0.1) 50%,
        rgba(255, 105, 180, 0.1) 100%);
    background-size: 200% 100%;
    animation: tips-shimmer 3s ease infinite;
}

@keyframes tips-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.latest-tips-bar .tips-icon {
    font-size: 1.3rem;
    z-index: 1;
    animation: tips-pulse 2s ease infinite;
}

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

.latest-tips-bar .tips-display {
    flex: 1;
    position: relative;
    height: 22px;
    z-index: 1;
    overflow: hidden;
}

.latest-tips-bar .tip-item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    font-size: 0.85rem;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.latest-tips-bar .tip-item.active {
    opacity: 1;
    transform: translateY(0);
}

.latest-tips-bar .tip-item.exit {
    opacity: 0;
    transform: translateY(-100%);
}

.latest-tips-bar .tip-item .tip-sender {
    color: #ff69b4;
    font-weight: 600;
    flex-shrink: 0;
}

.latest-tips-bar .tip-item .tip-receiver {
    color: #9370db;
    font-weight: 600;
    flex-shrink: 0;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.latest-tips-bar .tip-item .tip-amount {
    color: #ffd700;
    font-weight: 700;
    flex-shrink: 0;
}

.latest-tips-bar .tip-item .tip-gem {
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* ================================================
   LOADING STATE
   ================================================ */

.loading-state {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    z-index: 9999;
}

.loading-spinner {
    margin: 0 auto;
    width: 80px;
    height: 80px;
    position: relative;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #ff6b9d;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner-ring:nth-child(2) {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-top-color: #9d4edd;
    animation-duration: 1.5s;
}

.spinner-ring:nth-child(3) {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-top-color: #ffd700;
    animation-duration: 2s;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-text {
    margin-top: var(--spacing-md);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}