*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


body{
    min-height:100vh;
    background:radial-gradient(circle at top,#1a1a1a,#050505 70%);
    display:flex;
    flex-direction:column;
    align-items:center;
    font-family:Inter,sans-serif;
    color:#fff;
}


.layout{
    width:100%;
    display:flex;
    justify-content:center;
    margin:40px auto;
}


.container{
    max-width:1100px;
    width:100%;
    padding:60px;
    background:linear-gradient(180deg,#1c1c1c,#0f0f0f);
    border-radius:30px;
    text-align:center;
    box-shadow:0 40px 100px rgba(0,0,0,.9);
}


.logo{
    width:140px;
    border-radius:25%;
    box-shadow:0 0 40px #00ffea;
    margin-bottom:20px;
}


h1{
    font-family:Montserrat,sans-serif;
    font-size:42px;
}

p{
    color:#aaa;
    margin:10px 0 30px;
}

.live-btn{
    display:block;
    padding:18px;
    border-radius:14px;
    text-decoration:none;
    color:#fff;
    font-weight:bold;
    margin-bottom:35px;
    transition: all 0.4s ease;
}

.live-btn.on{
    background:linear-gradient(135deg,#ff0033,#ff0055);
    animation:pulse 1.5s infinite;
}

.live-btn.off{
    background:#333;
    color:#888;
}

@keyframes pulse{
    0%{box-shadow:0 0 20px #ff0033;}
    50%{box-shadow:0 0 60px #ff0033;}
    100%{box-shadow:0 0 20px #ff0033;}
}

.content-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    margin-top:20px;
}

.links a{
    display:block;
    background:#1f1f1f;
    margin:14px 0;
    padding:18px;
    border-radius:14px;
    text-decoration:none;
    color:#fff;
    font-size:17px;
    transition:.3s;
}
.links a:hover{
    background:#2a2a2a;
    transform:translateY(-3px);
}

.schedule-list{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:12px;
}

.schedule-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;

  padding:12px 14px;
  border-radius:14px;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);

  transition: 0.25s;
}

.schedule-row:hover{
  transform: translateY(-2px);
  box-shadow: 0 0 18px var(--glow, rgba(0,198,255,0.35));
}

.schedule-left{
  font-weight:800;
  color:#ffffff;
  white-space:nowrap;
}

.schedule-right{
  color:#d0d0d0;
  text-align:right;
  overflow-wrap:anywhere;
}

.schedule-row.single{
  justify-content:flex-start;
}

@media (max-width: 520px){
  .schedule-row{
    flex-direction:column;
    align-items:flex-start;
  }
  .schedule-right{
    text-align:left;
    width:100%;
  }
}

.schedule-box{
    background:#141414;
    border-radius:18px;
    padding:20px;
    box-shadow:0 0 30px rgba(0, 255, 242, 0.4);
    border:1px solid rgba(15, 201, 207, 0.4);
    text-align:center;
}

.schedule-box h3{
    font-family:Montserrat;
    color:#2be6ff;
    margin-bottom:15px;
}

.schedule-box p{
    background:#1f1f1f;
    margin:8px 0;
    padding:10px;
    border-radius:10px;
    font-weight:bold;
    color:#fff;
}

.collab{
    margin-top:40px;
    padding:30px;
    border-radius:20px;
    border:1px solid rgba(0, 247, 255, 0.5);
    box-shadow:0 0 40px rgba(6, 255, 255, 0.6);
}

.collab h2{
    font-family:Montserrat;
    color:#02ffff;
    margin-bottom:10px;
}

.page-footer{
    margin-top:auto;
    padding:20px;
    text-align:center;
    font-size:12px;
    color:#666;
}

.page-footer a{
    color:#888;
    text-decoration:none;
}

@media(max-width:900px){
    .container{
        padding:35px;
    }
    h1{
        font-size:32px;
    }
    .content-grid{
        grid-template-columns:1fr;
    }
}

.social-btn{
    display:flex;
    align-items:center;
    gap:10px;
}

.social-btn i{
    font-size:22px;
    min-width:22px;
}

.kick {--glow:#00e701; }
.youtube{ --glow:#ff0000; }
.instagram{ --glow:#ff3c8f; }
.tiktok{ --glow:#00f2ea; }
.discord{ --glow:#5865F2; }
.donate{ --glow:#ff4d6d; }

.social-btn:hover{
    box-shadow:
        0 0 10px var(--glow),
        0 0 25px var(--glow),
        0 0 60px var(--glow);
    transform:scale(1.05);
}

.social-btn span.ripple{
    position:absolute;
    border-radius:50%;
    transform:scale(0);
    animation:ripple 0.6s linear;
    background:rgba(255,255,255,0.4);
}

@keyframes ripple{
    to{
        transform:scale(4);
        opacity:0;
    }
}

#livePlayerBox{
    margin:30px auto;
    width:100%;
    max-width:720px;
    aspect-ratio:16/9;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 0 40px rgba(255,0,0,.6);
}

#livePlayerBox iframe{
    width:100%;
    height:100%;
}

/* Mobil canlı bottom bar */
.mobile-live-bar{
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 12px 14px;
  border-radius: 16px;

  background: rgba(20,20,20,0.85);
  border: 1px solid rgba(255,0,60,0.55);
  box-shadow:
    0 0 18px rgba(255,0,60,0.55),
    0 0 45px rgba(255,0,60,0.20);
  backdrop-filter: blur(10px);
}

.mlb-left{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight: 700;
}

.mlb-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#ff0033;
  box-shadow:0 0 12px rgba(255,0,60,0.9);
  animation: mlbPulse 1.2s infinite;
}

@keyframes mlbPulse{
  0%{ transform: scale(1); opacity:1; }
  50%{ transform: scale(1.35); opacity:.75; }
  100%{ transform: scale(1); opacity:1; }
}

.mlb-text{
  letter-spacing: .5px;
}

.mlb-btn{
  text-decoration:none;
  color:#fff;
  font-weight:800;

  padding:10px 14px;
  border-radius:12px;

  background: linear-gradient(135deg,#ff0033,#ff0055);
  box-shadow: 0 0 18px rgba(255,0,60,0.65);
}

/* Sadece mobilde göster (desktop/tablet gizle) */
@media (min-width: 901px){
  .mobile-live-bar{ display:none !important; }
}

/* Mobilde bar altta kaplamasın diye sayfaya boşluk */
@media (max-width: 900px){
  body{ padding-bottom: 90px; }
}

.live-popup{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:99999;
}

.live-popup{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:99999;
}

.lp-box{
  background:#121212;
  padding:30px;
  border-radius:20px;
  text-align:center;
  box-shadow:0 0 60px rgba(255,0,60,.8);
  animation: popIn .4s ease;
}

.lp-box a{
  display:inline-block;
  margin-top:15px;
  padding:10px 18px;
  border-radius:12px;
  background:#ff0033;
  color:#fff;
  text-decoration:none;
  font-weight:bold;
}

@keyframes popIn{
  from{ transform:scale(.8); opacity:0; }
  to{ transform:scale(1); opacity:1; }
}

/* SOL EKİPMAN KUTUSU */
.equipment-box{
    background:#141414;
    border-radius:18px;
    padding:20px;
    border:1px solid rgba(40, 255, 255, 0.45);
    box-shadow:0 0 30px rgba(40, 248, 255, 0.35);
    text-align:left;
}

.equipment-box h3{
    font-family:Montserrat;
    color:#23e5ff;
    margin-bottom:15px;
    text-align:center;
}

/* Ekipman satırları */
.equip-item{
    display:flex;
    justify-content:space-between;
    gap:12px;
    background:#1f1f1f;
    margin:10px 0;
    padding:12px 14px;
    border-radius:12px;
}

.equip-title{
    font-weight:700;
    color:#fff;
}

.equip-value{
    color:#bbb;
    text-align:right;
}

.equip-card{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 12px 14px;
  border-radius: 14px;
  color: #eaeaea;
  line-height: 1.5;
  transition: 0.25s;
}

.equip-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 0 18px var(--glow, rgba(0,198,255,0.35));
}

.equip-list{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:12px;
}

.equip-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;

  padding:12px 14px;
  border-radius:14px;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);

  transition: 0.25s;
}

.equip-row:hover{
  transform: translateY(-2px);
  box-shadow: 0 0 18px var(--glow, rgba(0,198,255,0.35));
}

/* Sol kısım (başlık) */
.equip-left{
  font-weight:800;
  color:#ffffff;
  white-space:nowrap;
}

/* Sağ kısım (değer) */
.equip-right{
  color:#d0d0d0;
  text-align:right;
  overflow-wrap:anywhere;
}

/* ":" yoksa tek satır */
.equip-row.single{
  justify-content:flex-start;
}

/* Mobilde daha rahat görünüm */
@media (max-width: 520px){
  .equip-row{
    flex-direction:column;
    align-items:flex-start;
  }
  .equip-right{
    text-align:left;
    width:100%;
  }
}

.name-box{
  margin-top: 24px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.name-box form{
  display:flex;
  gap:10px;
  justify-content:center;
  margin-top:12px;
  flex-wrap:wrap;
}

.name-box input{
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.35);
  color: #fff;
  min-width: 240px;
}

.name-box button{
  padding: 12px 14px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary, #00c6ff), var(--primary-soft, #00e5ff));
  color: #fff;
}

.name-box small{
  display:block;
  margin-top:10px;
  color:#bdbdbd;
}
