/* ===== RESET & VARIABLES (matches home.css) ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1fb5a2;
    --primary-light: #87dad0;
    --primary-dark: #079687;
    --accent: #ffb347;
    --accent-light: #ffd180;
    --bg-light: #f2f2f2;
    --bg-card: #ffffff;
    --bg-card-alt: #f8f8f8;
    --text-dark: #333333;
    --text-muted: #666666;
    --text-white: #ffffff;
    --shadow-sm: 0 5px 20px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 10px 30px rgba(31, 181, 162, 0.2);
    --border-radius: 20px;
    --transition: all 0.3s ease;
    --container-padding: clamp(1rem, 5vw, 2rem);
}

.dark-theme {
    --primary: #2ac9b5;
    --primary-light: #5fd9c9;
    --primary-dark: #1a8d7d;
    --bg-light: #121212;
    --bg-card: #1e2a2a;
    --bg-card-alt: #253333;
    --text-dark: #e0f2f1;
    --text-muted: #a0c0c0;
    --shadow-sm: 0 5px 20px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 10px 30px rgba(95, 217, 201, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    transition: background 0.3s, color 0.3s;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== HEADER (matches home.css) ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-card);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--primary);
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text .momo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.navbar {
    display: flex;
    gap: 30px;
}

.navbar a {
    font-weight: 500;
    padding: 5px 0;
    color: var(--text-dark);
    transition: var(--transition);
}

.navbar a:hover {
    color: var(--primary);
}

.navbar a.active {
    color: var(--primary);
    font-weight: 600;
}

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

.featured-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.featured-btn i {
    color: #ffd700;
}

.featured-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(31, 181, 162, 0.4);
}

.action-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-light);
    border: none;
    font-size: 1.3rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    background: var(--primary);
    color: white;
    transform: rotate(15deg);
}

.menu-toggle {
    display: none;
}

/* ===== HERO: COMING SOON - LIGHT MODE ===== */
.hero-coming {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
    background: var(--bg-light);
}

.hero-coming .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-coming::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(31, 181, 162, 0.06) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(31, 181, 162, 0.06) 0%, transparent 30%);
    z-index: 0;
}

.hero-coming .container {
    position: relative;
    z-index: 1;
}

.coming-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--text-white);
    padding: 0.4rem 1.6rem;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.hero-coming h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 7vw, 4.8rem);
    color: var(--text-dark);
    line-height: 1.1;
}

.hero-coming h1 span {
    color: var(--primary);
}

.hero-coming p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 90%;
    margin: 1.2rem 0 2rem;
}

.coming-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.coming-feature {
    background: var(--bg-card);
    backdrop-filter: blur(4px);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-dark);
    font-weight: 500;
    border: 1px solid var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.coming-feature i {
    font-size: 1.4rem;
    color: var(--primary);
}

/* right card - LIGHT MODE */
.coming-card {
    background: var(--bg-card);
    backdrop-filter: blur(8px);
    border-radius: var(--border-radius);
    padding: 2rem 2rem 2.5rem;
    border: 1px solid var(--primary-light);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.coming-card .big-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.coming-card h2 {
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
}

.coming-card .address {
    color: var(--text-muted);
    margin: 1rem 0 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.coming-card .address i {
    color: var(--accent);
    margin-right: 6px;
}

.notify-btn {
    background: var(--primary);
    border: none;
    color: white;
    padding: 0.9rem 2.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(31, 181, 162, 0.3);
}

.notify-btn:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-4px);
}

/* ===== HERO: COMING SOON - DARK THEME ===== */
.dark-theme .hero-coming {
    background: linear-gradient(145deg, #0f2e2a 0%, var(--primary-dark) 100%);
}

.dark-theme .hero-coming::before {
    background-image: radial-gradient(circle at 20% 30%, rgba(31, 181, 162, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(31, 181, 162, 0.15) 0%, transparent 30%);
}

.dark-theme .hero-coming h1 {
    color: white;
}

.dark-theme .hero-coming h1 span {
    color: var(--primary-light);
}

.dark-theme .hero-coming p {
    color: rgba(255, 255, 255, 0.85);
}

.dark-theme .coming-badge {
    background: var(--accent);
    color: #1a1a1a;
}

.dark-theme .coming-feature {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    border: none;
    color: white;
    box-shadow: none;
}

.dark-theme .coming-feature i {
    color: var(--primary-light);
}

.dark-theme .coming-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.dark-theme .coming-card .big-icon {
    color: var(--primary-light);
}

.dark-theme .coming-card h2 {
    color: white;
}

.dark-theme .coming-card .address {
    color: rgba(255, 255, 255, 0.7);
}

.dark-theme .notify-btn {
    background: var(--primary);
    color: white;
    box-shadow: 0 8px 20px rgba(31, 181, 162, 0.3);
}

.dark-theme .notify-btn:hover {
    background: var(--primary-light);
    color: #1a1a1a;
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.section-title {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
}

.section-title span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--primary-light);
    opacity: 0.3;
    z-index: -1;
}

.section-description {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0.5rem auto 0;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-download {
    background: var(--accent);
    color: var(--text-dark);
    border: 2px solid var(--accent);
}

.btn-download:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 179, 71, 0.3);
}

.menu-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* ===== MENU CATEGORIES ===== */
.menu-categories {
    padding: 4rem 0;
    background: var(--bg-card-alt);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.category-card {
    background: var(--bg-card);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(31, 181, 162, 0.1);
    display: block;
    cursor: pointer;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.category-card:hover::before {
    opacity: 0.08;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
    border-color: var(--primary);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.category-card:hover .category-icon {
    background: var(--primary);
    color: var(--text-white);
    transform: scale(1.1) rotateY(180deg);
}

.category-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    position: relative;
    z-index: 1;
    color: var(--text-dark);
    transition: var(--transition);
}

.category-card:hover h3 {
    color: var(--primary);
}

.category-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.category-count {
    display: inline-block;
    background: var(--primary-light);
    color: var(--text-dark);
    padding: 2px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 0.5rem;
    position: relative;
    z-index: 1;
}

/* Dark theme for categories */
.dark-theme .menu-categories {
    background: var(--bg-card);
}

.dark-theme .category-card {
    background: var(--bg-card-alt);
    border-color: #2a4a4a;
}

.dark-theme .category-card:hover {
    border-color: var(--primary);
}

.dark-theme .category-icon {
    background: #1a3a3a;
    color: var(--primary-light);
}

.dark-theme .category-card:hover .category-icon {
    background: var(--primary);
    color: var(--bg-light);
}

.dark-theme .category-count {
    background: #1a3a3a;
    color: var(--primary-light);
}

/* ===== POPULAR MENU ===== */
.popular-menu {
    padding: 4rem 0;
    background: var(--bg-light);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.menu-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
    display: block;
    cursor: pointer;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
    border-color: var(--primary);
}

.menu-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.menu-card:hover .menu-image img {
    transform: scale(1.1);
}

.menu-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--text-white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.menu-overlay span {
    color: var(--text-white);
    font-weight: 500;
    padding: 10px 25px;
    background: var(--primary);
    color: var(--text-white);
    border-radius: 50px;
    transform: translateY(20px);
    transition: var(--transition);
}

.menu-card:hover .menu-overlay {
    opacity: 1;
}

.menu-card:hover .menu-overlay span {
    transform: translateY(0);
}

.menu-content {
    padding: 1.5rem;
}

.menu-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.menu-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Dark theme for popular menu */
.dark-theme .popular-menu {
    background: var(--bg-card);
}

.dark-theme .menu-card {
    background: var(--bg-card-alt);
}

/* ===== FOOD STRIP ===== */
.food-strip {
    background: var(--bg-card);
    padding: 3rem 0;
    border-top: 1px solid var(--primary-light);
    border-bottom: 1px solid var(--primary-light);
}

.food-strip .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem 5rem;
}

.food-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-dark);
}

.food-item i {
    font-size: 2.2rem;
    color: var(--primary);
    transition: var(--transition);
}

.food-item:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--accent);
}

/* ===== MAP ===== */
.map-section {
    padding: 0;
    height: 380px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-card);
    padding: 50px 0 20px;
    border-top: 3px solid var(--primary);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

.footer h3 {
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.footer-contact p a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-contact p a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid var(--primary-light);
    color: var(--text-muted);
}

/* Dark Theme - Food Strip & Footer */
.dark-theme .food-strip {
    background: var(--bg-card);
}

.dark-theme .food-item {
    color: var(--text-dark);
}

.dark-theme .footer {
    background: var(--bg-card);
}

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

/* Tablet and smaller */
@media (max-width: 991px) {
    .hero-coming .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-coming p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .coming-features {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-card);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        text-align: center;
        transform: scaleY(0);
        transform-origin: top;
        transition: var(--transition);
        opacity: 0;
        z-index: 1000;
        border-bottom: 2px solid var(--primary);
    }

    .navbar.active {
        transform: scaleY(1);
        opacity: 1;
    }

    .food-strip .container {
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .coming-card {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-coming {
        min-height: auto;
        padding: 3rem 0;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .menu-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .menu-image {
        height: 180px;
    }
}

/* Small mobile - hide Cafe Momo text, show only icon */
@media (max-width: 500px) {
    .logo-text .momo {
        display: none;
    }

    .logo {
        gap: 0;
    }

    .logo-img {
        height: 38px;
    }

    .header-actions {
        gap: 6px;
    }

    .action-btn {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .featured-btn {
        padding: 5px 10px;
    }

    .featured-btn span {
        font-size: 0.65rem;
    }

    .featured-btn i {
        font-size: 0.75rem;
    }

    .coming-card {
        padding: 1.5rem;
    }

    .coming-card h2 {
        font-size: 1.8rem;
    }

    .hero-coming h1 {
        font-size: 2.5rem;
    }

    .hero-coming p {
        font-size: 1rem;
    }

    .coming-features {
        gap: 0.8rem;
    }

    .coming-feature {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }

    .coming-feature i {
        font-size: 1.1rem;
    }

    .notify-btn {
        padding: 0.7rem 1.8rem;
        font-size: 0.95rem;
    }

    .food-item {
        font-size: 1rem;
    }

    .food-item i {
        font-size: 1.6rem;
    }

    .food-strip .container {
        gap: 1rem 1.5rem;
    }

    .map-section {
        height: 250px;
    }

    .categories-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .category-card {
        padding: 1.5rem 1rem;
    }

    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .category-card h3 {
        font-size: 1rem;
    }

    .category-card p {
        font-size: 0.8rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-image {
        height: 200px;
    }

    .menu-buttons {
        flex-direction: column;
        align-items: center;
    }

    .menu-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Extra small mobile */
@media (max-width: 400px) {
    .header-actions .featured-btn span {
        display: none;
    }

    .header-actions .featured-btn {
        padding: 8px 12px;
    }

    .action-btn {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }

    .hero-coming h1 {
        font-size: 2rem;
    }

    .coming-card {
        padding: 1.2rem;
    }

    .coming-card h2 {
        font-size: 1.5rem;
    }

    .coming-card .address {
        font-size: 0.9rem;
    }

    .coming-feature {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }

    .coming-feature i {
        font-size: 0.9rem;
    }

    .notify-btn {
        padding: 0.6rem 1.4rem;
        font-size: 0.85rem;
    }

    .food-item {
        font-size: 0.85rem;
    }

    .food-item i {
        font-size: 1.3rem;
    }

    .footer-grid {
        gap: 1.5rem;
    }

    .categories-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .category-card {
        padding: 1rem 0.8rem;
    }

    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .category-card h3 {
        font-size: 0.85rem;
    }

    .category-card p {
        font-size: 0.7rem;
    }
}

/* Additional dark theme overrides */
.dark-theme .coming-badge {
    background: var(--accent);
    color: #1a1a1a;
}

.dark-theme .hero-coming .coming-badge i {
    color: #1a1a1a;
}