/* Typography & Core */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&family=Oswald:wght@300;500;700&display=swap');

body {
    background-color: #050505;
    color: #e0e0e0;
    font-family: 'Oswald', sans-serif;
    margin: 0;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Hero */
header {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), 
                url('https://images.unsplash.com/photo-1614850523296-d8c1af93d400?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 4px solid #d4af37;
}

h1 {
    font-family: 'Cinzel', serif;
    font-size: 5rem;
    margin: 0;
    line-height: 1;
}

.accent { color: #d4af37; text-shadow: 0 0 20px #d4af37; }
.subtitle { letter-spacing: 5px; color: #888; margin-bottom: 10px; }

/* Sections */
h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: #d4af37;
    margin-top: 60px;
    border-bottom: 1px solid #d4af37;
    display: inline-block;
}

.info-block {
    background: #111;
    padding: 30px;
    border-left: 4px solid #d4af37;
    font-size: 1.2rem;
    color: #bbb;
}

/* Card Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: #111;
    padding: 25px;
    position: relative;
    transition: 0.4s;
}

.card:hover { transform: scale(1.03); background: #1a1a1a; }

.human-border { border-top: 4px solid #00a2ff; }
.god-border { border-top: 4px solid #ff3e3e; }

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    padding: 5px 15px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
}

.human-bg { background: #00a2ff; color: white; }
.god-bg { background: #ff3e3e; color: white; }

.stats {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #d4af37;
}

/* Table */
.table-wrapper { overflow-x: auto; margin-top: 30px; }

table {
    width: 100%;
    border-collapse: collapse;
    background: #0a0a0a;
}

th, td {
    padding: 15px;
    text-align: center;
    border: 1px solid #222;
}

th { background: #d4af37; color: black; text-transform: uppercase; }

.winner-god { color: #ff3e3e; font-weight: bold; }
.winner-human { color: #00a2ff; font-weight: bold; }

/* Footer */
footer {
    margin-top: 80px;
    padding: 50px 0;
    background: #000;
    text-align: center;
    border-top: 1px solid #222;
}

.copyright { font-size: 0.8rem; color: #444; margin-top: 10px; }