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

:root {
    --header-height: 70px;
    --header-height-mobile: 80px;
}

body {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #121212; /* Main background color */
    color: #f5f5f5;
    position: relative;
    background-image: radial-gradient(circle, rgba(7,53,72,0.5) 1px, transparent 1px);
    background-size: 20px 20px; /* Adjust spacing between dots */
    background-position: center;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(7,53,72,0.5) 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: center;
    pointer-events: none;
    z-index: 0;
}

@media screen and (min-width: 1024px) {
    body {
        justify-content: center;
        align-items: center;
    }
}

/* Header Section */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background-color: rgba(18, 18, 18, 0.95); /* Semi-transparent for effect */
    z-index: 1000; /* Keep above other content */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

/* Left Section (Logo and Nav Links) */
.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 15px;
}

.hamburger-menu span {
    width: 100%;
    height: 2px;
    background-color: #f5f5f5;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.logo {
    height: 50px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    cursor: pointer;
}

.header-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f5f5f5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 15px;
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: rgba(18, 18, 18, 0.98);
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        transform: translateY(-10px);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .nav-links.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links a {
        padding: 15px 0;
        width: 100%;
        text-align: center;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .content-container {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .left-side {
        max-width: 100%;
    }

    .right-side {
        max-width: 100%;
    }

    .placeholder-img {
        margin-top: 40px;
    }
}

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    color: #f5f5f5;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active {
    /*
     * Highlight the current page's nav link in cyan (matches privacy.php / faq.php / store.php
     * behavior). The selector pairs hover and `.active` so they share the same accent color.
     */
    color: #00a7e6;
}

/* Right Section (Login/Logout) */
.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ----------------------------------------------------------------------
   Cart icon + badge in the header-right (index.php / features.php).
   Mirrors the styling in css/store.css and css/navbar.css so the pages
   that use index.css get the same shopping-cart affordance the storefront
   already provides.
   ---------------------------------------------------------------------- */
.cart-icon {
    position: relative;
    /*
     * Match store.css's 20px right margin so the cart sits with breathing
     * room between Discord/Dashboard buttons instead of crowding the
     * login pill (which is what was happening on features.php / index.php
     * before this rule existed).
     */
    margin-right: 20px;
    color: #f5f5f5;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cart-icon:hover,
.cart-icon.active {
    color: #00a7e6;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #00a7e6;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
    line-height: 1.2;
}

.login-button {
    text-decoration: none;
    color: #fff;
    background-color: #00a7e6;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.login-button:hover {
    background-color: #0090cc;
    transform: scale(1.05);
}

#logout-button {
    text-decoration: none;
    color: #fff;
    background-color: #00a7e6;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

#logout-button:hover {
    background-color: #0090cc;
    transform: scale(1.05);
}

/* Main Content */
main {
    padding-top: var(--header-height);
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* Content Section */
.content-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    max-width: 1400px;
    margin: 0 100px;
    gap: 40px;
}

/* Left Side (Text) */
.left-side {
    flex: 1;
    max-width: 50%;
    margin-top: 125px;
}

/* Right Side (Image) */
.right-side {
    flex: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Placeholder Image Styling */
.placeholder-img {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin-top: 110px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 80px;
}

/* Title Styling */
.main-title {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0;
    background: linear-gradient(to right, 
        #007ba7, /* Cerulean blue */
        #00a5cf, /* Lighter aqua blue */
        #56cfe1, /* Sky blue */
        #007ba7, /* Loop back to main Cerulean blue */
        #00a5cf,
        #56cfe1
    );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: gradient-flow 5s linear infinite alternate;
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* Subheading Styling */
.subheading {
    font-size: 3rem;
    font-weight: 700;
    color: #f5f5f5;
    margin: 0;
}

/* Description Text Styling */
.description {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 15px;
    color: #f5f5f5;
    max-width: 500px;
}

/* Trustpilot container and custom badge styles */
.trustpilot-container {
    margin-top: 25px;
    margin-bottom: 15px;
    max-width: 320px;
    position: relative;
}

.trustpilot-badge {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 16px;
    border-radius: 12px;
    /* Keep the badge minimal with a neutral surface */
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(17, 17, 17, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.28);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.trustpilot-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.38);
    border-color: rgba(255, 255, 255, 0.35);
}

.trustpilot-badge:focus-visible {
    outline: 2px solid #56cfe1;
    outline-offset: 3px;
}

/* Brand line emphasizes the review platform */
.trustpilot-brand {
    font-size: 0.9rem;
    font-weight: 700;
    color: #dff8ff;
    letter-spacing: 0.02em;
}

/* Stars provide a clear visual 5-star signal */
.trustpilot-stars {
    color: #00d57a;
    font-size: 1.15rem;
    letter-spacing: 0.08em;
    line-height: 1;
}

/* Supporting line adds social proof context */
.trustpilot-rating {
    font-size: 0.82rem;
    color: #b8d8e3;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .trustpilot-container {
        margin: 20px auto 15px auto;
        max-width: 290px;
    }

    .trustpilot-badge {
        width: 100%;
        align-items: center;
        text-align: center;
    }
}

/* Info Boxes Container */
.info-boxes-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .content-container {
        flex-direction: column;
        align-items: center;
        margin: 0 40px;
    }

    .left-side {
        max-width: 100%;
        text-align: center;
        margin-bottom: 40px;
    }

    .right-side {
        max-width: 800px;
        width: 100%;
    }

    .placeholder-img {
        margin-top: 40px;
        margin-bottom: 40px;
    }

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

@media (max-width: 768px) {
    .content-container {
        margin: 0 20px;
        padding: 20px;
    }

    .placeholder-img {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .hamburger-menu {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: rgba(18, 18, 18, 0.98);
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        transform: translateY(-10px);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .nav-links.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links a {
        padding: 15px 0;
        width: 100%;
        text-align: center;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .info-boxes-container {
        grid-template-columns: 1fr;
    }

    .header-right {
        gap: 5px;
    }
}

/* Gradient Background Canvas */
#gradientCanvas {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Places canvas behind other elements */
}

/* Accessibility Enhancements */
a:focus,
button:focus {
    outline: 2px solid #007ba7;
    outline-offset: 2px;
}

.info-box {
    background: #000;
    color: #fff;
    border: 2px solid #555;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.info-icon {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}

.info-box h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
    text-align: center;
}

.info-box p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.5;
    text-align: center;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.feature-item {
    background-color: #333;
    border: 1px solid #666;
    border-radius: 20px;
    padding: 5px 10px;
    font-size: 0.9rem;
    color: #fff;
    display: flex;
    align-items: center;
}

.feature-item svg {
    margin-right: 5px;
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.feature-item:hover {
    background-color: #444;
    border-color: #999;
}

.feature-item:focus {
    outline: none;
    border-color: #00f;
}

.learn-more-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px; /* Adds some spacing above the footer */
}

.learn-more-button {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(90deg, #555, #666, #555); /* Muted gradient */
    border: 2px solid #444;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-position 0.3s ease;
    background-size: 200% 200%; /* Animate gradient */
    background-position: 0% 50%;
}

.learn-more-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    background-position: 100% 50%;
}

.learn-more-button:focus {
    outline: none;
    border-color: #888;
}

.learn-more-button:active {
    transform: translateY(2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-footer {
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 50px;
    padding: 20px 0;
    background-color: #111; /* Optional background to make it stand out */
    border-top: 1px solid #333;
}

.page-container {
    margin: 0 100px; /* Increased side margins */
}

@media (max-width: 1200px) {
    .page-container {
        margin: 0 60px;
    }
}

@media (max-width: 768px) {
    .page-container {
        margin: 0 20px;
    }
}

@media (max-width: 480px) {
    .page-container {
        margin: 0 10px;
    }
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    box-sizing: border-box;
   overflow: visible

}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure the body takes the full height of the viewport */
}

footer {
    text-align: center;
    margin-top: 20px; /* Adds space above the footer */
    padding: 10px 0;
    background-color: #000; /* Optional: give it a background */
    color: #fff;
}

/* Style the scroll-down arrow */
.scroll-arrow {
    position: fixed; /* Fixed positioning to stay at the bottom */
    bottom: 20px; /* 20px from the bottom */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Adjust to exactly center the arrow */
    font-size: 2rem;
    color: #fff;
    animation: bounceArrow 1.5s infinite;
    cursor: pointer;
    z-index: 10; /* Ensure it appears above other content */
}

#scroll-arrow {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

@keyframes bounceArrow {
    0% { transform: translateX(-50%); }
    50% { transform: translateX(-50%) translateY(-10%); }
    100% { transform: translateX(-50%); }
}

.button-group {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    align-items: center;
}

.get-started-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 15px 30px;
    background-color: #00b3ff;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    /*
     * Keep button labels on a single line. The hero CTAs share a flex row
     * with a 20px gap, so a label longer than `min-width: 180px` (e.g.
     * "Buy Accounts") was wrapping to two lines inside the same pill. With
     * `nowrap` the button auto-grows horizontally instead, and the row of
     * pills stays the same height regardless of label length.
     */
    white-space: nowrap;
}

.get-started-button:hover {
    background-color: #0080cc;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 179, 255, 0.4);
}

.buy-coins-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #FFAA00, #FFD700, #FFA500);
    background-size: 200% 200%;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 0 10px rgba(255, 170, 0, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.buy-coins-button:hover {
    background-position: 100% 100%;
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 170, 0, 0.5);
}

/*
 * Buy Accounts CTA — same visual rhythm as .buy-coins-button (pill shape,
 * 180px min-width, 15/30px padding, 1.2rem bold label, hover scale + glow,
 * animated gradient that shifts on hover via background-position) but tinted
 * emerald so the three CTAs read as a clear color trio:
 *
 *     Get Started  -> solid cyan  (free, low-friction action)
 *     Buy Coins    -> gold gradient (currency / coins)
 *     Buy Accounts -> emerald gradient (Minecraft accounts / value)
 *
 * The 200% 200% background-size + shifted hover position is what gives the
 * gradient its subtle "wipe" feel on rollover; the glow color is matched to
 * the gradient's mid stop so the box-shadow looks like the button is lit up
 * by its own surface color.
 */
.buy-accounts-button {
    /*
     * `position: relative` so the absolutely-positioned .buy-accounts-badge
     * "NEW" pill anchors to this button's top-right corner instead of
     * escaping to the nearest positioned ancestor.
     */
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #047857, #10b981, #34d399);
    background-size: 200% 200%;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    /*
     * Subtle inner highlight along the top edge so the emerald reads as a
     * glossy gem-like surface rather than a flat fill (matches the polished
     * feel of the gold Buy Coins button under bright light).
     */
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.buy-accounts-button:hover {
    background-position: 100% 100%;
    transform: scale(1.05);
    /*
     * Layered shadow: an emerald glow for the colored halo, plus a small
     * dark drop shadow underneath so the button lifts off the background
     * cleanly on the dark gradient hero canvas.
     */
    box-shadow:
        0 0 25px rgba(16, 185, 129, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/*
 * "NEW" badge anchored to the top-right corner of the Buy Accounts button.
 * Floated outside the button via translate() so the corner of the pill peeks
 * out, similar to how mobile app icons render a small notification dot.
 *
 * Color choice: gold (#fbbf24 / #f59e0b) contrasts strongly against the
 * emerald button (warm vs. cool) and matches the existing gold Buy Coins
 * CTA's accent family — so the badge feels at home in the hero's palette
 * without competing with the cerulean brand color used elsewhere.
 *
 * `pointer-events: none` is important: without it, hovering directly over
 * the badge would not trigger the button's :hover state because the badge
 * would be the actual hover target above the link.
 */
.buy-accounts-badge {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(35%, -45%);
    padding: 3px 8px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1a1a1a;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    line-height: 1;
    pointer-events: none;
    box-shadow:
        0 0 0 2px rgba(0, 0, 0, 0.35),
        0 0 10px rgba(251, 191, 36, 0.55);
    animation: buyAccountsBadgePulse 1.8s ease-in-out infinite;
}

/*
 * Gentle scale + glow pulse so the badge feels alive without being
 * distracting. Keeps the same translate() offset so the badge stays
 * pinned to the button corner while it pulses.
 */
@keyframes buyAccountsBadgePulse {
    0%, 100% {
        transform: translate(35%, -45%) scale(1);
        box-shadow:
            0 0 0 2px rgba(0, 0, 0, 0.35),
            0 0 10px rgba(251, 191, 36, 0.55);
    }
    50% {
        transform: translate(35%, -45%) scale(1.1);
        box-shadow:
            0 0 0 2px rgba(0, 0, 0, 0.35),
            0 0 18px rgba(251, 191, 36, 0.9);
    }
}

/*
 * Respect users who've requested reduced motion (OS-level setting). The
 * badge still appears, just statically — meets WCAG 2.3.3 motion guidance.
 */
@media (prefers-reduced-motion: reduce) {
    .buy-accounts-badge {
        animation: none;
    }
}

@media (max-width: 768px) {
    .button-group {
        flex-direction: column;
        gap: 15px;
    }

    .get-started-button,
    .buy-coins-button,
    .buy-accounts-button {
        width: 100%;
        min-width: unset;
    }
}

.animated-gradient {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, 
        #007ba7,
        #00a5cf,
        #56cfe1,
        #007ba7,
        #00a5cf,
        #56cfe1
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradient-flow 8s ease infinite;
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

@media (max-width: 768px) {
    .animated-gradient {
        font-size: 4.5rem;
    }
}

@media (max-width: 480px) {
    .animated-gradient {
        font-size: 4.5rem;
    }
}

/* Navigation Buttons */
.nav-button {
    color: #fff;
    background-color: transparent;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: none; /* Hidden by default on desktop */
}

.nav-button:hover {
    background-color: rgba(0, 167, 230, 0.1);
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: rgba(18, 18, 18, 0.98);
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        transform: translateY(-10px);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .nav-links.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links a {
        padding: 15px 0;
        width: 100%;
        text-align: center;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-button {
        display: block;
        width: 100%;
        text-align: center;
        margin: 5px 0;
        background-color: #00a7e6;
    }

    .nav-button:hover {
        background-color: #0090cc;
    }

    .desktop-only {
        display: none;
    }
}
