html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", sans-serif;
    background-color: #fdfdfd;
    color: #212529;
}

/* Navbar */
.site-navbar {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e5e5e5;
}

.site-navbar .navbar-brand {
    font-weight: 500;
    letter-spacing: 0.02em;
}

.desktop-nav {
    position: relative;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.desktop-nav .navbar-brand {
    z-index: 2;
}

.desktop-nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
}

.desktop-nav-center a,
.desktop-nav-right a {
    text-decoration: none;
    color: #212529;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.desktop-nav-right {
    z-index: 2;
}

.mobile-nav .nav-link {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.95rem;
    color: #212529;
}

.mobile-nav .nav-link:hover,
.mobile-nav .nav-link:focus {
    color: #212529;
}

/* Shared buttons / badges */
.google-play-badge img {
    height: 58px;
}

/* Shared footer */
footer {
    background: #f8f9fa;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: #6c757d;
    border-top: 1px solid #e5e5e5;
}

footer .list-inline {
    margin-bottom: 0.75rem;
}

footer .list-inline-item {
    margin: 0 0.4rem;
}

.footer-meta {
    margin-bottom: 5px;
}

.footer-meta:last-child {
    margin-bottom: 0;
}

/* Shared utility */
.section-title {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .desktop-nav {
        display: none;
    }
}

@media (min-width: 992px) {
    .mobile-nav-wrapper {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .google-play-badge img {
        height: 52px;
    }
}