/* CHAINSHIELD - PERFECT WORKING VERSION */

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

body { 
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

button { cursor: pointer; border: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #1a1a1a; }
::-webkit-scrollbar-thumb { background: #ff0000; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #cc0000; }

/* TOAST */
#toast-container { position: fixed; top: 20px; right: 20px; z-index: 9999; }
.toast { 
    padding: 16px 24px; 
    border-radius: 12px; 
    margin-bottom: 10px; 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    animation: slideIn 0.3s; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    min-width: 300px;
}
.toast.success { background: linear-gradient(135deg, #ff0000, #cc0000); }
.toast.error { background: linear-gradient(135deg, #990000, #660000); }
@keyframes slideIn { from { transform: translateX(400px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* PAGE SYSTEM */
.page { display: none; }
.page.active { display: block; }

/* ANIMATED BACKGROUND */
.animated-bg { position: fixed; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.25; animation: orbPulse 8s ease-in-out infinite; }
.orb-1 { width: 500px; height: 500px; top: -200px; left: -200px; background: #ff0000; }
.orb-2 { width: 500px; height: 500px; top: 40%; right: -200px; background: #ff3333; animation-delay: 2s; }
.orb-3 { width: 500px; height: 500px; bottom: -200px; left: 40%; background: #cc0000; animation-delay: 4s; }
@keyframes orbPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* HEADER */
.header { 
    position: sticky; 
    top: 0; 
    z-index: 100; 
    background: rgba(10, 10, 10, 0.95); 
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
}

.header .container { 
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { 
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff0000, #ff6666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo i { 
    background: linear-gradient(135deg, #ff0000, #cc0000);
    padding: 10px;
    border-radius: 12px;
    color: #fff !important;
}

nav { display: flex; align-items: center; gap: 32px; }
nav a { color: #ccc; text-decoration: none; transition: 0.3s; font-weight: 500; }
nav a:hover { color: #ff3333; }

/* HERO */
.hero { 
    position: relative;
    z-index: 10;
    padding: 120px 40px 100px;
    text-align: center;
}

.badge { 
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 50px;
    margin-bottom: 32px;
}
.badge i { color: #ff3333; }
.badge span { font-weight: 600; color: #ff9999; }

h1 { 
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.gradient { 
    display: block;
    background: linear-gradient(135deg, #ffffff, #ffcccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.gradient-alt { 
    display: block;
    background: linear-gradient(135deg, #ff0000, #ff6666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p { 
    font-size: 20px;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto 48px;
}

.highlight { color: #ff3333; font-weight: 700; }

/* BUTTONS */
.actions { 
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 80px;
}

.btn-primary, .btn-secondary, .btn-success { 
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary { 
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #fff;
    box-shadow: 0 8px 32px rgba(255, 0, 0, 0.4);
}
.btn-primary:hover { 
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 0, 0, 0.6);
}

.btn-secondary { 
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #fff;
}
.btn-secondary:hover { background: rgba(255, 0, 0, 0.1); }

.btn-success { 
    background: linear-gradient(135deg, #ff0000, #990000);
    color: #fff;
}

.large { padding: 20px 40px; font-size: 18px; }

/* STATS */
.stats { 
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.stat { 
    padding: 32px;
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 20px;
    transition: all 0.3s;
    text-align: center;
}

.stat:hover { 
    transform: translateY(-4px);
    border-color: rgba(255, 0, 0, 0.4);
    box-shadow: 0 16px 40px rgba(255, 0, 0, 0.3);
}

.stat i { 
    width: 40px;
    height: 40px;
    color: #ff3333;
    margin-bottom: 16px;
}

.stat .value { 
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff0000, #ff6666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    line-height: 1;
}

.stat .label { 
    color: #999;
    font-size: 14px;
}

/* FEATURES SECTION */
.features, .steps { 
    padding: 100px 40px;
    position: relative;
    z-index: 10;
}

.container { 
    max-width: 1400px;
    margin: 0 auto;
}

h2 { 
    font-size: 56px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.subtitle { 
    text-align: center;
    color: #999;
    font-size: 18px;
    margin-bottom: 64px;
}

/* FEATURES GRID - 3 COLUMNS */
.grid { 
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.card { 
    padding: 36px;
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 20px;
    transition: all 0.3s;
}

.card:hover { 
    transform: translateY(-4px);
    border-color: rgba(255, 0, 0, 0.4);
    box-shadow: 0 16px 40px rgba(255, 0, 0, 0.3);
}

.icon { 
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.icon.purple, .icon.cyan, .icon.indigo, .icon.pink, .icon.orange, .icon.green { 
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.icon i { 
    color: #fff !important;
    width: 28px;
    height: 28px;
}

.card h3 { 
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.card p { 
    color: #ccc;
    line-height: 1.6;
    font-size: 15px;
}

/* HOW IT WORKS SECTION - 3 STEPS */
.step-grid { 
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.step { 
    position: relative;
    padding: 60px 32px 40px;
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 24px;
    transition: all 0.3s;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.step:hover { 
    transform: translateY(-8px);
    border-color: rgba(255, 0, 0, 0.5);
    box-shadow: 0 20px 50px rgba(255, 0, 0, 0.4);
}

/* Large background number */
.step-number { 
    position: absolute;
    top: 0;
    right: 20px;
    font-size: 180px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(180deg, rgba(255, 0, 0, 0.08) 0%, transparent 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    user-select: none;
    pointer-events: none;
    z-index: 1;
}

.step .icon { 
    position: relative;
    z-index: 2;
    margin: 0 auto 24px;
}

.step h3 { 
    position: relative;
    z-index: 2;
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.step p { 
    position: relative;
    z-index: 2;
    color: #ccc;
    font-size: 15px;
    line-height: 1.6;
}

/* FOOTER */
.footer { 
    padding: 48px 40px;
    border-top: 1px solid rgba(255, 0, 0, 0.2);
    background: rgba(10, 10, 10, 0.8);
    position: relative;
    z-index: 10;
}

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

.footer p { color: #999; }

.links { display: flex; gap: 24px; }
.links a { color: #999; text-decoration: none; transition: 0.3s; }
.links a:hover { color: #ff3333; }

/* DASHBOARD */
#dashboard-page { 
    display: flex;
    min-height: 100vh;
    background: #0a0a0a;
}

.sidebar { 
    width: 260px;
    background: rgba(20, 20, 20, 0.95);
    border-right: 1px solid rgba(255, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transition: width 0.3s;
}

.sidebar:not(.open) { width: 80px; }
.sidebar:not(.open) span { display: none; }

.sidebar-header { 
    padding: 24px;
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-header button { 
    background: none;
    color: #ff3333;
    padding: 8px;
}

.sidebar nav { 
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-item { 
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    background: none;
    color: #999;
    text-align: left;
    transition: all 0.3s;
    font-weight: 500;
}

.nav-item:hover { 
    background: rgba(255, 0, 0, 0.1);
    color: #ff3333;
}

.nav-item.active { 
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

.nav-item i { width: 20px; height: 20px; }

.main { 
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.dash-header { 
    padding: 24px 32px;
    background: rgba(20, 20, 20, 0.95);
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#search { 
    flex: 1;
    max-width: 500px;
    padding: 12px 16px;
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 12px;
    color: #fff;
}

#search:focus { border-color: rgba(255, 0, 0, 0.5); }

.dash-header .actions { 
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 0;
}

.icon-btn { 
    width: 44px;
    height: 44px;
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff3333;
    transition: 0.3s;
}

.icon-btn:hover { background: rgba(255, 0, 0, 0.1); }

.content { 
    flex: 1;
    overflow-y: auto;
    padding: 32px;
}

.tab { display: none; }
.tab.active { display: block; }

.stat-grid { 
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.stat-card { 
    padding: 28px;
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 16px;
    transition: all 0.3s;
}

.stat-card:hover { 
    transform: translateY(-2px);
    border-color: rgba(255, 0, 0, 0.4);
}

.stat-card span:first-child { 
    display: block;
    color: #999;
    font-size: 13px;
    margin-bottom: 16px;
}

.stat-card h3 { 
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 8px;
}

.stat-card .change { 
    color: #ff3333;
    font-size: 13px;
    font-weight: 600;
}

.cards { 
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.header { 
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.header h2 { 
    text-align: left;
    margin: 0;
    font-size: 32px;
    font-weight: 900;
}

.products { 
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card { 
    padding: 24px;
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 16px;
    transition: all 0.3s;
    cursor: pointer;
}

.product-card:hover { 
    transform: translateY(-2px);
    border-color: rgba(255, 0, 0, 0.4);
}

.reg-steps { display: flex; gap: 8px; }

.reg-steps .step { 
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.05);
    border: 2px solid rgba(255, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    transition: all 0.3s;
    padding: 0;
    text-align: center;
    overflow: visible;
}

.reg-steps .step.active { 
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(255, 0, 0, 0.4);
}

.step-content { display: none; }
.step-content.active { display: block; }

input, select, textarea { 
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 12px;
    color: #fff;
    transition: all 0.3s;
    margin-bottom: 16px;
}

input:focus, select:focus, textarea:focus { 
    border-color: rgba(255, 0, 0, 0.5);
}

textarea { resize: vertical; min-height: 100px; }

.upload { 
    padding: 48px;
    border: 2px dashed rgba(255, 0, 0, 0.3);
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    margin: 20px 0;
}

.upload:hover { 
    border-color: rgba(255, 0, 0, 0.5);
    background: rgba(255, 0, 0, 0.05);
}

.upload i { 
    width: 64px;
    height: 64px;
    color: #ff3333;
    margin-bottom: 16px;
}

.btn-row { display: flex; gap: 12px; margin-top: 24px; }
.btn-row button { flex: 1; }

.info { 
    background: rgba(255, 0, 0, 0.05);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.info p { margin-bottom: 8px; color: #ccc; }
.info strong { color: #ff3333; }

.verify-grid { 
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.scanner { 
    aspect-ratio: 1;
    background: rgba(255, 0, 0, 0.05);
    border: 2px dashed rgba(255, 0, 0, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.scanner i { 
    width: 72px;
    height: 72px;
    color: #ff3333;
}

.result { 
    padding: 32px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 20px;
    margin-top: 32px;
}

.track-grid { 
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 24px;
}

#timeline { max-height: 600px; overflow-y: auto; }

.badge.green { 
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    background: rgba(255, 0, 0, 0.2);
    color: #ff3333;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .stats, .grid { grid-template-columns: repeat(2, 1fr); }
    .step-grid { grid-template-columns: repeat(2, 1fr); }
    h1 { font-size: 56px; }
    h2 { font-size: 44px; }
    .step { padding: 60px 28px 36px; }
    .step-number { font-size: 140px; }
}

@media (max-width: 768px) {
    .stats, .grid, .step-grid, .stat-grid, .cards, .products, .verify-grid, .track-grid { 
        grid-template-columns: 1fr;
    }
    h1 { font-size: 40px; }
    h2 { font-size: 32px; }
    nav { display: none; }
    .hero { padding: 80px 20px 60px; }
    .features, .steps { padding: 60px 20px; }
    .sidebar { width: 70px; }
    .sidebar.open { width: 260px; }
    .step { padding: 60px 24px 32px; }
    .step-number { font-size: 120px; }
}
/* CASPER HACKATHON RED THEME */
:root {
    --casper-red: #ff0000;
    --casper-dark: #cc0000;
}

.sidebar { 
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(204, 0, 0, 0.1));
}

.btn-primary {
    background: linear-gradient(135deg, #ff0000, #cc0000) !important;
}

.icon.purple, .icon.cyan, .icon.indigo, .icon.pink, .icon.orange, .icon.green {
    background: linear-gradient(135deg, #ff0000, #cc0000) !important;
}

.stat .value, .kpi-value, .gradient {
    background: linear-gradient(135deg, #ff0000, #ff6666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================
   FIXED STEPS & FEATURES LAYOUT
   ============================================ */

/* Ensure the container doesn't constrain the grid too much */
.features, .steps { 
    padding: 100px 20px;
    position: relative;
    z-index: 10;
    overflow: hidden; /* Prevents scrollbar from animations */
}

/* Force a clean 3-column grid for the steps */
.step-grid { 
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    gap: 30px; /* Space between cards */
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch; /* Make all cards same height */
}

/* Style the individual step card */
.step { 
    padding: 40px 30px;
    background: rgba(255, 0, 0, 0.05); /* Red tint background */
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 24px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 0, 0, 0.5);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
}

/* =========================================
   FIXED PAGE VISIBILITY & LAYOUT
   ========================================= */

/* Base Page Hiding */
.page { 
    display: none !important; /* Forces hiding */
    width: 100%;
}

/* Landing Page Active */
#landing-page.active { 
    display: block !important; 
}

/* Dashboard Page Active (Needs Flexbox) */
#dashboard-page.active { 
    display: flex !important; 
    min-height: 100vh;
    background: #0a0a0a;
}

/* Remove 'display: flex' from the generic ID selector so it doesn't override hiding */
#dashboard-page {
    /* display: flex;  <-- REMOVED THIS CAUSE OF BUG */
    background: #0a0a0a;
}
/* ==========================================================================
   CHAINSHIELD - FIXED LAYOUT & VISIBILITY
   ========================================================================== */

/* 1. RESET & BASE */
* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* 2. PAGE VISIBILITY SYSTEM (CRITICAL FIX) */
.page {
    display: none; /* Hide everything by default */
    width: 100%;
    min-height: 100vh;
}

/* Show Landing Page as Block */
#landing-page.active {
    display: block;
}

/* Show Dashboard as Flex (Needed for Sidebar) */
#dashboard-page.active {
    display: flex;
    background: #0a0a0a;
}

/* 3. LANDING PAGE STYLES */
.header { 
    position: sticky; top: 0; z-index: 100; 
    background: rgba(10, 10, 10, 0.95); 
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
}

.container { 
    max-width: 1400px; margin: 0 auto; padding: 0 40px; 
}

/* Hero & Sections */
.hero { padding: 120px 40px 100px; text-align: center; }
.features, .steps { padding: 100px 40px; }

/* Footer - Fixed Alignment */
.footer { 
    padding: 40px;
    border-top: 1px solid rgba(255, 0, 0, 0.2);
    background: #0a0a0a;
    margin-top: auto; /* Pushes to bottom */
}

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

/* 4. DASHBOARD SIDEBAR & LAYOUT */
.sidebar { 
    width: 260px;
    background: #111;
    border-right: 1px solid #333;
    display: flex; flex-direction: column;
    height: 100vh;
    position: sticky; top: 0;
}

.main { 
    flex: 1; 
    display: flex; flex-direction: column; 
    height: 100vh;
    overflow: hidden; 
}

.content {
    flex: 1;
    overflow-y: auto; /* Scrollable content area */
    padding: 30px;
}

/* 5. COMPONENTS */
button { cursor: pointer; border: none; font-family: inherit; }
.btn-primary { 
    background: linear-gradient(135deg, #ff0000, #cc0000); 
    color: white; padding: 12px 24px; border-radius: 8px; font-weight: bold;
}

/* Helper Classes */
.tab { display: none; }
.tab.active { display: block; animation: fadeIn 0.3s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Grid Systems */
.grid, .step-grid, .products, .stat-grid { 
    display: grid; gap: 24px; 
}
.grid { grid-template-columns: repeat(3, 1fr); }
.stat-grid { grid-template-columns: repeat(4, 1fr); }
.products { grid-template-columns: repeat(3, 1fr); }

/* Card Styles */
.card, .product-card, .stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
}
