/* ===== CSS VARIABLES ===== */
:root {
    --primary: #6ee7b7;
    --primary-dark: #34d399;
    --bg: #0a0f1e;
    --bg-card: #111827;
    --bg-card-hover: #1a2236;
    --border: rgba(255, 255, 255, 0.07);
    --border-hover: rgba(110, 231, 183, 0.3);
    --text: #e5e7eb;
    --text-muted: #6b7280;
    --badge-bg: rgba(255, 255, 255, 0.06);
    --badge-text: #9ca3af;
    --region-badge-bg: rgba(110, 231, 183, 0.12);
    --region-badge-text: var(--primary);
    --nav-bg: rgba(10, 15, 30, 0.85);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 8px 40px rgba(110, 231, 183, 0.12);
    --modal-bg: #131a2e;
    --input-bg: #0d1323;
    --input-border: rgba(255, 255, 255, 0.1);
    --input-border-focus: var(--primary);
}

[data-theme="light"] {
    --bg: #f0f4f8;
    --bg-card: #ffffff;
    --bg-card-hover: #f8faff;
    --border: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(52, 211, 153, 0.4);
    --text: #111827;
    --text-muted: #6b7280;
    --badge-bg: rgba(0, 0, 0, 0.05);
    --badge-text: #374151;
    --region-badge-bg: rgba(52, 211, 153, 0.12);
    --nav-bg: rgba(240, 244, 248, 0.9);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 40px rgba(52, 211, 153, 0.18);
    --modal-bg: #ffffff;
    --input-bg: #f9fafb;
    --input-border: rgba(0, 0, 0, 0.12);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    transition: background 0.3s, color 0.3s;
    overflow-x: hidden;
}

/* ===== BACKGROUND BLOBS ===== */
.bg-blobs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #6ee7b7, #3b82f6);
    top: -200px;
    left: -200px;
    animation: blobDrift 18s ease-in-out infinite alternate;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #8b5cf6, #6ee7b7);
    bottom: -150px;
    right: -150px;
    animation: blobDrift 22s ease-in-out infinite alternate-reverse;
}

@keyframes blobDrift {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(60px, 40px) scale(1.1);
    }
}

/* ===== NAV ===== */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: var(--nav-bg);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.logo {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    color: var(--primary);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-link-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
    font-family: inherit;
}

.nav-link-btn:hover {
    color: var(--primary);
}

.theme-toggle {

    background: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.4rem 0.6rem;
    cursor: pointer;
    font-size: 1rem;
    transition: border-color 0.2s, background 0.2s;
}

.theme-toggle:hover {
    border-color: var(--primary);
    background: var(--bg-card);
}

.submit-nav-btn {
    background: var(--primary);
    color: #0a0f1e;
    border: none;
    border-radius: 8px;
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s, transform 0.2s;
}

.submit-nav-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 5rem 2rem 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

/* Hero Stats */
.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--nav-bg);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 24px;
    background: var(--border);
}


/* ===== SEARCH ===== */
.search-container {
    position: relative;
    max-width: 560px;
    margin: 0 auto 2rem;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.search-bar {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 3rem;
    background: var(--bg-card);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.search-bar:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(110, 231, 183, 0.12);
}

.search-bar::placeholder {
    color: var(--text-muted);
}

/* ===== FILTERS & SORT ===== */
.filter-controls {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    margin-top: 1.5rem;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.sort-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--nav-bg);
    padding: 0.4rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.sort-container label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

.sort-select {
    background: none;
    border: none;
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    outline: none;
}

.sort-select option {
    background: var(--modal-bg);
    color: var(--text);
}


.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-left: 0.5rem;
    border-left: 1px solid var(--border);
}

.filter-btn {
    padding: 0.4rem 1rem;
    border: 1px solid var(--border);
    border-radius: 99px;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--text);
}

.filter-btn.active {
    background: var(--primary);
    color: #0a0f1e;
    border-color: var(--primary);
    font-weight: 600;
}

/* ===== GRID ===== */
main {
    position: relative;
    z-index: 1;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.job-boards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
}

/* ===== CARDS ===== */
.board-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s, background 0.22s;
    animation: fadeUp 0.35s ease both;
}

.board-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-hover);
    background: var(--bg-card-hover);
}

.board-card.submitted-card {
    border-color: rgba(110, 231, 183, 0.2);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.icon-wrapper {
    width: 40px;
    height: 40px;
    background: var(--badge-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.card-header h3 {
    font-size: 1rem;
    font-weight: 700;
    flex: 1;
}

.upvote-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.7rem;
    background: var(--badge-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.2s;
}

.upvote-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: scale(1.05);
}

.upvote-btn.voted {
    background: rgba(110, 231, 183, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.upvote-btn.voted svg {
    fill: var(--primary);
}

.community-tag {

    font-size: 0.7rem;
    font-weight: 600;
    background: rgba(110, 231, 183, 0.15);
    color: var(--primary);
    border: 1px solid rgba(110, 231, 183, 0.25);
    border-radius: 99px;
    padding: 0.15rem 0.5rem;
}

.board-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    flex: 1;
}

.badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.badge {
    font-size: 0.72rem;
    font-weight: 500;
    background: var(--badge-bg);
    color: var(--badge-text);
    border-radius: 99px;
    padding: 0.2rem 0.65rem;
}

.region-badge {
    background: var(--region-badge-bg);
    color: var(--region-badge-text);
}

.visit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    align-self: flex-start;
}

.visit-btn:hover {
    border-color: var(--primary);
    background: rgba(110, 231, 183, 0.08);
    color: var(--primary);
}

/* ===== SUBMIT BANNER ===== */
.submit-banner {
    position: relative;
    z-index: 1;
    margin: 1rem 2rem 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.submit-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    background: linear-gradient(135deg, rgba(110, 231, 183, 0.08), rgba(139, 92, 246, 0.08));
    border: 1px solid rgba(110, 231, 183, 0.2);
    border-radius: 16px;
    padding: 2rem 2.5rem;
}

.submit-banner-text h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.submit-banner-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.submit-cta-btn {
    background: var(--primary);
    color: #0a0f1e;
    border: none;
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.submit-cta-btn:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--modal-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    transform: translateY(20px);
    transition: transform 0.25s;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.modal-header h2 {
    font-size: 1.2rem;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.2s, border-color 0.2s;
}

.modal-close:hover {
    color: var(--text);
    border-color: var(--primary);
}

/* Form */
form#submitForm {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.required {
    color: var(--primary);
}

input[type="text"],
input[type="url"],
textarea,
select {
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 8px;
    color: var(--text);
    padding: 0.65rem 0.85rem;
    font-size: 0.9rem;
    outline: none;
    width: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--input-border-focus);
    box-shadow: 0 0 0 3px rgba(110, 231, 183, 0.1);
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
}

textarea {
    resize: vertical;
}

select {
    appearance: none;
    cursor: pointer;
}

select option {
    background: var(--modal-bg);
}

.modal-submit-btn {
    background: var(--primary);
    color: #0a0f1e;
    border: none;
    border-radius: 10px;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: opacity 0.2s, transform 0.2s;
}

.modal-submit-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

/* Success state */
.submit-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 2rem 0;
}

.success-icon {
    font-size: 3rem;
}

.submit-success h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

.submit-success p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== FOOTER ===== */
footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2.5rem 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.875rem;
}

.filter-btn.favorite-filter:hover {
    border-color: #fbbf24;
    color: #fbbf24;
}

.filter-btn.favorite-filter.active {
    background: #fbbf24;
    border-color: #fbbf24;
    color: #000;
}

/* Tips Modal Specifics */
.tips-modal {
    max-width: 600px;
}

.tips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.tip-item {
    background: var(--badge-bg);
    padding: 1.2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.tip-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.tip-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== FEATURED SECTION ===== */
.featured-section {
    margin-bottom: 4rem;
}

.section-header {
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.featured-card {
    background: linear-gradient(135deg, var(--bg-card), rgba(110, 231, 183, 0.03));
    border-color: rgba(110, 231, 183, 0.2);
    position: relative;
    overflow: hidden;
}

.featured-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary), transparent);
}

.featured-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 40px -10px rgba(110, 231, 183, 0.2);
}

.featured-badge {
    background: var(--primary);
    color: #0a0f1e;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    text-transform: uppercase;
}

/* ===== PARTNERS SECTION ===== */

.partners-section {
    margin-bottom: 3rem;
}

.section-tag {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-tag::after {
    content: "";
    height: 1px;
    flex: 1;
    background: linear-gradient(to right, var(--border), transparent);
}

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

.partner-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, var(--bg-card), rgba(110, 231, 183, 0.05));
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.partner-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(110, 231, 183, 0.15);
}

.partner-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    color: #0a0f1e;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.2rem 0.8rem;
    border-bottom-left-radius: 12px;
    text-transform: uppercase;
}

.partner-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.partner-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.partner-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.partner-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.partner-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== FOOTER REFINEMENT ===== */
footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.contact-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-divider {
    opacity: 0.3;
}

.bmc-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #ffdd00;
    color: #000;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.bmc-link.coming-soon {
    background: var(--badge-bg);
    color: var(--text-muted);
    cursor: help;
    border: 1px solid var(--border);
}

.bmc-link:not(.coming-soon):hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 221, 0, 0.3);
}

@media (max-width: 640px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-left {
        text-align: center;
        align-items: center;
    }

    .footer-contact {
        flex-direction: column;
        gap: 0.4rem;
    }

    .contact-divider {
        display: none;
    }
}


@media (max-width: 640px) {
    .tips-grid {
        grid-template-columns: 1fr;
    }
}

nav {
    padding: 1rem;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.nav-right {
    gap: 0.5rem;
}

.submit-nav-btn {
    font-size: 0.78rem;
    padding: 0.4rem 0.7rem;
}

.hero {
    padding: 3rem 1rem 2rem;
}

.filter-group {
    border-left: none;
}

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

main {
    padding: 1.5rem 1rem;
}

.form-row {
    grid-template-columns: 1fr;
}

.submit-banner {
    margin: 1rem 1rem 2rem;
}

.submit-banner-content {
    flex-direction: column;
    text-align: center;
}

/* ===== ANALYTICS & LIVE ACTIVITY ===== */
.live-activity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    animation: fadeIn 1s ease-out;
}

.activity-divider {
    opacity: 0.3;
}

#liveStatus {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--text);
}

.live-pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
    box-shadow: 0 0 0 0 rgba(110, 231, 183, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(110, 231, 183, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(110, 231, 183, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(110, 231, 183, 0); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .hero-stats {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem !important;
        border-radius: 24px !important;
        padding: 1.5rem !important;
    }
    
    .stat-divider {
        display: none !important;
    }
    
    .live-activity {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: -1rem;
    }
    
    .activity-divider {
        display: none;
    }
}