:root {
    --gold: #d4af37;
    --light-gold: #f1d279;
    --dark-bg: #000000;
    --text-gray: #cccccc;
}

body {
    background-color: var(--dark-bg);
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 20px;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    border: 4px double var(--gold); /* El borde doble característico de tu imagen */
    padding: 40px 20px;
    text-align: center;
}

/* Encabezado */
.main-logo {
    width: 150px;
    margin-bottom: 20px;
}

.brand-name {
    color: var(--gold);
    font-size: 2.2rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.2rem;
    font-weight: normal;
    margin-top: 0;
}

.origin {
    color: var(--gold);
    font-style: italic;
    font-size: 0.9rem;
}

/* Bloques de Contenido */
.content-block {
    margin-bottom: 50px;
}

.section-title {
    font-size: 1.4rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sub-title {
    color: var(--light-gold);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.description {
    font-size: 0.95rem;
    color: var(--text-gray);
    max-width: 90%;
    margin: 0 auto 20px;
}

.stats-list {
    list-style: none;
    padding: 0;
    font-size: 0.9rem;
    text-align: center;
}

.stats-list li {
    margin-bottom: 5px;
}

.stats-list li strong {
    color: var(--gold);
}

/* Footer de Aliados */
.strategic-allies {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid var(--gold);
    padding-top: 30px;
    margin-top: 40px;
    text-align: left;
    font-size: 0.8rem;
}

.ally-column {
    flex: 1;
}

.ally-title {
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 10px;
}
