/* RESET */
html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Inter', Arial, sans-serif;
  background: #181c23;
  color: #fff;
  box-sizing: border-box;
}
*, *:before, *:after { box-sizing: inherit; }

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #23272e;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5vw;
  border-bottom: 1px solid #23242a;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.header-logo img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: #23242a;
  box-shadow: 0 0 8px #f3ba2f44;
}
.header-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFD700;
  letter-spacing: 1px;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.header-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.4rem 1.1rem;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  font-size: 1rem;
}
.header-nav a.active, .header-nav a:hover {
  background: #FFD700;
  color: #23242a;
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: 1.5rem;
}
.hamburger span {
  width: 28px;
  height: 3px;
  background: #FFD700;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
}
@media (max-width: 900px) {
  .header-nav {
    position: fixed;
    top: 0;
    right: -100vw;
    height: 100vh;
    width: 70vw;
    max-width: 320px;
    background: #23272e;
    flex-direction: column;
    align-items: flex-start;
    padding: 4rem 2rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: -2px 0 16px #000a;
    transition: right 0.3s;
    border-left: 1px solid #23242a;
  }
  .header-nav.open { right: 0; }
  .hamburger { display: flex; }
}
@media (max-width: 900px) {
  header {
    position: relative;
  }
  .hamburger {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    margin-left: 0;
    z-index: 120;
  }
}
@media (max-width: 600px) {
  .hamburger {
    top: 1.2rem;
    right: 1.2rem;
  }
}

/* HERO */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  padding: 3rem 5vw 2rem 5vw;
  text-align: center;
}
.hero-logos {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.hero-logos img {
  height: 56px;
  width: 56px;
  border-radius: 50%;
  background: #23242a;
  box-shadow: 0 0 8px #f3ba2f44;
}
.hero-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.7rem;
  letter-spacing: 1px;
}
.hero-desc {
  font-size: 1.1rem;
  color: #bfc3c9;
  max-width: 600px;
  margin: 1.2rem 0 0.5rem 0;
  line-height: 1.6;
}
.hero-cta {
  margin-top: 2rem;
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-cta a {
  background: #FFD700;
  color: #23242a;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.9rem 2.2rem;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 2px 16px #0001, 0 0 0 2px #FFD700;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  letter-spacing: 1px;
}
.hero-cta a:hover {
  background: #f3ba2f;
  color: #23242a;
  box-shadow: 0 2px 32px #FFD700, 0 0 0 2px #f3ba2f;
}
.spinner {
  margin: 2rem auto 0 auto;
  width: 250px;
  height: 250px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spinner img {
  width: 250px;
  height: 250px;
  animation: coin-spin 3.2s linear infinite;
}
.spinner::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 0px solid #ffd90066;
  border-radius: 50%;
  border-top: 3px solid #f3bb2f2f;
  border-bottom: 3px solid #23242a;
  animation: spinner-rotate 1.2s linear infinite;
}
@keyframes coin-spin {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}
@keyframes spinner-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* CARDS & SECTIONS */
main {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  flex: 1 1 auto;
  padding: 2rem 5vw 1rem 5vw;
}
.card, .info-section, .bridge-section {
  background: #23272e;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  margin-bottom: 2rem;
  color: #fff;
}
.card-title, .info-section h2, .bridge-section h2 {
  color: #FFD700;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}
.card-content, .info-section p, .bridge-section p {
  color: #bfc3c9;
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
}

/* INFO TABLE */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 1rem 0;
  background: none;
}
.info-table th, .info-table td {
  padding: 0.7rem 0.5rem;
  text-align: left;
  font-size: 1.05rem;
  border-bottom: 1px solid #23242a;
}
.info-table th {
  color: #FFD700;
  font-weight: 700;
  width: 40%;
}
.info-table td {
  color: #fff;
  word-break: break-all;
}
.info-table tr:last-child td { border-bottom: none; }

@media (max-width: 600px) {
  .info-table, .info-table tbody, .info-table tr, .info-table th, .info-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  .info-table tr {
    background: #23272e;
    border-radius: 12px;
    box-shadow: 0 2px 8px #0001;
    margin-bottom: 1.1rem;
    padding: 1rem 1rem 0.7rem 1rem;
  }
  .info-table th {
    font-size: 1.05rem;
    color: #FFD700;
    font-weight: 700;
    padding: 0 0 0.2rem 0;
    background: none;
    border: none;
    text-align: left;
    margin-bottom: 0.2rem;
    word-break: break-word;
  }
  .info-table td {
    font-size: 1.1rem;
    color: #fff;
    padding: 0 0 0.7rem 0;
    background: none;
    border: none;
    text-align: left;
    word-break: break-all;
  }
  .info-table tr:last-child { margin-bottom: 0; }
  .info-table tr:last-child td { border-bottom: none; }
}

/********* Bridge Section *********/
.bridge-section {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5vw;
  padding-right: 5vw;
}
@media (max-width: 600px) {
  .bridge-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.bridge-info {
  flex: 1 1 320px;
}
.bridge-visual {
  flex: 0 0 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bridge-visual img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  box-shadow: 0 0 8px #FFD70044, 0 0 0 2px #23242a;
  animation: coin-spin 2.5s linear infinite;
}
.bridge-links {
  margin-top: 1rem;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.bridge-links a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.2s;
}
.bridge-links a:hover {
  color: #FFD700;
}

/********* Footer *********/
footer {
  background: #23272e;
  color: #fff;
  padding: 2.5rem 5vw 2rem 5vw;
  margin-top: auto;
  border-top: 1px solid #23242a;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  box-shadow: 0 -2px 24px #0001;
}
.footer-block {
  flex: 1 1 220px;
  min-width: 180px;
}
.footer-logo {
  width: 90px;
  margin-bottom: 1rem;
  border-radius: 50%;
  box-shadow: 0 0 8px #FFD70044, 0 0 0 2px #23242a;
}
.footer-socials {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.footer-socials a img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #23242a;
  box-shadow: 0 0 8px #FFD70044;
  transition: filter 0.2s;
}
.footer-socials a:hover img {
  filter: brightness(1.2) drop-shadow(0 0 8px #FFD700);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  color: #FFD700;
  text-decoration: none;
  font-size: 1.05rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #f3ba2f;
}
.footer-disclaimer {
  font-size: 0.95rem;
  color: #bfc3c9;
  margin-top: 1.5rem;
  max-width: 420px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  main, .info-section, .bridge-section { padding: 1.2rem 5vw; }
  .footer-block { min-width: 120px; }
  .bridge-section { flex-direction: column; align-items: stretch; }
}
@media (max-width: 600px) {
  .hero-logos img, .spinner img, .bridge-visual img { width: 250px; height: 250px; }
  .footer-logo { width: 56px; }
  .hero-title { font-size: 1.1rem; }
  .info-section, .bridge-section { padding: 0.7rem 5vw; }
  .footer-block { min-width: 80px; }
  header { flex-direction: column; align-items: flex-start; padding: 1rem 5vw; }
  .bridge-section { gap: 1.5rem; }
  .bridge-visual img {
    width: 110px !important;
    height: 110px !important;
  }
}

a {
  color: #fff !important;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:active, a:focus {
  color: #FFD700 !important;
}