:root{
  --accent:#0b6efd;
}
*{
  box-sizing:border-box;
  font-family:Inter,system-ui,Arial,Helvetica,sans-serif;
}
body{
  margin:0;
  color:#e6eefc;
  line-height:1.5;
  background:#0b4b86;
  position:relative;
}
body::before{
  content:'';
  position:fixed;
  inset:0;
  background:url('../images/bg.jpg') center/cover no-repeat;
  filter:blur(6px) brightness(0.55);
  z-index:-1;
}
.wrap{
  max-width:1100px;
  margin:0 auto;
  padding:0 16px;
}
.site-header{
  position:fixed;
  top:0;
  width:100%;
  z-index:100;
  background:rgba(10,20,40,0.85);
  border-bottom:1px solid rgba(255,255,255,0.15);
  backdrop-filter:blur(12px);
  box-shadow:0 2px 8px rgba(0,0,0,0.4);
}
.site-header .wrap{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  padding:12px 16px;
  row-gap:8px;
}
.brand{
  display:flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  color:#fff;
  font-weight:700;
  font-size:16px;
}
.brand img{
  height:48px;
}
nav a{
  margin-left:14px;
  text-decoration:none;
  color:#b8c8e6;
  font-weight:600;
  font-size:14px;
}
nav a:hover,
nav a.active{
  color:#fff;
  text-decoration:underline;
}
.content-wrap{
  position:relative;
  z-index:2;
  padding-bottom:40px;
}
.container{
  max-width:1100px;
  margin:24px auto;
  padding:0 16px;
}
.hero{
  display:grid;
  gap:16px;
  align-items:center;
  padding:80px 0 40px 0;
  text-align:center;
  color:#fff;
}
.logo{
  height:92px;
  max-width:200px;
  margin:0 auto;
  display:block;
}
.hero h1{
  font-size:28px;
  font-weight:700;
  margin:0;
  color:#fff;
  text-transform:uppercase;
  letter-spacing:0.03em;
}
.player-card{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.15);
  backdrop-filter:blur(10px);
  padding:16px;
  border-radius:12px;
  display:inline-block;
  text-align:left;
  box-shadow:0 20px 60px rgba(0,0,0,0.6);
}
.player-card audio{
  width:260px;
  max-width:100%;
}
.section-card{
  background:rgba(0,0,0,0.35);
  border:1px solid rgba(255,255,255,0.15);
  border-radius:12px;
  padding:16px;
  box-shadow:0 20px 60px rgba(0,0,0,0.6);
  backdrop-filter:blur(10px);
  color:#e6eefc;
}
.section-card h2,
.section-card h1{
  margin-top:0;
  font-size:22px;
  color:#fff;
}
.news-list{
  list-style:none;
  padding:0;
  margin:0;
}
.news-list li{
  padding:10px 0;
  border-bottom:1px dashed rgba(255,255,255,0.25);
  font-size:15px;
}
.news-list a{
  color:#6db3ff;
  text-decoration:none;
  font-weight:600;
}
.news-list a:hover{
  text-decoration:underline;
  color:#fff;
}
.meta{
  font-size:12px;
  color:rgba(255,255,255,0.7);
}
.quick-links{
  margin:18px 0;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:center;
}
.btn{
  background:var(--accent);
  color:#fff;
  padding:10px 14px;
  border-radius:10px;
  text-decoration:none;
  display:inline-block;
  border:0;
  font-weight:600;
  font-size:14px;
  box-shadow:0 12px 30px rgba(11,110,253,0.4);
  cursor:pointer;
  transition:0.2s;
}
.btn:hover{
  background:#0d5edc;
  transform:translateY(-2px);
}
.site-footer{
  background:rgba(10,20,40,0.8);
  border-top:1px solid rgba(255,255,255,0.15);
  backdrop-filter:blur(8px);
  margin-top:40px;
  padding:16px 0;
  color:#fff;
  text-align:center;
  font-size:14px;
}
.site-footer .small{
  color:rgba(255,255,255,0.7);
  font-size:12px;
}
label{
  display:block;
  margin-bottom:12px;
  color:#e6eefc;
  font-size:14px;
  font-weight:500;
}
input, textarea, select{
  width:100%;
  padding:10px 12px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.25);
  margin-top:6px;
  background:rgba(0,0,0,0.35);
  color:#e6eefc;
  font-size:14px;
  outline:none;
}
input:focus, textarea:focus, select:focus{
  border-color:var(--accent);
  box-shadow:0 0 0 2px rgba(11,110,253,0.4);
}
.partners-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:16px;
  margin-top:16px;
}
.partner-box{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.18);
  border-radius:12px;
  padding:16px;
  text-align:center;
  backdrop-filter:blur(10px);
  min-height:120px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  color:#e6eefc;
}
.partner-box-name{
  font-weight:700;
  font-size:15px;
  color:#fff;
}
.partner-box a{
  color:#6db3ff;
  font-size:13px;
  text-decoration:none;
  word-break:break-word;
  margin-top:6px;
}
.partner-box a:hover{
  text-decoration:underline;
  color:#fff;
}
@media(min-width:800px){
  .hero{grid-template-columns:1fr;}
}
