html, body { height: 100%; }

body{
  margin: 0;
  background: #F8C000; /* amarelo do fundo */
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Placeholder preto para o campo de busca inline */
#searchInputInline::placeholder {
  color: #111;
  opacity: 1;
}
:root{
  --bg:#0b0b0b;
  --panel:#111;
  --card:#141414;
  --text:#f2f2f2;
  --muted:#a5a5a5;
  --line:rgba(255,255,255,.08);

  --yellow:#f4c400;
  --yellow2:#eab308;

  --radius:16px;
  --shadow: 0 18px 45px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 600px at 20% 10%, #FFE766 0%, #FFDF00 45%, #F2C438 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.07'/%3E%3C/svg%3E");
  background-blend-mode: overlay;
  color: var(--text);
}

/* Container */
.container{
  width:min(1180px, 92%);
  margin:0 auto;
}

/* Topbar */
.topbar{
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top:0;
  z-index: 50;
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 240px;
}
.brand__title{
  font-family: Oswald, Inter, sans-serif;
  font-weight:700;
  letter-spacing:.6px;
  font-size:28px;
  color: var(--yellow);
  line-height:1;
}
.brand__title--small{font-size:22px}
.brand__tag{
  color: var(--muted);
  font-size:12px;
  margin-top: 2px;
}
.brand--horizontal {
  display: flex;
  align-items: center;
  gap: 16px;
}
.brand__img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.nav{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.nav__link{
  color: #eaeaea;
  text-decoration:none;
  font-weight:600;
  font-size:13px;
  padding:8px 10px;
  border-radius: 999px;
  transition: .2s;
}
.nav__link:hover{background: rgba(255,255,255,.06)}
.nav__link.is-active{
  background: rgba(244,196,0,.18);
  color: var(--yellow);
}

.actions{display:flex; align-items:center; gap:10px}
.icon-btn{
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  color:#fff;
  border-radius: 12px;
  padding:10px 12px;
  cursor:pointer;
}
.icon-btn:hover{background: rgba(255,255,255,.10)}

/* Burger */
.burger{
  width:44px; height:42px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  cursor:pointer;
  display:none;
  position:relative;
}
.burger span{
  position:absolute;
  left:12px; right:12px;
  height:2px;
  background:#fff;
  border-radius:999px;
}
.burger span:nth-child(1){top:14px}
.burger span:nth-child(2){top:20px; opacity:.85}
.burger span:nth-child(3){top:26px}

/* Ticker */
.ticker{
  background: linear-gradient(180deg, #0f0f0f, #111);
  border-bottom: 1px solid var(--line);
}
.ticker__inner{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 0;
}
.ticker__text{
  color:#eaeaea;
  font-size:13px;
  flex:1;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.ticker__cta{
  color: var(--yellow);
  text-decoration:none;
  font-weight:700;
  font-size:13px;
}

/* Pills / tags */
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  color:#fff;
}
.pill--live{
  background: rgba(244,196,0,.18);
  color: var(--yellow);
  border-color: rgba(244,196,0,.25);
}
.pill--sponsor{
  background: rgba(255,255,255,.08);
  color:#fff;
}

.tag{
  position:absolute;
  top:12px; left:12px;
  background: rgba(0,0,0,.65);
  color:#fff;
  font-weight:800;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border: 1px solid rgba(255,255,255,.12);
}
.tag--yellow{
  background: rgba(244,196,0,.95);
  color:#121212;
  border-color: rgba(0,0,0,.15);
}

/* Searchbar */
.searchbar{
  background: rgba(0,0,0,.85);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.searchbar__inner{
  display:flex;
  gap:10px;
  padding:12px 0;
}
.searchbar input{
  flex:1;
  padding:12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:#fff;
  outline:none;
}

/* Page area */
.page{padding:18px 0 28px}
.layout{
  display:grid;
  grid-template-columns: 1fr 360px;
  gap:18px;
}

/* Main / Sidebar panels */
.main, .sidebar{
  background: rgba(0,0,0,.82);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.main{padding:16px}
.sidebar{padding:14px}

/* Hero */
.hero{
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 2px);
  padding: 18px 24px;
}
.hero__media{
  position:relative;
  border-radius: 14px;
  overflow:hidden;
  display:block;
  width: 100%;
  max-width: 640px;
  min-height: 220px;
  max-width: 420px;
  flex-shrink: 0;
  aspect-ratio: 16/9;
  margin-bottom: 12px;
  object-fit: cover;
}
.hero__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter: saturate(1.05) contrast(1.02);
}
.hero__content{display:flex; flex-direction:column}
.hero__title{
  margin:0;
  font-family: Oswald, Inter, sans-serif;
  font-size:34px;
  line-height:1.05;
  letter-spacing:.2px;
}
.hero__excerpt{
  margin:10px 0 12px;
  color: #dedede;
  font-size:14px;
  line-height:1.55;
}
.meta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  color: var(--muted);
  font-size:12px;
}
.hero__actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

/* Buttons */
.btn{
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:#fff;
  padding:10px 12px;
  font-weight:800;
  cursor:pointer;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}
.btn:hover{background: rgba(255,255,255,.10)}
.btn--primary{
  background: var(--yellow);
  border-color: rgba(0,0,0,.18);
  color:#121212;
}
.btn--primary:hover{filter:brightness(.96)}
.btn--ghost{background: rgba(255,255,255,.06)}
.btn--sm{padding:8px 10px; font-size:12px}
.w100{width:100%}

/* Grid 3 */
.grid3{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.card{
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow:hidden;
}
.card__media{
  position:relative;
  display:block;
  height: 155px;
  overflow:hidden;
}
.card__media img{width:100%; height:100%; object-fit:cover; display:block}
.card__body{padding:12px}
.card__title{margin:0; font-size:15px; line-height:1.25}
.card__title a{color:#fff; text-decoration:none}
.card__title a:hover{color: var(--yellow)}
.card__excerpt{margin:8px 0 10px; color:#d7d7d7; font-size:13px; line-height:1.45}

/* Banner */
.banner{
  margin-top:14px;
  border-radius: 18px;
  border: 1px solid rgba(244,196,0,.24);
  background: linear-gradient(90deg, rgba(244,196,0,.18), rgba(255,255,255,.03));
  padding:14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.banner__left h3{
  margin:6px 0 6px;
  font-family: Oswald, Inter, sans-serif;
  font-size:22px;
  letter-spacing:.3px;
}
.banner__left p{margin:0; color:#e5e5e5; font-size:13px}
.banner__right{display:flex; gap:10px; flex-wrap:wrap}

/* Feed */
.feed{margin-top:16px}
.feed__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}
.feed__head h2{
  margin:0;
  font-family: Oswald, Inter, sans-serif;
  font-size:24px;
  color: var(--yellow);
}
.feed__filters{display:flex; gap:8px; flex-wrap:wrap}
.chip{
  border-radius: 999px;
  padding:8px 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color:#fff;
  font-weight:800;
  font-size:12px;
  cursor:pointer;
}
.chip.is-active{
  background: rgba(244,196,0,.18);
  border-color: rgba(244,196,0,.25);
  color: var(--yellow);
}

/* Row item */
.row{
  display:grid;
  grid-template-columns: 200px 1fr;
  gap:12px;
  padding:12px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  margin-bottom:10px;
}
.row__media{
  border-radius: 14px;
  overflow:hidden;
  display:block;
  height: 140px;
}
.row__media img{width:100%; height:100%; object-fit:cover; display:block}
.row__top{display:flex; align-items:center; gap:10px; flex-wrap:wrap}
.row__title{margin:8px 0 8px; font-size:18px; line-height:1.2}
.row__title a{color:#fff; text-decoration:none}
.row__title a:hover{color: var(--yellow)}
.row__excerpt{margin:0 0 10px; color:#dcdcdc; font-size:13px; line-height:1.5}
.row__actions{display:flex; gap:8px; flex-wrap:wrap}

.loadmore{
  width:100%;
  padding:12px 14px;
  border-radius: 14px;
  border: 1px dashed rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  color:#fff;
  font-weight:900;
  cursor:pointer;
  margin-top:8px;
}
.loadmore:hover{background: rgba(255,255,255,.08)}

/* Sidebar boxes */
.box{
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding:12px;
  margin-bottom:12px;
}
.box__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}
.box__head h3{
  margin:0;
  font-family: Oswald, Inter, sans-serif;
  font-size:18px;
  letter-spacing:.2px;
}
.hotlist{margin:0; padding-left:18px}
.hot{margin:10px 0}
.hot__title{color:#fff; text-decoration:none; font-weight:800}
.hot__title:hover{color: var(--yellow)}

.cats{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.cat{
  padding:9px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color:#fff;
  text-decoration:none;
  font-weight:900;
  font-size:12px;
}
.cat:hover{background: rgba(255,255,255,.10)}
.sponsor__body{display:flex; flex-direction:column; gap:10px}
.muted{color: var(--muted)}

/* Footer */
.footer{
  margin-top:22px;
  background: #090909;
  border-top: 1px solid rgba(255,255,255,.10);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:18px 0;
}
.footer__cols{display:flex; gap:26px; flex-wrap:wrap}
.footer__col{display:flex; flex-direction:column; gap:8px}
.footer__col h4{margin:0; color: var(--yellow); font-family: Oswald, Inter, sans-serif}
.footer__col a{color:#eaeaea; text-decoration:none; font-weight:700; font-size:13px}
.footer__col a:hover{color: var(--yellow)}
.footer__bottom{
  padding:12px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--muted);
  font-size:12px;
}

/* Responsive */
@media (max-width: 1100px){
  .layout{grid-template-columns: 1fr}
  .sidebar{order:2}
  .main{order:1}
}
@media (max-width: 860px){
  .hero{grid-template-columns: 1fr}
  .hero__media{min-height: 240px}
  .grid3{grid-template-columns: 1fr}
  .row{grid-template-columns: 1fr}
  .row__media{height: 190px}
  .nav{display:none}
  .burger{display:inline-block}
}

/* Responsividade extra */
@media (max-width: 700px) {
  .container {
    width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 4px;
  }
  .topbar__inner, .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
  }
  .footer__cols {
    flex-direction: column;
    gap: 10px;
  }
  .brand__title {
    font-size: 22px;
  }
  .hero {
    flex-direction: column;
    padding: 12px 6px;
  }
  .hero__media {
    min-height: 140px;
    max-width: 100%;
    aspect-ratio: 16/9;
  }
  .row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px;
  }
  .row__media {
    height: 120px;
  }
  .main, .sidebar {
    padding: 8px;
  }
  .footer {
    margin-top: 12px;
  }
}
