/* ========== BASE ========== */
body { font-family: 'Inter', sans-serif; }

/* ========== GRADIENT TEXT ========== */
.gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== NOTIFICATIONS ========== */
.notification-modal {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    animation: slideDown 0.3s ease-out;
    width: 90%;
    max-width: 600px;
}
@keyframes slideDown {
    from { top: -100px; opacity: 0; }
    to { top: 20px; opacity: 1; }
}

/* ========== LOGO ========== */
.logo-img { height: 28px; width: auto; object-fit: contain; cursor: pointer; }
@media (min-width: 640px) { .logo-img { height: 40px; } }
.logo-link { cursor: pointer; }
.logo-text { font-size: 1.25rem !important; }
@media (min-width: 640px) { .logo-text { font-size: 1.5rem !important; } }

/* ========== NAVIGATION ========== */
.nav-btn { padding: 0.25rem 0.75rem !important; font-size: 0.75rem !important; }
@media (min-width: 640px) { .nav-btn { padding: 0.5rem 1rem !important; font-size: 0.875rem !important; } }

/* ========== HERO ========== */
.hero-section {
    position: relative;
    padding-top: 6rem;
    padding-bottom: 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #1e293b 100%);
}
@media (min-width: 640px) { .hero-section { padding-top: 8rem; padding-bottom: 5rem; } }
@media (min-width: 1024px) { .hero-section { padding-top: 12rem; padding-bottom: 8rem; } }
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b82f6' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}
.hero-title { font-size: 2.25rem; font-weight: 800; letter-spacing: -0.025em; margin-bottom: 1rem; line-height: 1.1; color: white; }
@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 768px) { .hero-title { font-size: 4.5rem; } }
.hero-subtitle { font-size: 1rem; color: #cbd5e1; margin-bottom: 1.5rem; max-width: 42rem; margin-left: auto; margin-right: auto; line-height: 1.6; }
@media (min-width: 640px) { .hero-subtitle { font-size: 1.25rem; } }

/* ========== TRUSTED BADGE ========== */
.trusted-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(30, 64, 175, 0.4);
    border: 1px solid rgba(29, 78, 216, 0.5);
    border-radius: 9999px;
    padding: 0.25rem 0.75rem;
    margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .trusted-badge { padding: 0.5rem 1rem; margin-bottom: 2rem; } }

/* ========== STATUS BAR ========== */
.status-bar-container { display: flex; justify-content: center; margin-bottom: 2.5rem; }
.status-bar {
    background: rgba(51, 65, 85, 0.8);
    backdrop-filter: blur(12px);
    padding: 0.5rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid #475569;
}
@media (min-width: 640px) { .status-bar { padding: 0.75rem 1.25rem; } }
.status-content { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
@media (min-width: 640px) { .status-content { flex-direction: row; gap: 0.75rem; } }
.status-indicator { display: flex; align-items: center; gap: 0.5rem; }
.status-divider { border-left: 1px solid #64748b; height: 1rem; display: none; }
@media (min-width: 640px) { .status-divider { display: block; } }
.status-info { display: flex; align-items: center; gap: 0.25rem; }
@media (min-width: 640px) { .status-info { gap: 0.5rem; } }
.progress-bar-container { margin-top: 0.5rem; width: 100%; background: #475569; border-radius: 9999px; height: 0.25rem; overflow: hidden; }
.progress-bar { height: 0.25rem; border-radius: 9999px; transition: all 0.5s; }

/* ========== CTA BUTTONS ========== */
.cta-buttons { display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; align-items: center; width: 100%; }
@media (min-width: 640px) { .cta-buttons { flex-direction: row; gap: 1rem; } }
.cta-primary {
    background: #2563eb;
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}
.cta-primary:hover { background: #1d4ed8; transform: translateY(-2px); box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.4); }
@media (min-width: 640px) { .cta-primary { padding: 1rem 2rem; font-size: 1.125rem; width: auto; } }
.cta-secondary {
    background: #334155;
    border: 2px solid #2563eb;
    color: #93c5fd;
    padding: 0.75rem 1.25rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}
.cta-secondary:hover { border-color: #3b82f6; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3); }
@media (min-width: 640px) { .cta-secondary { padding: 1rem 2rem; font-size: 1.125rem; width: auto; } }
.secure-badge { font-size: 0.75rem; color: #94a3b8; margin-top: 0.75rem; display: flex; align-items: center; font-weight: 500; }
@media (min-width: 640px) { .secure-badge { font-size: 0.875rem; margin-top: 1rem; } }

/* ========== G2G BADGE ========== */
.g2g-badge {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(51, 65, 85, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(194, 65, 12, 0.3);
    border-radius: 9999px;
    padding: 0.25rem 0.75rem;
}
@media (min-width: 640px) { .g2g-badge { padding: 0.5rem 1rem; margin-top: 2rem; } }

/* ========== HERO GLOW ========== */
.hero-glow { position: absolute; border-radius: 50%; filter: blur(64px); animation: pulse 2s infinite; }
.hero-glow-left { top: 25%; left: 2.5rem; width: 18rem; height: 18rem; background: rgba(37, 99, 235, 0.1); }
.hero-glow-right { bottom: 25%; right: 2.5rem; width: 24rem; height: 24rem; background: rgba(99, 102, 241, 0.1); animation-delay: 1s; }

/* ========== SUPPLIERS SECTION ========== */
.section-suppliers { padding: 4rem 0; position: relative; overflow: hidden; background: #1e293b; }
@media (min-width: 640px) { .section-suppliers { padding: 5rem 0; } }
.suppliers-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(99, 102, 241, 0.05)); }
.suppliers-card {
    background: rgba(51, 65, 85, 0.8);
    backdrop-filter: blur(24px);
    border: 1px solid #475569;
    border-radius: 1.5rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}
@media (min-width: 768px) { .suppliers-card { padding: 3rem; } }
.suppliers-glow { position: absolute; top: 0; right: 0; width: 16rem; height: 16rem; background: rgba(59, 130, 246, 0.1); border-radius: 50%; filter: blur(64px); transform: translate(50%, -50%); }
.suppliers-icon { display: inline-flex; align-items: center; justify-content: center; width: 5rem; height: 5rem; background: rgba(30, 64, 175, 0.4); border-radius: 50%; margin-bottom: 1.5rem; }
.suppliers-features { display: grid; grid-template-columns: 1fr; gap: 1rem; max-width: 42rem; margin: 0 auto 1.5rem; text-align: left; }
@media (min-width: 768px) { .suppliers-features { grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; } }
.feature-item { display: flex; align-items: flex-start; gap: 0.75rem; background: rgba(71, 85, 105, 0.5); padding: 0.75rem; border-radius: 0.75rem; border: 1px solid #64748b; }
@media (min-width: 640px) { .feature-item { padding: 1rem; } }
.feature-icon { width: 1.5rem; height: 1.5rem; color: #60a5fa; flex-shrink: 0; margin-top: 0.125rem; }
.suppliers-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #2563eb;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}
.suppliers-cta:hover { background: #1d4ed8; transform: translateY(-2px); }

/* ========== G2G SECTION ========== */
.g2g-section { padding: 3rem 0; background: linear-gradient(180deg, #1e293b, #334155); border-top: 1px solid #475569; border-bottom: 1px solid #475569; }
@media (min-width: 640px) { .g2g-section { padding: 4rem 0; } }
.g2g-card {
    background: #334155;
    border: 1px solid rgba(194, 65, 12, 0.3);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    transition: border-color 0.5s;
}
.g2g-card:hover { border-color: rgba(234, 88, 12, 0.6); }
@media (min-width: 768px) { .g2g-card { padding: 3rem; } }
.g2g-card-glow { position: absolute; width: 16rem; height: 16rem; border-radius: 50%; filter: blur(64px); }
.g2g-card-glow-right { top: 0; right: 0; background: rgba(234, 88, 12, 0.1); transform: translate(50%, -50%); }
.g2g-card-glow-left { bottom: 0; left: 0; background: rgba(37, 99, 235, 0.1); transform: translate(-50%, 50%); }
.g2g-card-content { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1.5rem; position: relative; z-index: 10; }
@media (min-width: 1024px) { .g2g-card-content { flex-direction: row; gap: 2rem; } }
.g2g-info { display: flex; align-items: center; gap: 1rem; }
@media (min-width: 640px) { .g2g-info { gap: 1.5rem; } }
.g2g-icon {
    width: 5rem; height: 5rem;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
    flex-shrink: 0;
    position: relative;
}
.g2g-icon-bg { position: absolute; inset: 0; background: rgba(255, 255, 255, 0.2); border-radius: 1rem; backdrop-filter: blur(4px); }
.g2g-badges { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.g2g-seller-badge { background: linear-gradient(90deg, #f97316, #ea580c); color: white; font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: 9999px; }
.online-badge { display: flex; align-items: center; gap: 0.25rem; }
.g2g-stats { display: flex; align-items: center; gap: 1rem; margin-top: 1rem; }
@media (min-width: 640px) { .g2g-stats { gap: 2rem; margin-top: 1.5rem; } }
.stat { display: flex; flex-direction: column; }
.stat-value { display: flex; align-items: center; gap: 0.25rem; font-size: 1.5rem; font-weight: 700; color: white; }
.stat-label { font-size: 0.75rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.stat-divider { width: 1px; height: 2.5rem; background: #475569; }
.g2g-profile-btn {
    background: #1e293b;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    font-weight: 700;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.g2g-profile-btn:hover { background: #f97316; box-shadow: 0 20px 25px -5px rgba(249, 115, 22, 0.4); }

/* ========== TRUST BADGES ========== */
.trust-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-top: 1rem; max-width: 48rem; margin-left: auto; margin-right: auto; }
@media (min-width: 640px) { .trust-badges { gap: 1rem; margin-top: 1.5rem; } }
.trust-badge { background: rgba(51, 65, 85, 0.8); backdrop-filter: blur(12px); border: 1px solid #475569; border-radius: 0.75rem; padding: 0.75rem; text-align: center; }
.trust-badge p { font-size: 0.75rem; font-weight: 700; color: #e2e8f0; }
.trust-badge-icon { width: 1.25rem; height: 1.25rem; color: #60a5fa; margin: 0 auto 0.25rem; }

/* ========== SERVICES SECTION ========== */
.section-services { padding: 4rem 0; background: #1e293b; }
@media (min-width: 640px) { .section-services { padding: 5rem 0; } }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.service-card {
    background: #334155;
    border: 1px solid #475569;
    border-radius: 1rem;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); }
.service-card-glow { position: absolute; top: 0; right: 0; width: 8rem; height: 8rem; border-radius: 50%; filter: blur(32px); transition: all 0.3s; }
.service-card-glow-blue { background: rgba(59, 130, 246, 0.1); }
.service-card-glow-amber { background: rgba(245, 158, 11, 0.1); }
.service-card-glow-red { background: rgba(239, 68, 68, 0.1); }
.service-card:hover .service-card-glow { opacity: 0.2; }
.service-icon { width: 3.5rem; height: 3.5rem; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
@media (min-width: 640px) { .service-icon { width: 4rem; height: 4rem; margin-bottom: 1.5rem; } }
.service-tag { background: #475569; border-radius: 0.75rem; padding: 0.25rem 0.75rem; margin-top: 1rem; display: inline-flex; align-items: center; gap: 0.5rem; border: 1px solid #64748b; }
.service-tag span { color: #e2e8f0; font-size: 0.75rem; font-weight: 500; }
.service-badges { display: flex; gap: 0.75rem; margin-top: 1rem; }
.badge-buy { background: rgba(5, 150, 105, 0.4); color: #6ee7b7; padding: 0.25rem 0.75rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 500; border: 1px solid rgba(5, 150, 105, 0.5); }
.badge-sell { background: rgba(30, 64, 175, 0.4); color: #93c5fd; padding: 0.25rem 0.75rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 500; border: 1px solid rgba(30, 64, 175, 0.5); }

/* ========== MARKET SECTION ========== */
.section-market { padding: 3rem 0; background: #1e293b; border-top: 1px solid #334155; }
@media (min-width: 640px) { .section-market { padding: 4rem 0; } }
.price-disclaimer {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.1));
    border-left: 4px solid #3b82f6;
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.market-table-container { overflow-x: auto; border-radius: 1rem; border: 1px solid #334155; box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); margin-bottom: 2rem; }
.market-table { width: 100%; text-align: left; background: rgba(51, 65, 85, 0.5); backdrop-filter: blur(4px); }
.market-table-head { background: #1e293b; color: #cbd5e1; font-size: 0.75rem; text-transform: uppercase; }
.market-table-head th { padding: 0.75rem 1.5rem; font-weight: 600; }
.market-table-body { font-size: 0.75rem; color: #e2e8f0; }
@media (min-width: 640px) { .market-table-body { font-size: 0.875rem; } }
.market-table-body td { padding: 0.75rem 1.5rem; }
.retail-badge { background: linear-gradient(135deg, #fbbf24, #f59e0b); color: #1e293b; font-size: 0.75rem; padding: 0.125rem 0.5rem; border-radius: 9999px; font-weight: 700; margin-left: 0.5rem; }

/* ========== TIMECARD ========== */
.timecard-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; max-width: 48rem; margin: 0 auto; }
@media (min-width: 768px) { .timecard-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
.timecard {
    background: linear-gradient(135deg, #334155, #1e293b);
    border: 1px solid #475569;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
@media (min-width: 640px) { .timecard { padding: 1.5rem; } }
.timecard-header { display: flex; align-items: center; justify-content: space-between; }
.timecard-price { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 0.75rem; }
.timecard-badge { background: rgba(79, 70, 229, 0.4); color: #a5b4fc; padding: 0.25rem 0.75rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 500; }

/* ========== REVIEWS ========== */
.section-reviews { padding: 4rem 0; background: #334155; }
@media (min-width: 640px) { .section-reviews { padding: 5rem 0; } }
.reviews-discord-badge { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 0.75rem; background: rgba(79, 70, 229, 0.4); border: 1px solid rgba(99, 102, 241, 0.3); border-radius: 9999px; padding: 0.25rem 1rem; }
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #4f46e5;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    transition: all 0.3s;
}
.review-cta:hover { background: #4338ca; }

/* ========== WHY US ========== */
.why-us-section { padding: 4rem 0; position: relative; overflow: hidden; background: #1e293b; }
@media (min-width: 640px) { .why-us-section { padding: 5rem 0; } }
.why-us-bg { position: absolute; inset: 0; background: linear-gradient(180deg, #334155, #1e293b); }
.why-us-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .why-us-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
@media (min-width: 1024px) { .why-us-grid { grid-template-columns: repeat(4, 1fr); } }
.why-us-card { text-align: center; padding: 1.5rem; background: #334155; border-radius: 1rem; border: 1px solid #475569; transition: all 0.3s; }
.why-us-card:hover { border-color: #2563eb; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3); }
.why-us-icon { width: 3.5rem; height: 3.5rem; background: rgba(30, 64, 175, 0.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; transition: transform 0.3s; }
.why-us-card:hover .why-us-icon { transform: scale(1.1); }

/* ========== CONTACT ========== */
.section-contact { padding: 4rem 0; background: #1e293b; border-top: 1px solid #475569; }
@media (min-width: 640px) { .section-contact { padding: 5rem 0; } }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.contact-form-container { background: rgba(51, 65, 85, 0.5); border-radius: 1rem; padding: 1.5rem; border: 1px solid #475569; }
.contact-input { background: #1e293b !important; border: 1px solid #475569 !important; color: white !important; padding: 0.75rem 1rem !important; border-radius: 0.75rem !important; width: 100% !important; }
.contact-input:focus { border-color: #3b82f6 !important; outline: 0; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3); }
.contact-input::placeholder { color: #64748b !important; opacity: 0.7; }
.contact-textarea { height: 7rem; resize: none; }
@media (min-width: 640px) { .contact-textarea { height: 8rem; } }
.contact-submit-btn { width: 100%; background: #2563eb; color: white; padding: 0.75rem 0; border-radius: 0.75rem; font-weight: 600; transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.contact-submit-btn:hover { background: #1d4ed8; }
.form-fields { display: flex; flex-direction: column; gap: 0.75rem; }
.form-fields label { display: block; font-size: 0.75rem; color: #94a3b8; margin-bottom: 0.25rem; }
.form-status { display: none; padding: 0.75rem 1rem; border-radius: 0.75rem; margin-top: 0.75rem; text-align: center; font-weight: 500; font-size: 0.875rem; }
.form-status.success { display: block; background: rgba(16, 185, 129, 0.2); border: 1px solid rgba(16, 185, 129, 0.4); color: #6ee7b7; }
.form-status.error { display: block; background: rgba(239, 68, 68, 0.2); border: 1px solid rgba(239, 68, 68, 0.4); color: #fca5a5; }
.contact-sidebar { display: flex; flex-direction: column; gap: 1rem; }
.contact-sidebar-card { background: rgba(51, 65, 85, 0.5); border-radius: 1rem; padding: 1.5rem; border: 1px solid #475569; }
.contact-sidebar-card h3 { font-size: 1.125rem; font-weight: 700; color: white; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.discord-contacts { display: flex; flex-direction: column; gap: 0.5rem; }
.discord-contact { display: flex; align-items: center; justify-content: space-between; background: rgba(30, 41, 59, 0.5); padding: 0.625rem 0.75rem; border-radius: 0.5rem; }
.discord-contact-info { display: flex; align-items: center; gap: 0.5rem; }
.community-links { display: flex; flex-direction: column; gap: 0.5rem; }
.community-link { display: flex; align-items: center; justify-content: space-between; background: rgba(30, 41, 59, 0.5); padding: 0.625rem 0.75rem; border-radius: 0.5rem; color: white; transition: background 0.3s; }
.community-link:hover { background: rgba(51, 65, 85, 0.5); }
.response-time-badge { margin-top: 1.5rem; padding: 1.5rem; background: rgba(30, 64, 175, 0.4); border: 1px solid rgba(29, 78, 216, 0.5); border-radius: 0.75rem; text-align: center; }

/* ========== SCROLL TO TOP ========== */
.scroll-to-top {
    position: fixed;
    bottom: 5rem;
    right: 1.25rem;
    z-index: 40;
    background: #2563eb;
    color: white;
    padding: 0.625rem;
    border-radius: 50%;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}
.scroll-to-top:hover { background: #1d4ed8; }
.scroll-to-top.visible { opacity: 1; visibility: visible; }

/* ========== FOOTER ========== */
.site-footer { background: #0f172a; border-top: 1px solid #334155; padding: 1.5rem 0; position: relative; z-index: 30; }
@media (min-width: 640px) { .site-footer { padding: 2rem 0; } }
.footer-content { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
@media (min-width: 768px) { .footer-content { flex-direction: row; justify-content: space-between; } }
.footer-socials { display: flex; gap: 0.75rem; }
@media (min-width: 640px) { .footer-socials { gap: 1rem; } }

/* ========== TIMER ========== */
.timer-text { font-feature-settings: "tnum"; font-variant-numeric: tabular-nums; }
</style>