:root {
    /* Colors based on Somalia flag (Blue and White) with modern web adaptations */
    --som-blue: #4189dd;
    /* Basic flag blue */
    --som-blue-light: #6fb1ff;
    /* Accent */
    --som-dark: #050b14;
    /* Deep dark blue background */
    --som-darker: #02050a;
    --som-panel: rgba(10, 25, 47, 0.7);
    /* Deep blue tinted glass */
    --text-primary: #ffffff;
    --text-muted: #8892b0;
    --white: #ffffff;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--som-darker);
    background-image:
        radial-gradient(circle at 15% 50%, rgba(65, 137, 221, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(65, 137, 221, 0.12) 0%, transparent 50%);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Base Body background using user's image if present */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('background.jpeg') no-repeat center center/cover;
    opacity: 0.15;
    z-index: -2;
    filter: blur(4px) brightness(0.5);
}

/* Particles background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Glass panel utility */
.glass-panel {
    background: var(--som-panel);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(65, 137, 221, 0.2);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

h2 span,
h3 span {
    color: var(--som-blue);
    text-shadow: 0 0 10px rgba(65, 137, 221, 0.5);
}

.section-title {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.section-title.center {
    text-align: center;
}

.section-subtitle.center {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 1rem 5%;
    background: rgba(5, 11, 20, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(65, 137, 221, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--som-blue-light);
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--som-blue);
    transition: var(--transition);
}

.nav-links a:not(.btn-primary):hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Buttons */
.btn-primary {
    background: var(--som-blue);
    color: var(--white);
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary:hover {
    background: var(--som-blue-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(65, 137, 221, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--som-blue);
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    border: 2px solid var(--som-blue);
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(65, 137, 221, 0.1);
    transform: translateY(-2px);
}

.btn-glow {
    box-shadow: 0 0 20px rgba(65, 137, 221, 0.5);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
}

.hero-content {
    flex: 1;
    z-index: 10;
}

.tagline {
    color: var(--som-blue-light);
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.glitch {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    position: relative;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 550px;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.cover-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(65, 137, 221, 0.3);
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Sections Common */
section {
    padding: 60px 5%;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* About Section */
.about-section .section-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 800px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    padding: 1.5rem;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--som-blue);
    box-shadow: 0 10px 30px rgba(65, 137, 221, 0.2);
}

.feature-card i {
    font-size: 2rem;
    color: var(--som-blue);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Systems Section */
.systems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.system-card {
    padding: 1.8rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.system-card:hover {
    transform: translateY(-5px);
}

.highlight-card {
    background: linear-gradient(145deg, rgba(10, 25, 47, 0.9), rgba(15, 35, 65, 0.9));
    border-color: var(--som-blue);
}

.card-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.status-prod {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.status-upcoming {
    background: rgba(243, 156, 18, 0.2);
    color: #f39c12;
    border: 1px solid rgba(243, 156, 18, 0.3);
}

.card-icon {
    font-size: 2rem;
    color: var(--som-blue-light);
    margin-bottom: 1rem;
}

.system-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.system-card p {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.system-link {
    color: var(--som-blue);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.system-link i {
    transition: transform 0.3s ease;
}

.system-link:hover i {
    transform: translateX(5px);
}

.empty-system {
    opacity: 0.6;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.team-card {
    padding: 1.8rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--som-blue);
}

.team-avatar-img {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.2rem auto;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--som-blue);
    box-shadow: 0 0 10px rgba(65, 137, 221, 0.4);
    display: block;
    transition: var(--transition);
}

.team-card:hover .team-avatar-img {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(65, 137, 221, 0.6);
}

.team-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.team-role {
    color: var(--som-blue-light);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.team-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Footer */
.footer {
    padding: 3rem 5% 1.5rem;
    margin-top: 40px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: none;
    border-left: none;
    border-right: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-brand h2 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-links a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(65, 137, 221, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--som-blue-light);
    transition: var(--transition);
    font-size: 0.9rem;
}

.social-links a:hover {
    background: var(--som-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-contact h3 {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--som-blue);
}

.footer-bottom {
    max-width: 1200px;
    margin: 2.5rem auto 0;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Scroll Animations */
.hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* Leaderboard Section */
.leaderboard-section {
    position: relative;
    z-index: 5;
}

.leaderboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.student-card {
    display: flex;
    align-items: center;
    padding: 1.2rem;
    background: rgba(10, 25, 47, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(65, 137, 221, 0.15);
    border-radius: 16px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.student-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--som-blue);
    box-shadow: 0 10px 25px rgba(65, 137, 221, 0.2);
}

/* Add a gold glow for the top 3 spots */
.student-card.rank-1 {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.1), rgba(10, 25, 47, 0.8));
    border-color: rgba(255, 215, 0, 0.4);
}

.student-card.rank-2 {
    background: linear-gradient(145deg, rgba(192, 192, 192, 0.1), rgba(10, 25, 47, 0.8));
    border-color: rgba(192, 192, 192, 0.4);
}

.student-card.rank-3 {
    background: linear-gradient(145deg, rgba(205, 127, 50, 0.1), rgba(10, 25, 47, 0.8));
    border-color: rgba(205, 127, 50, 0.4);
}

.student-rank {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.2);
    width: 45px;
    text-align: center;
}

.student-card.rank-1 .student-rank {
    color: gold;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.student-card.rank-2 .student-rank {
    color: silver;
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
}

.student-card.rank-3 .student-rank {
    color: #cd7f32;
    text-shadow: 0 0 10px rgba(205, 127, 50, 0.5);
}

.student-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.student-card.rank-1 .student-avatar {
    border-color: gold;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.student-info {
    flex: 1;
}

.student-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.student-school {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.student-points {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.points-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--som-blue-light);
    font-family: var(--font-heading);
}

.points-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 100px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .glitch {
        font-size: 4rem;
    }

    .hero-image-container {
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        right: -100%;
        background: var(--som-panel);
        backdrop-filter: blur(15px);
        width: 250px;
        height: 100vh;
        flex-direction: column;
        align-items: center;
        padding-top: 2rem;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(65, 137, 221, 0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: block;
    }

    .glitch {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* =========================================
   HORYAAL LAB EPIC UI OVERHAUL
   ========================================= */

/* Somali Curiosity & Motivation Banner */
.curiosity-quote {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 300;
    font-style: italic;
    color: var(--som-blue-light);
    margin-bottom: 2rem;
    padding: 1rem;
    border-left: 4px solid var(--som-blue);
    border-right: 4px solid var(--som-blue);
    background: rgba(65, 137, 221, 0.05);
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(65, 137, 221, 0.1);
}

/* Tab Navigation for Leaderboards */
.horyaal-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(10, 25, 47, 0.8);
    border: 1px solid rgba(65, 137, 221, 0.3);
    color: var(--text-muted);
    padding: 0.8rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.tab-btn:hover {
    color: var(--white);
    border-color: var(--som-blue-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(65, 137, 221, 0.2);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--som-blue), #2c5282);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 0 20px rgba(65, 137, 221, 0.5);
    transform: scale(1.05);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tartanka Weyn (Reward Event) Section */
.tartanka-section {
    position: relative;
    padding: 80px 5%;
    background: linear-gradient(to bottom, rgba(5, 11, 20, 0), rgba(15, 30, 60, 0.4));
    border-top: 1px solid rgba(65, 137, 221, 0.2);
    border-bottom: 1px solid rgba(65, 137, 221, 0.2);
}

.tartanka-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(5, 11, 20, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.1);
    text-align: center;
}

.tartanka-title {
    font-size: 2.8rem;
    font-family: var(--font-heading);
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tartanka-subtitle {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Progress Bar for Pending Tartanka */
.tartanka-progress-wrap {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tartanka-stats-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-weight: bold;
    font-family: var(--font-heading);
}

.progress-track {
    width: 100%;
    height: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff8a00, #e52e71);
    border-radius: 10px;
    width: 0%;
    transition: width 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 0 10px #e52e71;
}

.pulse-text {
    animation: pulseGlow 2s infinite;
    color: #e52e71;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes pulseGlow {
    0% {
        opacity: 0.7;
        text-shadow: 0 0 5px rgba(229, 46, 113, 0.5);
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 20px rgba(229, 46, 113, 0.8);
    }

    100% {
        opacity: 0.7;
        text-shadow: 0 0 5px rgba(229, 46, 113, 0.5);
    }
}

/* Live Event Badge */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.5);
    color: #ff4d4d;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: pulseBorder 2s infinite;
}

.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff4d4d;
    box-shadow: 0 0 10px #ff4d4d;
    animation: blink 1s infinite;
}

@keyframes pulseBorder {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* Category Specific Icons/Colors */
.icon-global {
    color: var(--som-blue-light);
}

.icon-grammar {
    color: #4ade80;
}

/* green */
.icon-speaking {
    color: #f472b6;
}

/* pink */
/* =========================================
   HORYAAL LAB DEDICATED PAGE
   ========================================= */

/* Epic Blue Theme Background */
.body-horyaal-lab {
    background-color: #030812;
    background-image:
        radial-gradient(circle at 50% 10%, rgba(65, 137, 221, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 10% 80%, rgba(13, 138, 188, 0.1) 0%, transparent 40%);
}

.horyaal-background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('background.jpeg') no-repeat center center/cover;
    opacity: 0.08;
    z-index: -2;
    filter: blur(8px) brightness(0.6) sepia(0.5) hue-rotate(180deg);
    /* Blue tint push */
}

/* Tiny Vibe Scaling */
.tiny-vibe .curiosity-quote {
    font-size: 0.95rem;
    padding: 0.8rem;
    margin-bottom: 1.5rem;
}

.tiny-vibe .tab-btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
}

.tiny-vibe .leaderboard-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.tiny-vibe .student-card {
    padding: 0.8rem;
    border-radius: 12px;
}

.tiny-vibe .student-rank {
    font-size: 1.2rem;
    width: 30px;
}

.tiny-vibe .student-avatar {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.tiny-vibe .student-name {
    font-size: 0.95rem;
}

.tiny-vibe .student-school {
    font-size: 0.75rem;
}

.tiny-vibe .points-value {
    font-size: 1rem;
}

.tiny-vibe .points-label {
    font-size: 0.6rem;
}

.tiny-vibe .tartanka-container {
    padding: 1.5rem;
}

.tiny-vibe .tartanka-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.tiny-vibe .tartanka-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.tiny-vibe .progress-track {
    height: 10px;
}

.tiny-vibe .live-badge {
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
}