:root {
    --color-black: #000000;
    --color-dark-bg: #0f0f0f; /* Used for search input background */
    --color-dark-card: #141414; /* Used for app badge background */
    --color-text-primary: #ffffff;
    --color-text-secondary: #808080;
    --color-accent: #67ebd3; /* Teal accent color */
    --color-border: #242424;
    --color-placeholder: #666666;
    --desktop-padding-left: 250px;
}

/* ... (dot-group and shield styles as previously provided) ... */
.safety-dot-group {
    position: absolute;
    left: 209.48px;
    top: 0px;
}
.dot-bg {
    width: 15.6px;
    height: 15.6px;
    background: rgba(103, 235, 211, 0.14);
    border-radius: 50%;
}
.dot-fg {
    position: absolute;
    width: 8.17px;
    height: 8.17px;
    left: 3.715px;
    top: 3.715px;
    background: var(--color-accent);
    border-radius: 50%;
}
.safety-shield-badge {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4.55px;
    position: absolute;
    width: 20px;
    height: 20px;
    left: 146px;
    top: 64px;
    background: rgba(255, 255, 255, 0.02);
    border: 0.45px solid var(--color-border);
    backdrop-filter: blur(2.27px);
    border-radius: 10px;
}
.shield-icon {
    width: 10.91px;
    height: 10.91px;
}

/* --- Text Area Styles --- */
.card-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    width: 100%;
    align-self: stretch;
    flex-shrink: 0;
    /* Push text group to the bottom of the Card 3 wrapper */
    margin-top: auto;
}

.card-title {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
    margin: 0;
}

.card-description {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: -0.02em;
    color: var(--color-text-secondary);
    margin: 0;
}
/* Hide hamburger on desktop (width >= 768px) */
@media (min-width: 768px) {
    .navbar-mobile-button {
        display: none;
    }
}

/* Hide desktop links and login on mobile (width < 768px) */
@media (max-width: 767px) {
    .navbar-links,
    .navbar-login {
        display: none;
    }

    .navbar-mobile-menu {
        display: flex; /* Only if $mobileMenuOpen is true via Livewire */
        flex-direction: column;
    }
}
