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

:root {
    color-scheme: light;
    --red: #dc2626;
    --red-dark: #b91c1c;
    --red-light: #fef2f2;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
    --radius: 8px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--gray-900);
    background: var(--gray-50);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    flex-direction: column;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

/* Navbar */
.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 0.75rem 0;
    position: relative;
    top: 0;
    z-index: 100;
}

@media (min-width: 769px) {
    .navbar { position: sticky; }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gray-900);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.logo-icon {
    color: var(--red);
    font-size: 1.6rem;
    font-weight: 900;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-links a {
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.4rem 0.85rem;
    border-radius: 2rem;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--red);
    background: var(--red-light);
    border-color: #fecaca;
}

.nav-links a.nav-link-disabled {
    color: var(--gray-400);
    background: var(--gray-100);
    border-color: var(--gray-200);
    cursor: not-allowed;
    pointer-events: none;
}

.nav-links a.nav-link-admin {
    color: var(--red);
    font-weight: 600;
    border-color: var(--red);
}

.nav-links a.nav-link-admin:hover {
    background: var(--red);
    color: var(--white);
}

.contact-masked {
    color: var(--gray-500);
    font-size: 0.85rem;
    font-weight: 500;
    font-style: italic;
}

.nav-links a.btn-primary {
    color: var(--white);
    border-color: var(--red);
}

.nav-links a.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: var(--white);
}

.nav-links a.btn-outline {
    color: var(--red);
    border-color: var(--red);
    background: transparent;
}

.nav-links a.btn-outline:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.nav-user {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-left: auto;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: transform 0.2s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.15s;
    text-align: center;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--red-dark);
}

.btn-outline {
    background: transparent;
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

.btn-outline:hover {
    border-color: var(--red);
    color: var(--red);
}

.btn-sm {
    padding: 0.4rem 0.9rem;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
    color: var(--white);
    padding: 2.1rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0;
}

.text-red {
    color: #fca5a5;
}

.hero-tagline {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.85);
    margin: 0.1rem auto 0.9rem;
    max-width: 520px;
    line-height: 1.5;
}

.hero-quote {
    font-size: 1.05rem;
    font-style: italic;
    opacity: 0;
    max-width: 600px;
    margin: 0 auto 1.4rem;
    min-height: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease;
    line-height: 1.4;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hero .btn-primary {
    background: var(--white);
    color: var(--red);
}

.hero .btn-primary:hover {
    background: var(--gray-100);
}

.hero .btn-outline {
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
}

.hero .btn-outline:hover {
    border-color: var(--white);
}

/* Launch banner */
.launch-banner {
    background: #ffffff;
    border-top: 2.5px solid #FF9933;
    border-bottom: 2.5px solid #138808;
    height: 38px;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.launch-banner-track {
    display: inline-block;
    white-space: nowrap;
    animation: banner-scroll 38s linear infinite;
    font-size: 0.78rem;
    font-weight: 600;
    color: #003399;
    letter-spacing: 0.04em;
    will-change: transform;
}

.launch-banner:hover .launch-banner-track {
    animation-play-state: paused;
}

@keyframes banner-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Features */
.features {
    padding: 3.4rem 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 1.7rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
}

.feature-status {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.28rem 0.7rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
}

.feature-status-live {
    background: #dcfce7;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.feature-status-soon {
    background: #fff7ed;
    color: #c2410c;
    border: 1px solid #fed7aa;
}

.feature-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.feature-status-dot-live {
    background: #16a34a;
    animation: pulse-green 1.8s ease-in-out infinite;
}

.feature-status-dot-soon {
    background: #f97316;
    animation: pulse-orange 2.2s ease-in-out infinite;
}

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 0 0 rgba(22,163,74,0.5); }
    50% { box-shadow: 0 0 0 4px rgba(22,163,74,0); }
}

@keyframes pulse-orange {
    0%, 100% { box-shadow: 0 0 0 0 rgba(249,115,22,0.5); }
    50% { box-shadow: 0 0 0 4px rgba(249,115,22,0); }
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.feature-card p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* Forms */
.form-container {
    max-width: 440px;
    margin: 3rem auto;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.form-container.form-wide {
    max-width: 680px;
}

.form-container h2 {
    margin-bottom: 0.25rem;
}

.form-subtitle {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 1rem;
    flex: 1;
}

.pw-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.pw-wrap input {
    flex: 1;
    padding-right: 2.75rem;
}

.pw-toggle {
    position: absolute;
    right: 0.65rem;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    line-height: 1;
    transition: color 0.15s;
}

.pw-toggle:hover {
    color: var(--gray-700);
}

.form-group label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.15s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-footer {
    text-align: center;
    margin-top: 1.25rem;
    color: var(--gray-500);
    font-size: 0.9rem;
}

.form-footer a {
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
}

/* Alerts */
.alert {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-info {
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

/* Dashboard */
.dashboard {
    padding: 2rem 0;
}

.dashboard h2 {
    margin-bottom: 1.5rem;
}

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

.card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.donor-info p {
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

.blood-badge {
    display: inline-block;
    background: var(--red-light);
    color: var(--red);
    padding: 0.15rem 0.6rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.stat-item {
    text-align: center;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: 6px;
}

.stat-count {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 0.3rem;
    color: var(--gray-900);
}

/* Search */
.search-section {
    padding: 2rem 0;
    max-width: 100%;
    overflow: hidden;
}

.search-hero {
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
    color: var(--white);
    padding: 2rem 2.5rem;
    border-radius: var(--radius) var(--radius) 0 0;
}

.search-hero h2 {
    margin-bottom: 0.25rem;
    font-size: 1.5rem;
}

.search-hero .text-muted {
    color: rgba(255,255,255,0.8);
}

.search-section h2 {
    margin-bottom: 1.5rem;
}

.search-form {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.search-form-vertical {
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 2rem 2.5rem;
}

.search-field {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.search-field label {
    min-width: 140px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
}

.search-field select,
.search-field input {
    flex: 1;
    max-width: 280px;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.15s;
}

.search-field select:focus,
.search-field input:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.search-field .btn {
    max-width: 280px;
    flex: 1;
}

/* Table */
.table-responsive {
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.table th,
.table td {
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.9rem;
}

.table th {
    background: var(--gray-50);
    font-weight: 600;
    color: var(--gray-700);
    border-bottom: 2px solid var(--gray-200);
}

.table td {
    border-bottom: 1px solid var(--gray-100);
}

.table tr:hover td {
    background: var(--gray-50);
}

/* Footer */
.footer {
    margin-top: auto;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 1.5rem 0;
    text-align: center;
    color: var(--gray-500);
    font-size: 0.85rem;
}

.footer-content {
    display: flex;
    align-items: center;
    position: relative;
}

.footer-content p {
    flex: 1;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 1.25rem;
    position: absolute;
    right: 0;
}

.footer-links a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--red);
}

.text-muted {
    color: var(--gray-500);
}

.results-count {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
    font-weight: 500;
}

.login-prompt {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--red-light);
    border-radius: var(--radius);
    font-size: 0.9rem;
}

.login-prompt a {
    color: var(--red);
    font-weight: 600;
    text-decoration: none;
}

.login-prompt a:hover {
    text-decoration: underline;
}

/* Share Section */
.share-section {
    padding: 2.55rem 0;
    text-align: center;
    border-top: 1px solid var(--gray-200);
}

.share-section h3 {
    margin-bottom: 0.25rem;
}

.share-section p {
    margin-bottom: 1.25rem;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--white);
    transition: opacity 0.15s;
}

.share-btn:hover {
    opacity: 0.85;
}

.share-whatsapp { background: #25D366; }
.share-facebook { background: #1877F2; }
.share-twitter { background: #0f1419; }
.share-linkedin { background: #0A66C2; }

.share-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.share-btn-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.15s;
}

.share-btn-sm:hover {
    opacity: 0.85;
}

/* Share Card */
.share-card-wrapper {
    max-width: 344px;
    margin: 2rem auto;
    text-align: center;
}
.share-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(160deg, #ef4444 0%, #dc2626 30%, #b91c1c 70%, #991b1b 100%);
    color: #fff;
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.3);
    border: 8px solid #fff;
}
.share-card-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}
.share-card-circle-1 {
    width: 250px;
    height: 250px;
    top: -60px;
    right: -60px;
}
.share-card-circle-2 {
    width: 180px;
    height: 180px;
    bottom: 60px;
    left: -70px;
}
.share-card-header {
    position: relative;
    z-index: 1;
    padding: 1rem 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
}
.share-card-brand {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex-shrink: 1;
}
.share-card-logo {
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}
.share-card-tagline {
    font-size: 0.62rem;
    opacity: 0.85;
    margin-top: 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.share-card-date {
    font-size: 0.72rem;
    opacity: 0.85;
    white-space: nowrap;
    flex-shrink: 0;
}
.share-card-body {
    position: relative;
    z-index: 1;
    padding: 1.5rem 1.5rem 1rem;
}
.share-card-badge {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
}
.share-card-badge-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    opacity: 0.9;
    margin-top: 0.25rem;
}
.share-card-hero-title {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
}
.share-card-info {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.75rem 1rem;
    padding: 1.5rem 1.5rem 1rem;
}
.share-card-detail {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.share-card-detail-value {
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.3;
    text-align: left;
    word-break: break-word;
}
.share-card-detail-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    opacity: 0.7;
    margin-top: 0.2rem;
}
.share-card-footer {
    position: relative;
    z-index: 1;
    padding: 1.5rem 1.5rem 1rem;
    font-size: 0.85rem;
    opacity: 0.8;
    text-align: left;
}
.share-card-social {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem 1.5rem;
}
.share-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.15s ease, opacity 0.15s ease;
}
.share-icon:hover {
    transform: scale(1.1);
    opacity: 0.9;
}
.share-icon.share-whatsapp { background: #25d366; }
.share-icon.share-facebook { background: #1877f2; }
.share-icon.share-twitter { background: #000; }
.share-icon.share-linkedin { background: #0a66c2; }
.share-icon.share-copy { background: #6b7280; }
.share-card-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    justify-content: center;
}
.share-btn {
    padding: 0.55rem 0.8rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.78rem;
    font-family: inherit;
    cursor: pointer;
    border: 2px solid var(--gray-200);
    transition: all 0.15s ease;
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}
.share-btn:hover {
    opacity: 0.85;
}
.share-btn-primary {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    border: 2px solid #dc2626;
}
.share-btn-outline {
    background: var(--white);
    color: var(--gray-700);
}
.share-card-link {
    margin-top: 0.75rem;
}
.share-card-link a {
    color: #2563eb;
    text-decoration: underline;
    font-size: 0.9rem;
}
.share-copy-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gray-800);
    color: #fff;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    white-space: nowrap;
    pointer-events: none;
}

/* Responsive — Tablet */
@media (max-width: 900px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive — Mobile */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        padding: 0.6rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 1.5rem;
        gap: 0.75rem;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-md);
    }

    .nav-links.nav-open {
        display: flex;
    }

    .nav-links a, .nav-links .nav-user {
        font-size: 0.95rem;
    }

    .nav-user {
        margin-left: 0;
    }

    .hero {
        padding: 1.62rem 0;
    }

    .hero h1 {
        font-size: 1.55rem;
    }

    .hero-tagline {
        font-size: 0.93rem;
    }

    .hero-quote {
        font-size: 0.9rem;
    }

    .hero-actions {
        flex-wrap: wrap;
    }

    .hero-actions .btn-lg {
        padding: 0.65rem 1.2rem;
    }

    .features {
        padding: 2.9rem 0;
    }

    .share-section {
        padding: 2.15rem 0;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

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

    .search-field {
        flex-direction: column;
        align-items: stretch;
    }

    .search-field label {
        min-width: unset;
        margin-bottom: 0.25rem;
    }

    .search-field select,
    .search-field input,
    .search-field .btn {
        max-width: 100%;
    }

    .search-form-vertical {
        padding: 1.25rem;
    }

    .search-hero {
        padding: 1.25rem;
        overflow: hidden;
        word-wrap: break-word;
    }

    .search-hero h2 {
        font-size: 1.25rem;
    }

    .search-section {
        padding: 1rem 0;
    }

    .search-field select,
    .search-field input,
    .search-field .btn {
        max-width: 100%;
        width: 100%;
    }

    .table th,
    .table td {
        padding: 0.5rem 0.6rem;
        font-size: 0.82rem;
    }

    .share-inline {
        flex-wrap: wrap;
        gap: 0.4rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .footer-links {
        position: static;
        justify-content: center;
    }

    .share-btn-sm {
        width: 44px;
        height: 44px;
    }

    .btn-sm {
        padding: 0.5rem 1rem;
        min-height: 44px;
    }

    .dashboard h2 {
        text-align: left;
    }

    .share-card-wrapper {
        max-width: 100%;
    }

    .card {
        overflow: hidden;
    }

    .share-card-body {
        padding: 1rem 1rem 0.5rem;
    }

    .share-card-badge {
        font-size: 3.5rem;
    }

    .share-card-info {
        padding: 1rem;
    }

    .share-card-header {
        padding: 1rem;
    }

    .share-card-social {
        gap: 0.5rem;
        padding: 0.75rem 1rem 1.25rem;
    }

    .share-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .share-icon svg {
        width: 17px;
        height: 17px;
    }

    .share-card-buttons {
        gap: 0.4rem;
        flex-wrap: wrap;
    }

    .share-btn {
        padding: 0.5rem 0.6rem;
        font-size: 0.72rem;
    }
}

/* Responsive — Small Phones */
@media (max-width: 480px) {
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .hero {
        padding: 1.45rem 0;
    }

    .hero h1 {
        font-size: 1.4rem;
    }

    .hero-tagline {
        font-size: 0.85rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 80%;
        max-width: 260px;
        margin: 0 auto;
    }

    .features {
        padding: 2.4rem 0;
    }

    .share-section {
        padding: 1.8rem 0;
    }

    .launch-banner-track {
        font-size: 0.72rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}
