/* NivaMC Dashboard - Efektif Tatlı Göz Alıcı Tema */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800&display=swap');

@property --saber-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

:root {
    --bg-dark: #1a1410;
    --bg-gradient: linear-gradient(165deg, #1a1410 0%, #2a1f18 35%, #1f1812 70%, #251c14 100%);
    --bg-card: rgba(45, 34, 24, 0.65);
    --bg-card-hover: rgba(55, 42, 30, 0.92);
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 200, 150, 0.15);
    --accent: #f97316;
    --accent-light: #fb923c;
    --accent-soft: #fdba74;
    --accent-glow: rgba(249, 115, 22, 0.5);
    --accent-dim: #ea580c;
    --text-primary: #fef3e2;
    --text-secondary: #e8d5c4;
    --text-muted: #c4a882;
    --border-color: rgba(249, 115, 22, 0.2);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.45);
    --radius: 24px;
    --radius-sm: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Nunito', 'Segoe UI', system-ui, sans-serif;
    background: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text-primary);
    min-height: 100vh;
    min-height: 100dvh;
    min-height: -webkit-fill-available;
    line-height: 1.6;
    overflow-x: hidden;
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

/* Arka plan - Parlayan gradient + yüzen noktalar */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 100% 70% at 50% -15%, rgba(249, 115, 22, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 90% 30%, rgba(251, 146, 60, 0.1) 0%, transparent 45%),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(249, 115, 22, 0.06) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
    animation: bg-pulse 8s ease-in-out infinite;
}

@keyframes bg-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

/* Yüzen dekoratif noktalar */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(251, 146, 60, 0.4), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(249, 115, 22, 0.3), transparent),
        radial-gradient(2px 2px at 60% 20%, rgba(253, 186, 116, 0.35), transparent),
        radial-gradient(2px 2px at 80% 60%, rgba(251, 146, 60, 0.25), transparent),
        radial-gradient(2px 2px at 15% 85%, rgba(249, 115, 22, 0.2), transparent);
    background-size: 200% 200%;
    animation: float-dots 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes float-dots {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    position: relative;
    z-index: 1;
    overflow: visible;
}

/* Header - 4'lü tablo ile aynı genişlik, tablette kesilmesin */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    background: var(--glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: box-shadow 0.3s;
    position: relative;
    overflow: visible;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}

/* Saber: ışık çerçeve üzerinde dolaşır */
.header::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius) + 2px);
    padding: 2px;
    background: conic-gradient(from var(--saber-angle), rgba(249,115,22,0.5) 0deg, rgba(249,115,22,0.5) 250deg, var(--accent-light) 270deg, #fff 290deg, var(--accent-light) 310deg, rgba(249,115,22,0.5) 330deg, rgba(249,115,22,0.5) 360deg);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: saber-move 3s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes saber-move {
    to { --saber-angle: 360deg; }
}

.header > * {
    position: relative;
    z-index: 1;
}

.header:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25), 0 0 60px rgba(249, 115, 22, 0.08);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    min-width: 0;
}

.logo-img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 4px 24px var(--accent-glow), 0 0 40px rgba(249, 115, 22, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.logo:hover .logo-img {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 6px 30px var(--accent-glow), 0 0 50px rgba(249, 115, 22, 0.25);
}

.logo-img-placeholder {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    color: white;
    box-shadow: 0 4px 24px var(--accent-glow);
}

.logo h1 {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 50%, var(--accent-dim) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.subtitle {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.15rem;
}

.header-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 0;
    flex-wrap: wrap;
    padding: 0.7rem 1.2rem;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(251, 146, 60, 0.08));
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 12px rgba(249, 115, 22, 0.1);
}

.header-players {
    color: var(--accent-light);
    font-weight: 700;
    font-size: 0.95rem;
}

.header-info .last-update {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.header-info strong {
    color: var(--accent-light);
}

/* Sunucu Durumu */
.status-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
    animation: status-pulse 2s ease-in-out infinite;
}

.status-dot.online {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    box-shadow: 0 0 16px rgba(34, 197, 94, 0.7), 0 0 30px rgba(34, 197, 94, 0.3);
}

.status-dot.offline {
    background: linear-gradient(135deg, #f87171, #ef4444);
    box-shadow: 0 0 16px rgba(239, 68, 68, 0.6);
    animation: none;
}

@keyframes status-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.15); }
}

/* İstatistik Kartları - Shine efekti */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.stat-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius);
    padding: 1.25rem 1.35rem;
    display: flex;
    align-items: center;
    gap: 1.35rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: visible;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.stat-card > * {
    position: relative;
    z-index: 1;
}

/* Saber: ışık çerçeve üzerinde dolaşır, çerçeve sabit */
.stat-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius) + 2px);
    padding: 2px;
    background: conic-gradient(from var(--saber-angle), rgba(249,115,22,0.5) 0deg, rgba(249,115,22,0.5) 250deg, var(--accent-light) 270deg, #fff 290deg, var(--accent-light) 310deg, rgba(249,115,22,0.5) 330deg, rgba(249,115,22,0.5) 360deg);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: saber-move 3s linear infinite;
    pointer-events: none;
    z-index: 0;
    filter: drop-shadow(0 0 8px rgba(249,115,22,0.6));
}

/* Kart üzerinde ışık geçişi (hover) */
.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent-light), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: var(--radius) var(--radius) 0 0;
    pointer-events: none;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: var(--bg-card-hover);
    border-color: rgba(249, 115, 22, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 50px rgba(249, 115, 22, 0.15);
}

.stat-card:hover::after {
    opacity: 1;
}

.stat-card.status {
    border-left: 5px solid var(--accent);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15), 0 0 40px rgba(249, 115, 22, 0.12);
}

.stat-card.status:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 60px rgba(249, 115, 22, 0.2);
}

.stat-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(251, 146, 60, 0.1));
    border-radius: var(--radius-sm);
    font-size: 1.6rem;
    transition: transform 0.3s;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stat-card.status .stat-icon {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.25), rgba(34, 197, 94, 0.1));
    padding: 0;
}

.stat-content h3 {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.stat-value {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--accent-light);
    letter-spacing: -0.02em;
    text-shadow: 0 0 20px rgba(251, 146, 60, 0.3);
}

.stat-card-copy {
    cursor: pointer;
}

.stat-card-copy:active {
    transform: translateY(-4px) scale(0.98);
}

.stat-card-copy:hover .copy-hint {
    opacity: 1;
}

.stat-ip {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.copy-hint {
    font-size: 1rem;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.copy-hint.copied {
    color: #22c55e;
}

/* Arttı / Düştü rozetleri */
.change-badge {
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
    padding: 3px 10px;
    border-radius: 10px;
    transition: all 0.3s;
}

.change-badge.up {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.25);
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.2);
}

.change-badge.down {
    color: #f87171;
    background: rgba(248, 113, 113, 0.25);
}

.change-badge.same {
    color: var(--text-muted);
    background: rgba(196, 168, 130, 0.2);
}

/* Bölüm Başlıkları */
.section-title {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.section-title::before {
    content: '';
    width: 5px;
    height: 28px;
    background: linear-gradient(180deg, var(--accent), var(--accent-light));
    border-radius: 3px;
    box-shadow: 0 0 15px var(--accent-glow);
}

/* Günlük Veriler - kompakt, ekrana sığsın, biraz yukarı */
.daily-section {
    margin: 0.75rem 0 1.5rem;
}

.daily-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.daily-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius);
    padding: 1.1rem 1.25rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: visible;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.daily-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius) + 2px);
    padding: 2px;
    background: conic-gradient(from var(--saber-angle), rgba(249,115,22,0.5) 0deg, rgba(249,115,22,0.5) 250deg, var(--accent-light) 270deg, #fff 290deg, var(--accent-light) 310deg, rgba(249,115,22,0.5) 330deg, rgba(249,115,22,0.5) 360deg);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: saber-move 3.5s linear infinite;
    pointer-events: none;
    z-index: 0;
    filter: drop-shadow(0 0 8px rgba(249,115,22,0.6));
}

.daily-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.5s;
    pointer-events: none;
    z-index: 0;
}

.daily-card:hover::after {
    left: 100%;
}

.daily-card > * {
    position: relative;
    z-index: 1;
}

.daily-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2), 0 0 40px rgba(249, 115, 22, 0.08);
}

.daily-card h4 {
    color: var(--accent-light);
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 800;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.daily-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    gap: 1rem;
    transition: background 0.2s;
}

.daily-list li:hover {
    background: rgba(255, 255, 255, 0.02);
    margin: 0 -0.5rem;
    padding: 0.65rem 0.5rem;
    border-radius: 8px;
}

.daily-list li:last-child {
    border-bottom: none;
}

.daily-list span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.daily-list strong {
    color: var(--accent-light);
    font-size: 1rem;
    text-shadow: 0 0 15px rgba(251, 146, 60, 0.2);
}

/* Discord - 0.7cm kadar küçültülmüş */
.discord-section {
    margin: 1rem 0;
}

.discord-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius);
    padding: 1.1rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: visible;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.discord-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius) + 2px);
    padding: 2px;
    background: conic-gradient(from var(--saber-angle), rgba(88,101,242,0.5) 0deg, rgba(88,101,242,0.5) 250deg, #818cf8 270deg, #c7d2fe 290deg, #818cf8 310deg, rgba(88,101,242,0.5) 330deg, rgba(88,101,242,0.5) 360deg);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: saber-move 3.5s linear infinite;
    pointer-events: none;
    z-index: 0;
    filter: drop-shadow(0 0 8px rgba(88,101,242,0.6));
}

.discord-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(88, 101, 242, 0.08), transparent);
    transition: left 0.5s;
    pointer-events: none;
    z-index: 0;
}

.discord-card:hover::after {
    left: 100%;
}

.discord-card > * {
    position: relative;
    z-index: 1;
}

.discord-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(88, 101, 242, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2), 0 0 40px rgba(88, 101, 242, 0.15);
}

.discord-icon {
    font-size: 1.8rem;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.2), rgba(88, 101, 242, 0.1));
    border-radius: var(--radius-sm);
    transition: transform 0.3s;
}

.discord-card:hover .discord-icon {
    transform: scale(1.1);
}

.discord-card h3 {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.discord-count {
    font-size: 1.15rem;
    color: var(--text-primary);
}

.discord-count strong {
    color: #5865f2;
    text-shadow: 0 0 15px rgba(88, 101, 242, 0.3);
}

.discord-sep {
    margin: 0 0.5rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Footer - biraz küçültülmüş */
.footer {
    text-align: center;
    padding: 1.1rem 1.5rem;
    margin-top: 0.75rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid var(--glass-border);
}

.footer-credit {
    margin-top: 1.2rem;
    font-size: 0.9rem;
}

.footer-credit a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-credit a:hover {
    color: var(--accent-light);
    transform: scale(1.05);
}

.footer-credit .heart {
    color: #f43f5e;
    display: inline-block;
    animation: heart-beat 1.2s ease-in-out infinite;
}

@keyframes heart-beat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Responsive */
@media (max-width: 1024px) {
    .container { padding: 1.25rem 1.5rem; overflow: visible; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .daily-grid { grid-template-columns: 1fr; }
    .header { padding: 1rem 1.25rem; margin-bottom: 1rem; }
    .logo h1 { font-size: 1.7rem; }
    .stat-card, .daily-card { padding: 1.1rem 1.2rem; }
}

@media (max-width: 768px) {
    html { font-size: 15px; }
    .container { padding: 1rem; }
    .header { flex-direction: column; align-items: flex-start; padding: 1rem; margin-bottom: 1rem; }
    .stats-grid { grid-template-columns: 1fr; gap: 0.9rem; }
    .stat-card { padding: 1.1rem; }
    .stat-icon { width: 48px; height: 48px; font-size: 1.5rem; }
}

@media (max-width: 600px) {
    .container { padding: 1rem; }
    .header { margin-bottom: 1rem; }
    .logo-img, .logo-img-placeholder { width: 50px; height: 50px; }
    .logo h1 { font-size: 1.5rem; }
}

/* Samsung Tab A9 (800x1340) - tam görünür, üst çerçeve kesilmesin */
@media (max-width: 900px) and (min-width: 600px) {
    html { font-size: 15px; }
    .container { padding: 1.5rem; max-width: 100%; overflow: visible; }
    .header { padding: 1rem 1.25rem; margin-bottom: 1.25rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .daily-grid { grid-template-columns: 1fr; }
    .stat-card, .daily-card { padding: 1.25rem; min-height: auto; }
    .discord-card { padding: 1rem 1.35rem; }
    .footer { padding: 1.25rem; }
}

/* Tam ekran butonu - köşede sabit */
.fullscreen-btn {
    position: fixed;
    bottom: calc(1rem + env(safe-area-inset-bottom));
    right: calc(1rem + env(safe-area-inset-right));
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(249, 115, 22, 0.4);
    background: rgba(26, 20, 16, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--accent-light);
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 20px rgba(249,115,22,0.15);
    transition: transform 0.2s, box-shadow 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.fullscreen-btn:hover,
.fullscreen-btn:active {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(0,0,0,0.35), 0 0 30px rgba(249,115,22,0.25);
}

.fullscreen-btn .fullscreen-icon {
    line-height: 1;
}

/* Giriş animasyonları */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

.stat-card {
    animation: fadeInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.stat-card:nth-child(1) { animation-delay: 0.05s; }
.stat-card:nth-child(2) { animation-delay: 0.12s; }
.stat-card:nth-child(3) { animation-delay: 0.19s; }
.stat-card:nth-child(4) { animation-delay: 0.26s; }

.daily-card {
    animation: fadeInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.daily-card:nth-child(1) { animation-delay: 0.33s; }
.daily-card:nth-child(2) { animation-delay: 0.4s; }
.daily-card:nth-child(3) { animation-delay: 0.47s; }

.discord-card {
    animation: fadeInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
    animation-delay: 0.54s;
}
