/* ================================================================
   DASHBOARD.CSS — Premium v2.5 (Fixed Top Bar)
   Fully compatible with existing sidebar, components & base
   ================================================================ */

/* -------- Animation Keyframes -------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes livePulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

@keyframes orbFloat {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-14px) rotate(10deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.animate-fade-in {
    animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}
.delay-100 {
    animation-delay: 0.1s;
}
.delay-200 {
    animation-delay: 0.2s;
}
.delay-300 {
    animation-delay: 0.3s;
}

/* ================================================================
   TOP BAR STYLES (FIXED)
   ================================================================ */

/* Top Bar Container */
.top-bar {
    height: 76px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    position: sticky;
    top: 0;
    z-index: 99;
    gap: 16px;
}

/* Top Bar Left & Right */
.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Mobile Menu Toggle Button */
.btn-icon {
    background: transparent;
    border: none;
    font-size: 24px;
    color: #0f172a;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon:hover {
    background: #f1f5f9;
}

.d-md-none {
    display: none;
}

/* Search Wrapper */
.search-wrapper {
    position: relative;
    width: 340px;
}

.search-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 18px;
}

.search-wrapper input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: #0f172a;
    transition: all 0.3s ease;
    outline: none;
}

.search-wrapper input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.search-wrapper input:focus {
    background: #ffffff;
    border-color: #4f46e5;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.15);
    outline: none;
}

/* Header Buttons (Facebook & YouTube) */
.btn-header-fb,
.btn-header-yt {
    padding: 10px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
}

.btn-header-fb {
    background: #eff6ff;
    color: #1877f2;
    border-color: #bfdbfe;
}

.btn-header-fb:hover {
    background: #1877f2;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(24, 119, 242, 0.2);
    border-color: #1877f2;
}

.btn-header-yt {
    background: #fef2f2;
    color: #dc2626;
    border-color: #fecaca;
}

.btn-header-yt:hover {
    background: #dc2626;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(220, 38, 38, 0.2);
    border-color: #dc2626;
}

.btn-header-fb i,
.btn-header-yt i {
    font-size: 18px;
}

.btn-text {
    display: inline;
}

/* User Profile */
.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 4px;
    transition: 0.2s;
    border-radius: 999px;
}

.user-profile:hover {
    background: #f1f5f9;
}

.avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #4f46e5, #818cf8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.25);
    flex-shrink: 0;
}

/* ================================================================
   HERO BANNER
   ================================================================ */
.db-hero-banner {
    position: relative;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #9333ea 100%);
    border-radius: 24px;
    padding: clamp(28px, 4vw, 48px) clamp(24px, 4vw, 52px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    margin-bottom: 36px;
    box-shadow: 0 20px 40px -12px rgba(99, 102, 241, 0.45);
}

.db-hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.db-hero-content {
    max-width: 680px;
    position: relative;
    z-index: 2;
}

.db-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.db-pulse-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 12px #22c55e;
    animation: livePulse 1.8s infinite ease-in-out;
}

.db-hero-title {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    margin: 0 0 10px;
    letter-spacing: -0.5px;
    color: #fff;
    line-height: 1.2;
}

.db-hero-title span {
    background: linear-gradient(135deg, #fde047, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.db-hero-subtitle {
    font-size: clamp(14px, 1.6vw, 17px);
    opacity: 0.92;
    margin: 0 0 26px;
    line-height: 1.6;
}

.db-hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.db-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14.5px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    cursor: pointer;
}

.db-btn-primary {
    background: #ffffff;
    color: #4f46e5;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.db-btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.db-btn-glass {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.db-btn-glass:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.db-hero-graphic {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.db-cricket-orb {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 54px;
    color: #fde047;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    animation: orbFloat 4s ease-in-out infinite alternate;
}

/* ================================================================
   STATS GRID
   ================================================================ */
.db-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.db-stat-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.db-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
    border-color: #cbd5e1;
}

.db-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
}

.icon-purple {
    background: linear-gradient(135deg, #818cf8, #4f46e5);
    box-shadow: 0 6px 15px rgba(79, 70, 229, 0.3);
}
.icon-blue {
    background: linear-gradient(135deg, #38bdf8, #0284c7);
    box-shadow: 0 6px 15px rgba(2, 132, 199, 0.3);
}
.icon-green {
    background: linear-gradient(135deg, #4ade80, #16a34a);
    box-shadow: 0 6px 15px rgba(22, 163, 74, 0.3);
}
.icon-amber {
    background: linear-gradient(135deg, #fbbf24, #d97706);
    box-shadow: 0 6px 15px rgba(217, 119, 6, 0.3);
}

.db-stat-info {
    display: flex;
    flex-direction: column;
}

.db-stat-label {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.db-stat-value {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
}

/* ================================================================
   SECTION TITLE
   ================================================================ */
.db-section-title {
    margin-bottom: 20px;
}

.db-section-title h2 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.db-section-title h2 i {
    color: #4f46e5;
}

.db-section-title p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* ================================================================
   NAVIGATION CARDS GRID
   ================================================================ */
.db-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 36px;
}

.db-feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.db-feature-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: #a855f7;
    box-shadow: 0 20px 40px -10px rgba(168, 85, 247, 0.25);
}

.db-fc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.db-fc-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ffffff;
}

.bg-indigo {
    background: linear-gradient(135deg, #6366f1, #4338ca);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.3);
}
.bg-emerald {
    background: linear-gradient(135deg, #10b981, #047857);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.3);
}
.bg-purple {
    background: linear-gradient(135deg, #a855f7, #7e22ce);
    box-shadow: 0 6px 16px rgba(168, 85, 247, 0.3);
}
.bg-amber {
    background: linear-gradient(135deg, #f59e0b, #b45309);
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.3);
}

.db-fc-badge {
    padding: 4px 12px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.db-feature-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px;
}

.db-feature-card p {
    font-size: 13.5px;
    color: #64748b;
    margin: 0 0 20px;
    line-height: 1.5;
    flex: 1;
}

.db-fc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13.5px;
    font-weight: 700;
    color: #4f46e5;
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
    transition: color 0.3s ease;
}

.db-fc-footer i {
    transition: transform 0.3s ease;
}

.db-feature-card:hover .db-fc-footer i {
    transform: translateX(5px);
}

/* ================================================================
   SPLIT GRID (Matches + Social)
   ================================================================ */
.db-split-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 28px;
    align-items: start;
}

/* ================================================================
   CARD (Matches)
   ================================================================ */
.db-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.db-card-header {
    padding: 20px 24px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.db-card-header h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0f172a;
}

.db-card-header h3 i {
    color: #4f46e5;
}

.db-view-all {
    font-size: 13px;
    font-weight: 600;
    color: #4f46e5;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 8px;
    background: rgba(79, 70, 229, 0.06);
    transition: 0.2s;
}

.db-view-all:hover {
    background: rgba(79, 70, 229, 0.12);
}

.db-card-body {
    padding: 0;
}

/* ================================================================
   TABLE
   ================================================================ */
.db-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.db-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.db-table thead th {
    text-align: left;
    padding: 14px 24px;
    background: #f8fafc;
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 700;
    border-bottom: 1px solid #e2e8f0;
}

.db-table tbody td {
    padding: 18px 24px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
    vertical-align: middle;
    color: #0f172a;
    transition: background 0.2s;
}

.db-table tbody tr:last-child td {
    border-bottom: none;
}

.db-table tbody tr:hover td {
    background: #fafbfc;
    cursor: default;
}

.db-match-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.db-match-teams {
    font-weight: 700;
    color: #0f172a;
    font-size: 14.5px;
}

.db-match-tourney {
    font-size: 12.5px;
    color: #64748b;
    font-weight: 500;
}

.db-status-badge {
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    gap: 6px;
}

.db-status-live {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.db-status-live::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #dc2626;
    border-radius: 50%;
    animation: livePulse 1.8s infinite ease-in-out;
}

.db-status-finished {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.db-status-pending {
    background: #f8fafc;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.db-action-link {
    color: #4f46e5;
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
    transition: 0.2s;
}

.db-action-link:hover {
    color: #4338ca;
    text-decoration: underline;
}

/* ================================================================
   EMPTY STATE
   ================================================================ */
.db-empty-state {
    padding: 48px 24px;
    text-align: center;
    color: #64748b;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.db-empty-icon {
    width: 72px;
    height: 72px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #94a3b8;
    margin-bottom: 16px;
}

.db-empty-state p {
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}

/* ================================================================
   SOCIAL STACK
   ================================================================ */
.db-social-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.db-social-card {
    border-radius: 20px;
    padding: 24px 26px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.db-social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.fb-theme {
    background: linear-gradient(135deg, #1877f2 0%, #0d5bb5 100%);
}

.yt-theme {
    background: linear-gradient(135deg, #ff0000 0%, #b30000 100%);
}

.db-social-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.db-social-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.db-social-brand i {
    font-size: 32px;
}

.db-social-brand h4 {
    margin: 0;
    font-size: 17px;
    font-weight: 800;
}

.db-social-brand span {
    font-size: 12px;
    opacity: 0.8;
}

.db-social-tag {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.db-social-card p {
    font-size: 13.5px;
    opacity: 0.92;
    margin: 0 0 18px;
    line-height: 1.5;
    flex: 1;
}

.db-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    background: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 13.5px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.fb-btn {
    color: #1877f2;
}
.yt-btn {
    color: #ff0000;
}

.db-social-btn:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

/* ================================================================
   SKELETON LOADER
   ================================================================ */
.skeleton {
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    color: transparent !important;
    border-radius: 6px;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 1200px) {
    .db-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .db-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .db-split-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .db-hero-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 28px 24px;
    }
    .db-hero-graphic {
        align-self: center;
    }
    .db-cricket-orb {
        width: 80px;
        height: 80px;
        font-size: 38px;
    }

    /* Top Bar responsive */
    .top-bar {
        padding: 0 20px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 14px 12px;
    }

    /* ===== TOP BAR MOBILE ===== */
    .top-bar {
        padding: 0 14px;
        height: 60px;
        gap: 8px;
    }

    .top-bar-left {
        gap: 8px;
    }

    .top-bar-right {
        gap: 8px;
    }

    .d-md-none {
        display: flex !important;
    }

    .search-wrapper {
        display: none;
    }

    .btn-text {
        display: none !important;
    }

    .btn-header-fb,
    .btn-header-yt {
        padding: 8px;
        font-size: 18px;
        gap: 0;
        width: 36px;
        height: 36px;
        justify-content: center;
        border-radius: 50%;
        min-width: 36px;
    }

    .avatar {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    /* Hero */
    .db-hero-banner {
        padding: 18px 16px;
        border-radius: 16px;
        margin-bottom: 18px;
    }
    .db-hero-badge {
        font-size: 11px;
        padding: 4px 12px;
    }
    .db-hero-title {
        font-size: 20px;
    }
    .db-hero-subtitle {
        font-size: 12.5px;
        margin-bottom: 16px;
    }
    .db-btn {
        padding: 8px 16px;
        font-size: 12.5px;
        border-radius: 10px;
    }

    /* Stats */
    .db-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 20px;
    }
    .db-stat-card {
        padding: 12px 14px;
        border-radius: 14px;
        gap: 10px;
    }
    .db-stat-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
        border-radius: 10px;
    }
    .db-stat-label {
        font-size: 9.5px;
    }
    .db-stat-value {
        font-size: 14px;
    }

    /* Section Title */
    .db-section-title h2 {
        font-size: 16px;
    }
    .db-section-title p {
        font-size: 12px;
    }

    /* Cards Grid */
    .db-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 20px;
    }
    .db-feature-card {
        padding: 14px;
        border-radius: 14px;
    }
    .db-fc-header {
        margin-bottom: 8px;
    }
    .db-fc-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
        border-radius: 10px;
    }
    .db-fc-badge {
        font-size: 9px;
        padding: 2px 8px;
    }
    .db-feature-card h3 {
        font-size: 13.5px;
        margin-bottom: 2px;
    }
    .db-feature-card p {
        display: none;
    }
    .db-fc-footer {
        font-size: 11px;
        padding-top: 8px;
    }

    /* Split Grid */
    .db-split-grid {
        gap: 16px;
    }

    /* Table */
    .db-card-header {
        padding: 14px 16px;
    }
    .db-card-header h3 {
        font-size: 14px;
    }
    .db-table thead th,
    .db-table tbody td {
        padding: 12px 14px;
        font-size: 12.5px;
    }
    .db-match-teams {
        font-size: 13px;
    }
    .db-match-tourney {
        font-size: 11px;
    }
    .db-status-badge {
        font-size: 10px;
        padding: 3px 10px;
    }

    /* Social Cards */
    .db-social-stack {
        gap: 12px;
    }
    .db-social-card {
        padding: 16px 18px;
        border-radius: 16px;
    }
    .db-social-brand i {
        font-size: 26px;
    }
    .db-social-brand h4 {
        font-size: 14px;
    }
    .db-social-brand span {
        font-size: 11px;
    }
    .db-social-card p {
        font-size: 12px;
        margin-bottom: 12px;
    }
    .db-social-btn {
        padding: 8px 14px;
        font-size: 12px;
    }
}