/* ATLAS CHAIN - GLOBAL STYLES */

:root {
    --deep-sea: #0047AB; /* Vibrant Cobalt */
    --midnight: #002366; 
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #B8860B 100%);
    --steel: #4A5568;
    --ice-white: #F8FAFC;
    --border-color: #E2E8F0;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: var(--steel);
    line-height: 1.6;
}

/* Header & Logo */
header {
    padding: 60px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    background: #ffffff;
}

.logo {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--deep-sea);
    margin: 0;
}

.logo span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: var(--gold-gradient);
    color: #1a202c;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: 0 4px 0 #8B7500;
}

/* Structure */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

h2.section-title {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--midnight);
    border-bottom: 3px solid var(--deep-sea);
    display: inline-block;
    margin-bottom: 30px;
}

/* Cards & Feeds */
.card {
    border: 2px solid var(--border-color);
    border-top: 4px solid var(--deep-sea);
    padding: 25px;
    margin-bottom: 20px;
    background: #fff;
}

.badge {
    background: var(--deep-sea);
    color: white;
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}
