
/*
Theme Name: Counsel & Chaos Expanded
Version: 2.0
*/

body{
margin:0;
background:#04070c;
color:white;
font-family:Arial,sans-serif;
overflow-x:hidden;
}

.container{
width:min(1500px, calc(100% - 40px));
margin:auto;
}

.header{
position:sticky;
top:0;
z-index:999;
background:#050810;
border-bottom:1px solid rgba(214,162,61,.3);
}

.header-inner{
display:flex;
justify-content:space-between;
align-items:center;
min-height:82px;
}

.logo{
color:#d6a23d;
font-size:2rem;
font-weight:bold;
text-decoration:none;
}

.nav{
display:flex;
gap:20px;
list-style:none;
}

.nav a{
color:#f4e5bf;
text-decoration:none;
font-weight:bold;
}

.section{
padding:60px 0;
}

.hero-image{
width:100%;
border-radius:24px;
overflow:hidden;
border:2px solid rgba(214,162,61,.3);
box-shadow:0 30px 100px rgba(0,0,0,.7);
}

.hero-image img{
width:100%;
display:block;
}

.grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.card{
background:#0a1118;
padding:24px;
border-radius:20px;
border:1px solid rgba(214,162,61,.15);
}

.card h3{
color:#d6a23d;
margin-top:0;
}

.players{
display:grid;
grid-template-columns:repeat(6,1fr);
gap:18px;
}

.player{
background:#10161f;
padding:20px;
border-radius:18px;
text-align:center;
border:1px solid rgba(214,162,61,.12);
}

.player span{
font-size:2rem;
display:block;
margin-bottom:10px;
}

.rulebook,.legal,.news{
background:#0a1118;
padding:30px;
border-radius:24px;
border:1px solid rgba(214,162,61,.14);
margin-bottom:24px;
}

.rulebook h2,.legal h2,.news h2{
color:#d6a23d;
}

.footer{
padding:40px 0;
text-align:center;
border-top:1px solid rgba(214,162,61,.2);
color:#aaa;
}

@media(max-width:1100px){
.grid{
grid-template-columns:1fr 1fr;
}
.players{
grid-template-columns:1fr 1fr 1fr;
}
}

@media(max-width:700px){
.grid,.players{
grid-template-columns:1fr;
}

.header-inner{
flex-direction:column;
padding:20px 0;
}
}
