@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600&family=Crimson+Text:ital,wght@0,400;0,600;1,400&display=swap');

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

body {
    font-family: 'Crimson Text', serif;
    background: linear-gradient(135deg, #2c1810 0%, #1a0f08 50%, #0f0806 100%);
    color: #d4af37;
    line-height: 1.6;
    padding: 20px;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(139, 69, 19, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(160, 82, 45, 0.2) 0%, transparent 50%);
    min-height: 100vh;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #3d2817 0%, #2a1a10 100%);
    border: 3px solid #8b4513;
    border-radius: 0;
    padding: 30px;
    box-shadow: 
        0 0 30px rgba(139, 69, 19, 0.5),
        inset 0 0 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #d4af37, #8b4513, #d4af37, #8b4513);
    z-index: -1;
    opacity: 0.3;
}

header {
    text-align: center;
    border-bottom: 3px solid #8b4513;
    padding-bottom: 25px;
    margin-bottom: 30px;
    position: relative;
}

header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #d4af37;
}

h1 {
    font-family: 'Cinzel', serif;
    font-size: 56px;
    color: #d4af37;
    text-shadow: 
        2px 2px 0 #8b4513,
        4px 4px 0 #654321,
        6px 6px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 6px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.subtitle {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    color: #cd853f;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.subtitle-2 {
    font-size: 14px;
    color: #a0522d;
    font-style: italic;
    letter-spacing: 1px;
}

nav {
    text-align: center;
    border-bottom: 2px solid #8b4513;
    padding: 15px 0;
    margin-bottom: 30px;
}

nav a {
    color: #f4a460;
    text-decoration: none;
    margin: 0 20px;
    padding: 8px 15px;
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 1px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

nav a:hover {
    background-color: rgba(139, 69, 19, 0.3);
    border-color: #d4af37;
    color: #fff;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

section {
    margin-bottom: 40px;
    padding: 25px;
    border: 2px solid #8b4513;
    background: linear-gradient(135deg, rgba(61, 40, 23, 0.8) 0%, rgba(42, 26, 16, 0.8) 100%);
    border-radius: 0;
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(139, 69, 19, 0.3);
}

h2 {
    color: #d4af37;
    border-bottom: 2px solid #8b4513;
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-family: 'Cinzel', serif;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

ul {
    list-style-position: inside;
    padding-left: 25px;
}

li {
    margin: 12px 0;
    font-size: 16px;
    color: #daa520;
}

li::marker {
    color: #d4af37;
}

.civ-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.civ-card {
    background: linear-gradient(135deg, rgba(42, 26, 16, 0.9) 0%, rgba(31, 19, 11, 0.9) 100%);
    border: 2px solid #8b4513;
    padding: 20px;
    text-align: center;
    box-shadow: 
        0 0 15px rgba(139, 69, 19, 0.4),
        inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.civ-card h3 {
    color: #d4af37;
    font-family: 'Cinzel', serif;
    font-size: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.civ-card p {
    color: #cd853f;
    font-size: 14px;
    font-style: italic;
}

button {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    padding: 18px 50px;
    background: linear-gradient(135deg, #8b4513 0%, #654321 100%);
    color: #d4af37;
    border: 3px solid #d4af37;
    cursor: pointer;
    display: block;
    margin: 25px auto;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    box-shadow: 
        0 0 20px rgba(212, 175, 55, 0.4),
        inset 0 0 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

button:hover {
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    color: #2c1810;
    box-shadow: 
        0 0 30px rgba(212, 175, 55, 0.8),
        inset 0 0 15px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.status {
    text-align: center;
    color: #f4a460;
    font-size: 16px;
    font-style: italic;
}

footer {
    text-align: center;
    padding-top: 25px;
    border-top: 2px solid #8b4513;
    font-size: 14px;
    color: #a0522d;
    font-style: italic;
}
