/* 🇺🇸 Autonomous Grid Foundation | Universal Suite Layout CSS */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    color: #f8fafc;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
}

.container {
    background-color: #1e293b;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    max-width: 650px;
    width: 100%;
    border: 1px solid #334155;
    text-align: center;
    margin-bottom: 24px;
}

h1 {
    font-size: 28px;
    margin-bottom: 8px;
    color: #38bdf8;
}

p {
    color: #94a3b8;
    margin-bottom: 24px;
    font-size: 15px;
}

/* Universal Advertisement Block Placeholder */
.ad-placeholder {
    width: 100%;
    max-width: 650px;
    background-color: #1e293b;
    border: 1px dashed #475569;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    color: #64748b;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

/* Universal Compliant Footer Structures */
footer {
    font-size: 12px;
    color: #64748b;
    text-align: center;
    margin-top: auto;
}

footer a {
    color: #38bdf8; 
    text-decoration: none;
    margin: 0 2px;
    transition: color 0.2s ease;
}

footer a:hover {
    color: #94a3b8;
}

.info-section {
    max-width: 650px;
    width: 100%;
    text-align: left;
    background: #1e293b;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #334155;
    margin-bottom: 40px;
}
.info-section h2 { font-size: 18px; color: #38bdf8; margin-bottom: 14px; border-bottom: 1px solid #334155; padding-bottom: 6px; }
