body{
  margin:0;
  font-family:Arial;
  background:#0f172a;
  color:white;
}

/* HEADER */
.header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 40px;
  background:linear-gradient(90deg,#0f172a,#1e293b);
}

.logo{
  font-weight:bold;
  font-size:22px;
}
.logo span{
  color:#ff7a00;
}

nav a{
  margin:0 10px;
  color:white;
  text-decoration:none;
}
nav a:hover{
  color:#ff7a00;
}

.auth button{
  margin-left:10px;
  background:#ff7a00;
  border:none;
  padding:8px 12px;
  cursor:pointer;
  border-radius:5px;
}

.hero{
  position:relative;
  height:450px;
  display:flex;
  align-items:center;
}

.hero img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(0,0,0,0.85),rgba(0,0,0,0.2));
}

.hero-content{
  position:relative;
  z-index:2;
  padding-left:60px;
  max-width:500px;
}

.hero h1{
  font-size:50px;
  margin-bottom:10px;
}

.hero p{
  opacity:0.8;
  margin-bottom:20px;
}

.hero button{
  background:#ff7a00;
  padding:12px 20px;
  border:none;
  border-radius:6px;
  color:white;
  font-weight:bold;
}

/* FEATURE */
.features{
  display:flex;
  justify-content:space-around;
  padding:20px;
  background:#08121c;
}

/* GRID */
.grid{
  display:flex;
  gap:20px;
  padding:40px;
}

/* KUPON */
.kupon{
  background:#13293d;
  padding:20px;
  border-radius:12px;
  width:300px;
}

.kupon-head{
  background:#ff7a00;
  padding:6px 10px;
  border-radius:6px;
  display:inline-block;
  margin-bottom:15px;
  font-size:12px;
}

.kupon-table{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.kupon-row{
  display:flex;
  justify-content:space-between;
  padding-bottom:6px;
  border-bottom:1px solid rgba(255,255,255,0.1);
}

.match{
  opacity:0.9;
}

.oran{
  font-weight:bold;
}

.kupon-footer{
  display:flex;
  justify-content:space-between;
  margin-top:15px;
  font-size:18px;
}

.kupon-btn{
  margin-top:15px;
  width:100%;
  background:#ff7a00;
  padding:12px;
  border:none;
  border-radius:6px;
  font-weight:bold;
}
/* YAZAR */
.yazarlar{
  padding:40px;
}

.yazar-grid{
  display:flex;
  gap:20px;
}

.yazar{
  background:#13293d;
  padding:20px;
  border-radius:12px;
  text-align:center;
  width:180px;
}

.yazar img{
  width:70px;
  height:70px;
  border-radius:50%;
}

/* RADIO */
.radio{
  margin:40px;
  padding:30px;
  background:#08121c;
  text-align:center;
}