/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #FFD700;
  font-family: 'Segoe UI', sans-serif;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Horizontal Layout Container */
.logo-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 20px;
  flex-wrap: nowrap;
}

/* Main Center Logo (Wro Capital Groups) */
.main-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo {
  width: 280px;
  max-width: 100%;
  margin-bottom: 20px;
}

/* Side Logos (52 Studios & Sparrow Analytics) */
.partner-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.small-logo {
  width: 150px;
  max-width: 100%;
}

/* Text Styling */
h1 {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.tagline {
  color: #BFC1C2;
  font-size: 1.2em;
}

/* Divider Between Logos */
.divider {
  width: 2px;
  height: 160px;
  background-color: #FFFFFF;
}

/* Footer Styling */
.site-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px 0;
  background-color: #111;
  color: #BFC1C2;
  font-size: 0.85em;
  text-align: center;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.footer-links {
  list-style: disc;
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 0;
  margin: 10px 0;
}

.footer-links li {
  list-style: disc;
}

.footer-links a {
  color: #FFD700;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.cloudflare-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.cloudflare-badge img {
  height: 30px;
  opacity: 0.85;
}
/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
  body {
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 40px;
    height: auto;
  }

  .logo-row {
    flex-direction: column;
    gap: 30px;
  }

  .divider {
    display: none;
  }

  .logo {
    width: 220px;
  }

  .small-logo {
    width: 140px;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
  }

  .cloudflare-badge {
    flex-direction: column;
  }
}
