/*
Theme Name: WMOM Theme
Version: 3.5
*/

/* GLOBAL */

body{

margin:0;
background:#000;
color:#fff;
font-family:Arial, Helvetica, sans-serif;
overflow-x:hidden;
padding-bottom:140px;

}

/* KEEP ALL YOUR EXISTING CSS ABOVE THIS LINE */

/* FCC PAGE ONLY */

.fcc-container{

max-width:1100px;
margin:auto;
padding:40px 20px;

}

.fcc-title{

text-align:center;
font-size:36px;
margin-bottom:40px;
color:#ff3366;
letter-spacing:2px;

}

.fcc-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-bottom:50px;

}

.fcc-card{

background:linear-gradient(145deg,#111,#1a1a1a);
border:1px solid #222;
border-radius:10px;
padding:25px;
text-align:center;
box-shadow:0 0 25px rgba(255,0,80,.15);

}

.fcc-label{

font-size:14px;
color:#aaa;
text-transform:uppercase;
letter-spacing:1px;
margin-bottom:8px;

}

.fcc-value{

font-size:20px;
font-weight:bold;
color:white;

}

.fcc-section{

background:#111;
border:1px solid #222;
border-radius:10px;
padding:30px;
margin-bottom:30px;
box-shadow:0 0 20px rgba(0,0,0,.6);

}

.fcc-section h2{

color:#ff3366;
margin-top:0;

}

.fcc-button{

display:inline-block;
background:#ff004c;
padding:14px 28px;
border-radius:6px;
font-weight:bold;
margin-top:10px;

}

.fcc-button:hover{

background:#ff3366;

}

/* MOBILE */

@media(max-width:800px){

.fcc-title{

font-size:28px;

}

}