/* HEADER */
.main-header {
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px 10px 40px;
}
.logo {
  font-size: 3.5rem;
  font-weight: bold;
  letter-spacing: 2px;
}
.header-center .icon-btn {
  margin: 0 10px;
  width: 40px;
  height: 40px;
  display: inline-block;
  background: none;
  border: none;
}

/* NAVBAR */
.main-nav {
  background: #181818;
  display: flex;
  gap: 20px;
  padding: 0 40px;
  border-bottom: 2px solid #00eaff;
}
.nav-btn {
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  background: none;
  border: none;
  padding: 18px 18px 12px 18px;
  cursor: pointer;
  border-radius: 0 0 8px 8px;
  transition: background 0.2s;
}
.nav-btn.yellow { color: #ffe600; }
.nav-btn.green { color: #00ff6a; }
.nav-btn.purple { color: #b97fff; }
.nav-btn.orange { color: #ff9900; }
.nav-btn.blue { color: #1e90ff; }
.nav-btn:hover { background: #222; }

/* TICKER */
.ticker-bar {
  background: #111;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  font-size: 1.1rem;
  border-bottom: 2px solid #222;
  padding: 6px 0;
  position: relative;
  height: 38px;
}
.ticker-bar-inner {
  display: inline-block;
  padding-left: 100vw;
  animation: ticker-move 22s linear infinite;
}
@keyframes ticker-move {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
.ticker-item { margin-right: 24px; display: inline-block; }
.ticker-item .red { color: #ff2a2a; }
.ticker-item .green { color: #00ff6a; }

/* MAIN CONTENT */
.main-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 0 0 0;
}
.main-news {
  display: flex;
  background: #fff;
  border: 2px solid #222;
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 36px 36px 36px 36px;
  gap: 36px;
  align-items: center;
  position: relative;
}
.main-news-left {
  position: relative;
  flex: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-width: 0;
}
.main-news-img {
  position: absolute;
  left: 0;
  top: -200px;
  z-index: 1;
  width: 520px;
  max-width: 520px;
  min-width: 220px;
  height: 320px;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 0;
  background: #000;
  display: block;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.08);
}
.main-news-center {
  position: relative;
  z-index: 2;
  flex: 2.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 0 18px 0 260px;
  max-width: 540px;
}
.main-news-center h1 {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 18px;
  margin-top: 0;
}
.main-news-center p {
  font-size: 1.18rem;
  line-height: 1.45;
  margin: 0;
}
.news-title {
  font-size: 1.05rem;
  color: #888;
  margin-bottom: 8px;
  align-self: flex-start;
}
.main-news-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  border-left: 2px solid #eee;
  padding-left: 24px;
}
.wtf-title {
  font-size: 1.05rem;
  color: #888;
  margin-bottom: 8px;
  text-align: center;
}
.coin-img {
  width: 120px;
  margin: 10px 0;
}
.coin-desc {
  text-align: center;
}
.coin-desc h2 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

/* Secondary news */
.secondary-news {
  display: flex;
  gap: 20px;
  margin: 30px 0 20px 0;
}
.secondary-news-item {
  flex: 1;
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 18px 12px;
  font-size: 1.1rem;
  min-height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.explainer { color: #888; font-size: 0.95rem; }

/* Manifesto & Featured News */
.manifesto-section {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}
.manifesto, .featured-news {
  flex: 1;
  background: #fff;
  border: 2px solid #222;
  border-radius: 10px;
  padding: 24px 18px;
}
.featured-img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  margin: 10px 0 0 0;
}

/* News bar */
.news-bar {
  background: #fffbe6;
  color: #222;
  font-size: 1.1rem;
  padding: 10px 30px;
  border: 1px solid #ffe600;
  border-radius: 8px;
  margin-bottom: 30px;
}

/* Projects & Swap */
.projects-section {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}
.project-left, .project-center, .project-right {
  flex: 1;
  background: #fff;
  border: 2px solid #222;
  border-radius: 10px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.project-img {
  width: 100%;
  max-width: 320px;
  border-radius: 8px;
  margin-bottom: 10px;
}
.project-links { margin-top: 10px; }
.project-link {
  display: inline-block;
  background: #007aff;
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  margin: 0 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s;
}
.project-link:hover { background: #0051a8; }
.token-info {
  text-align: center;
  margin-bottom: 10px;
}
.swap-links { margin: 10px 0; }
.swap-btn {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 6px;
  color: #fff;
  font-weight: bold;
  margin: 0 6px;
  text-decoration: none;
  font-size: 1rem;
}
.swap-btn.pink { background: #ff2a8a; }
.swap-btn.green { background: #00c97b; }
.swap-btn.blue { background: #1e90ff; }
.swap-btn:hover { opacity: 0.8; }
.project-icon {
  width: 90px;
  margin: 10px 0;
}

/* Videos */
.videos-section {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.video-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
video {
  width: 100%;
  max-width: 320px;
  border-radius: 8px;
  background: #000;
}
.video-caption {
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 8px;
  text-align: center;
}

/* Tabs y formularios */
.container {
  background: #fff;
  border: 2px solid #222;
  border-radius: 10px;
  padding: 24px 80px;
  margin-bottom: 30px;
}
.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}
.tab-btn {
  background: #222;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 8px 8px 0 0;
  font-size: 1.1rem;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.2s;
}
.tab-btn.active, .tab-btn:hover { background: #00eaff; color: #000; }
.tab-content { display: none; }
.tab-content.active { display: block; }
.form-row {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
}
label { font-weight: bold; margin-bottom: -97px; }
input[type="text"], input[type="date"] {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}
button[type="submit"] {
  background: #00eaff;
  color: #000;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.2s;
}
button[type="submit"]:hover { background: #00b6c7; }

/* FOOTER */
.main-footer {
  background: #000;
  color: #fff;
  text-align: center;
  width: 100vw;
  min-width: 100vw;
  max-width: 100vw;
  box-sizing: border-box;
  padding: 48px 0 36px 0;
  font-size: 1.4rem;
  border-top: 2px solid #00eaff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.footer-link {
  color: #fff;
  margin: 0 28px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4rem;
  transition: color 0.2s;
  display: inline-block;
  text-align: center;
}
.footer-link:hover { color: #00eaff; }

@media (max-width: 1100px) {
  .main-news {
    flex-direction: column;
    gap: 18px;
    padding: 18px 4px;
    align-items: stretch;
  }
  .main-news-left, .main-news-center, .main-news-right {
    padding: 0;
    border: none;
    align-items: center;
  }
  .main-news-img {
    position: static;
    width: 100vw;
    max-width: 100vw;
    min-width: 0;
    height: auto;
    aspect-ratio: 16/11;
    border-radius: 14px;
  }
  .main-news-center {
    padding: 0 0 0 0;
    max-width: 100vw;
  }
  .main-news-center h1 {
    font-size: 1.5rem;
  }
  .main-news-center p {
    font-size: 1rem;
  }
  .main-news-right {
    border-left: none;
    padding-left: 0;
  }
}
@media (max-width: 700px) {
  .main-header, .main-nav, .ticker-bar, .main-content {
    padding-left: 10px;
    padding-right: 10px;
  }
  .main-header { flex-direction: column; align-items: flex-start; }
  .main-footer {
    font-size: 1.1rem;
    padding: 32px 0 24px 0;
  }
  .footer-link {
    font-size: 1.1rem;
    margin: 0 12px;
  }
  .main-news-img {
    width: 100vw;
    max-width: 100vw;
    min-width: 0;
    aspect-ratio: 16/12;
  }
  .main-news {
    padding: 6px 0;
  }
  .main-news-center h1 {
    font-size: 1.1rem;
  }
  .main-news-center p {
    font-size: 0.95rem;
  }
} 