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

body{
font-family:Tahoma;
background:#070707;
color:#fff;
}

a{
text-decoration:none;
color:white;
}

.container{
width:95%;
margin:auto;
}

/* HEADER */
.main-header{
background:#0d0d0d;
border-bottom:1px solid #2a2a2a;
padding:18px 0;
}

.header-flex{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo-area{
font-size:34px;
font-weight:bold;
color:#f0b000;
display:flex;
align-items:center;
gap:10px;
}

.logo-area img{
width:38px;
}

.main-menu a{
margin-left:25px;
font-weight:bold;
font-size:15px;
transition:.3s;
}

.main-menu a:hover{
color:#f0b000;
}

/* GRID */
.page-grid{
display:grid;
grid-template-columns:260px 1fr 260px;
gap:18px;
margin-top:18px;
}

/* SIDE BOX */
.side-box{
background:#111;
padding:20px;
border-radius:12px;
border:1px solid #2a2a2a;
}

.side-box h2{
color:#fff;
margin-bottom:15px;
font-size:28px;
}

input{
width:100%;
padding:12px;
margin-bottom:10px;
background:#1a1a1a;
border:none;
color:#fff;
border-radius:6px;
}

.gold-btn{
display:block;
width:100%;
padding:13px;
background:#f0b000;
color:#000;
font-weight:bold;
border:none;
border-radius:7px;
text-align:center;
margin-bottom:10px;
}

.small-links a{
color:#888;
font-size:14px;
}

/* CONTENT */
.content-box{
padding:0;
}

/* HERO */
.hero-box{
position:relative;
text-align:center;
padding:140px 40px;
min-height:760px;
border:1px solid #d4af37;
border-radius:16px;
overflow:hidden;

background:
linear-gradient(rgba(0,0,0,.35),rgba(0,0,0,.78)),
url('/img/theme/banner.png');

background-size:cover;
background-position:center;
box-shadow:
0 0 25px rgba(212,175,55,.25),
inset 0 0 80px rgba(0,0,0,.55);
}

/* عنوان */
.hero-box h1{
font-size:88px;
font-weight:900;
color:#ffd700;
margin-bottom:18px;
text-shadow:
0 0 10px #000,
0 0 25px rgba(255,215,0,.55);
letter-spacing:2px;
}

/* وصف */
.hero-box p{
font-size:34px;
color:#fff;
margin-bottom:45px;
text-shadow:0 0 10px #000;
}

/* ازرار */
.hero-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
margin-bottom:45px;
}

.hero-btn{
padding:18px 38px;
font-size:20px;
font-weight:bold;
border-radius:10px;
transition:.3s;
cursor:pointer;
}

.hero-btn.gold{
background:linear-gradient(#ffd700,#b8860b);
color:#000;
box-shadow:0 0 20px rgba(255,215,0,.35);
}

.hero-btn.dark{
border:1px solid gold;
background:rgba(0,0,0,.55);
color:#fff;
}

.hero-btn:hover{
transform:translateY(-4px) scale(1.03);
box-shadow:0 0 30px rgba(255,215,0,.55);
}

/* الاحصائيات */
.hero-stats{
display:flex;
justify-content:center;
gap:22px;
flex-wrap:wrap;
}

.hero-stats div{
background:rgba(255,255,255,.06);
backdrop-filter:blur(8px);
border:1px solid rgba(255,215,0,.45);
padding:22px 38px;
min-width:200px;
border-radius:14px;
box-shadow:0 0 15px rgba(0,0,0,.35);
transition:.3s;
}

.hero-stats div:hover{
transform:translateY(-4px);
border-color:#ffd700;
}

.hero-stats strong{
display:block;
font-size:42px;
color:#ffd700;
margin-bottom:5px;
}

/* جوانب */
.side-box{
background:linear-gradient(180deg,#111,#0b0b0b);
border:1px solid rgba(255,215,0,.25);
box-shadow:0 0 15px rgba(0,0,0,.35);
}

/* هيدر */
.main-header{
background:#0a0a0a;
border-bottom:1px solid rgba(255,215,0,.3);
box-shadow:0 0 20px rgba(0,0,0,.45);
}

/* موبايل */
@media(max-width:1200px){

.hero-box{
padding:90px 20px;
min-height:auto;
}

.hero-box h1{
font-size:52px;
}

.hero-box p{
font-size:22px;
}

.hero-btn{
width:240px;
}

}
border:1px solid #f0b000;
color:#fff;
}

/* FOOTER */
.main-footer{
margin-top:25px;
padding:25px;
text-align:center;
background:#111;
color:#888;
}

/* MOBILE */
@media(max-width:1200px){

.page-grid{
grid-template-columns:1fr;
}

.hero-box{
padding:50px 25px;
min-height:auto;
}

.hero-box h1{
font-size:48px;
}

.hero-box p{
font-size:22px;
}

}