/* 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TENSHO MUSIC — GLOBAL DESIGN SYSTEM & STYLES (assets/css/main.css)
   Angel Carmona / Tensho Beats
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
*/

/* ─── Typography & Fonts Import ────────────────────────────────────────── */
/* DM Sans — Google Fonts (closest free equivalent to Neue Montreal) */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;0,9..40,900;1,9..40,300;1,9..40,400;1,9..40,700&display=swap');

/* ─── CSS Custom Properties (Design Tokens) ────────────────────────────── */
:root {
    /* Color Palette */
    --bg-raw: 5, 5, 8;
    --bg-dark: rgb(var(--bg-raw));
    --surface-raw: 13, 13, 20;
    --surface: rgb(var(--surface-raw));
    --surface-light: #161622;
    --surface-hover: #1e1e2f;
    
    --primary-raw: 108, 71, 255;
    --primary: rgb(var(--primary-raw)); /* Violeta eléctrico */
    --primary-glow: rgba(var(--primary-raw), 0.35);
    
    --accent-raw: 255, 71, 120;
    --accent: rgb(var(--accent-raw)); /* Rosa cinematográfico */
    --accent-glow: rgba(var(--accent-raw), 0.35);
    
    --gold: #d4af37; /* Detalles premium */
    
    --text-primary: #f0f0f8;
    --text-secondary: #8888aa;
    --text-muted: #555577;
    
    --border-color: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.12);
    
    /* Layout & Spacing */
    --max-width: 1400px;
    --header-height: 80px;
    --player-height: 90px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.15s ease;
}

/* ─── Global Resets & Defaults ─────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--surface-light);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

input, button, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

/* ─── Utility Classes ──────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, var(--primary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-accent {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.glass {
    background: rgba(var(--surface-raw), 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
}

.glass-premium {
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.glow-hover {
    transition: var(--transition-smooth);
}
.glow-hover:hover {
    box-shadow: 0 0 30px var(--primary-glow);
    border-color: rgba(var(--primary-raw), 0.5);
}

/* ─── Layout ───────────────────────────────────────────────────────────── */
header.site-header {
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

header.site-header.scrolled {
    height: 70px;
    background: rgba(var(--bg-raw), 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    font-weight: 400;
    opacity: 0.8;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    opacity: 0.75;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    opacity: 1;
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Language and Cart Buttons */
.lang-selector {
    display: flex;
    gap: 0.5rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    border: 1px solid var(--border-color);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
}

.lang-btn {
    opacity: 0.5;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lang-btn.active {
    opacity: 1;
    color: var(--primary);
    font-weight: bold;
}

.cart-icon {
    position: relative;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: bold;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ─── Buttons ──────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, rgba(var(--primary-raw), 0.8) 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(var(--primary-raw), 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, rgba(var(--primary-raw), 0.9) 0%, var(--primary) 100%);
    box-shadow: 0 6px 20px rgba(var(--primary-raw), 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
}

.btn-secondary:hover {
    background: var(--surface-hover);
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 20px var(--primary-glow);
    transform: translateY(-2px);
}

/* ─── Page Containers ─── */
main.main-content {
    margin-top: var(--header-height);
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Footer */
footer.site-footer {
    background-color: #030305;
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 2rem 0;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    background: var(--surface);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    flex: 1;
}

.newsletter-form button {
    background: var(--primary);
    color: #fff;
    padding: 0.75rem 1.2rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive Grid layouts */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* Hide desktop navigation and secondary header controls on mobile to keep it super clean */
    .main-nav {
        display: none !important;
    }
    
    header.site-header {
        height: 60px !important;
        background: rgba(var(--bg-raw), 0.8) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
    }
    
    .header-actions .btn, 
    .header-actions .lang-selector, 
    .header-actions .nav-link {
        display: none !important; /* Move secondary actions into bottom bar or dashboard for clean mobile header */
    }
    
    .header-actions {
        gap: 1rem !important;
    }
    
    .logo {
        font-size: 1.3rem !important;
    }

    .container {
        padding: 0 1.25rem !important;
    }

    /* Grid & Layout Adjustments */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding-bottom: 5.5rem; /* Add padding at the bottom of footers so bottom bars don't overlap */
    }
    
    /* Responsive general page sections */
    section {
        padding: 4rem 0 !important;
    }
    
    /* Minimize top spacing on mobile for admin panel views */
    section[style*="padding: 8rem 0"], 
    section[style*="padding: 6rem 0"] {
        padding: 5rem 0 3rem 0 !important;
    }
    
    .hero-section {
        padding: 6rem 0 3rem 0 !important;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2.5rem !important;
        letter-spacing: -1px !important;
        line-height: 1.2 !important;
    }
    
    .hero-section p {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    .hero-section div {
        justify-content: center;
    }
    
    .btn {
        width: 100% !important; /* Call-to-actions are full-width and thumb-friendly on iOS */
        padding: 0.85rem 1.5rem !important;
        font-size: 0.95rem !important;
        justify-content: center !important;
    }
    
    /* 2-column, 3-column, 5-column structures to single column */
    .beats-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    /* Convert sample packs 2-column layout to single column */
    div[style*="grid-template-columns: repeat(2, 1fr)"],
    div[style*="grid-template-columns: repeat(3, 1fr)"],
    div[style*="grid-template-columns: repeat(5, 1fr)"],
    div[style*="grid-template-columns: 1fr 1fr"],
    div[style*="grid-template-columns: 2fr 1fr 1fr"],
    form[style*="grid-template-columns: 2fr 1fr 1fr"],
    form[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
    
    /* Admin header layout title scaling and spacing */
    div[style*="display: flex; justify-content: space-between; align-items: center; margin-bottom: 3rem"] {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 1.25rem !important;
    }
    
    div[style*="display: flex; justify-content: space-between; align-items: center; margin-bottom: 3rem"] h1 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }

    div[style*="display: flex; justify-content: space-between; align-items: center; margin-bottom: 3rem"] .btn {
        width: 100% !important;
    }

    /* Admin forms specific responsive padding */
    form.glass-premium {
        padding: 1.5rem !important;
        gap: 1.75rem !important;
    }

    form.glass-premium h3 {
        font-size: 1.15rem !important;
        margin-bottom: 1rem !important;
    }

    form.glass-premium div[style*="display: flex; gap: 1.5rem; justify-content: flex-end"] {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    /* Filter card styling */
    form.glass {
        padding: 1.25rem !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 1rem !important;
    }
    
    form.glass div {
        flex: unset !important;
        width: 100% !important;
    }

    /* Lead magnet container */
    div.glass-premium[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        padding: 2rem 1.25rem !important;
        gap: 2.5rem !important;
    }

    div.glass-premium h2 {
        font-size: 2rem !important;
    }

    /* Modals */
    .modal-content {
        padding: 1.5rem !important;
        width: 90% !important;
        max-width: 420px !important;
    }
    
    .modal-content h2 {
        font-size: 1.4rem !important;
    }
    
    /* Admin Table layout improvements on mobile */
    table th, table td {
        padding: 1rem 0.75rem !important;
        font-size: 0.85rem !important;
    }
    
    /* Hide non-critical columns on mobile table lists for perfect width scale */
    table th:nth-child(3), table td:nth-child(3), /* metrics / plays / likes */
    table th:nth-child(4):not(:last-child), table td:nth-child(4):not(:last-child) { /* extra status / ip / detail info */
        display: none !important;
    }
    
    /* Force action buttons to wrap nicely */
    table td div[style*="display: flex; gap: 0.75rem"] {
        flex-direction: column !important;
        gap: 0.5rem !important;
        align-items: stretch !important;
    }
    
    table td div[style*="display: flex; gap: 0.75rem"] .btn,
    table td div[style*="display: flex; gap: 0.75rem"] form,
    table td div[style*="display: flex; gap: 0.75rem"] button {
        width: 100% !important;
        text-align: center !important;
        padding: 0.4rem 0.75rem !important;
        font-size: 0.8rem !important;
        box-sizing: border-box;
    }

    /* ─── ADMIN PANEL RESPONSIVE (scoped via .admin-page body class) ─── */
    /* Stats 5-col → 2-col, all others → 1-col */
    .admin-page [style*="grid-template-columns: repeat(5, 1fr)"] {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }

    .admin-page [style*="grid-template-columns: repeat(4, 1fr)"],
    .admin-page [style*="grid-template-columns: repeat(3, 1fr)"],
    .admin-page [style*="grid-template-columns: 1fr 1fr"],
    .admin-page [style*="grid-template-columns: 2fr 1fr 1fr"],
    .admin-page [style*="grid-template-columns: 2fr 1fr"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    /* Admin page title + action row: stack vertically */
    .admin-page section > .container > div:first-child,
    .admin-page [style*="display: flex"][style*="justify-content: space-between"] {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 1rem !important;
    }

    /* Admin H1 titles */
    .admin-page h1 {
        font-size: 1.8rem !important;
        letter-spacing: -0.5px !important;
        margin-bottom: 1.25rem !important;
    }

    /* Admin glass card padding */
    .admin-page .glass-premium,
    .admin-page .glass {
        padding: 1.25rem !important;
    }

    /* Admin tables: horizontal scroll container */
    .admin-page div[style*="overflow-x"] {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        max-width: 100vw;
    }

    /* Admin form action button row */
    .admin-page [style*="justify-content: flex-end"] {
        flex-direction: column !important;
        gap: 0.75rem !important;
        align-items: stretch !important;
    }

    /* Admin form: all buttons full-width on mobile */
    .admin-page form .btn {
        width: 100% !important;
        justify-content: center !important;
    }

    /* Footer bottom extra padding for taller tab bar */
    .footer-bottom {
        padding-bottom: 6rem !important;
    }
}

/* ─── iOS BOTTOM TAB BAR STYLING ─── */
.ios-tab-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(75px + env(safe-area-inset-bottom, 0px)); /* Raised slightly to prevent text clipping */
    background: rgba(10, 10, 16, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 9999;
    justify-content: space-around;
    align-items: flex-start;
    padding-top: 10px; /* Reduced to shift icons and labels higher up */
    padding-bottom: env(safe-area-inset-bottom, 0px);
    box-sizing: border-box;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.7);
}

.ios-tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Align contents to the top */
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
    flex: 1;
    gap: 4px;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
}

.ios-tab-item:hover, .ios-tab-item.active {
    color: var(--primary);
}

.ios-tab-item svg {
    stroke: currentColor;
    transition: transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ios-tab-item.active svg {
    transform: scale(1.1);
    stroke: var(--primary);
}

.ios-tab-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.68rem; /* Scaled up slightly for readability */
    font-weight: 600;
    letter-spacing: -0.2px;
    margin-top: 2px; /* Shifts text up and away from device bezel */
}

/* Cart Badge specifically positioned inside the tab item view */
.ios-cart-badge {
    position: absolute;
    top: -2px; /* Adjusted slightly to look perfect with flex-start layout */
    right: -12px;
    background: var(--accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    box-shadow: 0 2px 6px rgba(var(--accent-raw), 0.4);
    border: 1.5px solid rgba(13, 13, 20, 0.95);
}

@media (max-width: 768px) {
    .ios-tab-bar {
        display: flex;
    }

    /* ─── PUBLIC DETAIL VIEWS RESPONSIVE (BEATS & PACKS) ─── */
    .beat-layout {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }

    .beat-layout > div {
        position: static !important; /* Cancel position: sticky on mobile */
    }

    .beat-specs {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.75rem !important;
        padding: 1.25rem 1rem !important;
    }

    .beat-specs div div {
        font-size: 1.1rem !important;
    }

    .beat-free-banner {
        flex-direction: column !important;
        align-items: stretch !important;
        text-align: center !important;
        gap: 1.5rem !important;
        padding: 1.5rem !important;
    }

    .beat-free-banner .btn {
        width: 100% !important;
    }

    /* Stack list license elements vertically on mobile */
    .beat-layout div[style*="display: flex"][style*="justify-content: space-between"] {
        flex-direction: column !important;
        align-items: stretch !important;
        text-align: center !important;
        gap: 1.25rem !important;
        padding: 1.5rem !important;
    }

    .beat-layout div[style*="display: flex"][style*="justify-content: space-between"] div[style*="text-align: right"] {
        text-align: center !important;
        align-items: center !important;
        min-width: 100% !important;
    }

    .beat-similar {
        grid-template-columns: 1fr !important;
    }

    .pack-layout {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }

    /* ─── ARTIST DASHBOARD RESPONSIVE ─── */
    .dash-layout {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .dash-stats {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .dash-layout [style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    /* ─── ADMIN GRID GENERAL FALLBACKS ─── */
    .admin-page [style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    .admin-page [style*="grid-template-columns: repeat(5, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }

    /* Keep checkboxes grids 2-columns (compact and clean) */
    .admin-page [style*="grid-template-columns: repeat(4, 1fr)"],
    .admin-page [style*="grid-template-columns: repeat(6, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
}

/* ─── Hero Premium Badge with High Contrast Gradient Border ─── */
.hero-badge-container {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    background: #090910;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.hero-badge-container::before {
    content: '';
    position: absolute;
    top: -1.5px;
    left: -1.5px;
    right: -1.5px;
    bottom: -1.5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 100px;
    z-index: -1;
    opacity: 0.8;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--accent);
    animation: badge-pulse 2s infinite ease-in-out;
}

.hero-badge-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
}

@keyframes badge-pulse {
    0% {
        transform: scale(0.85);
        box-shadow: 0 0 0 0 rgba(255, 71, 120, 0.7);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 6px rgba(255, 71, 120, 0);
    }
    100% {
        transform: scale(0.85);
        box-shadow: 0 0 0 0 rgba(255, 71, 120, 0);
    }
}



