* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #111111;
  color: #f4f4f4;
}

/* NAVBAR */

.navbar {
  padding: 28px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo {
  width: 260px;
  height: auto;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

nav a {
  color: #f4f4f4;
  text-decoration: none;
  font-size: 15px;
  opacity: 0.75;
  display: flex;
  align-items: center;
  height: 38px;
  line-height: 1;
}

nav a:hover {
  opacity: 1;
}

.profile-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-photo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(244, 244, 244, 0.45);
  display: block;
}

/* HOME PAGE */

.hero {
  min-height: 82vh;
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.small-title {
  color: #b6b6b6;
  font-size: 16px;
  margin-bottom: 20px;
}

h1 {
  max-width: 850px;
  font-size: 64px;
  line-height: 1.05;
  margin-bottom: 26px;
}

.hero-text {
  max-width: 650px;
  font-size: 20px;
  line-height: 1.6;
  color: #cfcfcf;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-button {
  width: fit-content;
  padding: 14px 24px;
  border: 1px solid #b88a2a;
  background: #b88a2a;
  color: #111111;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
}

.hero-button:hover {
  background: #d0a13a;
  border-color: #d0a13a;
  color: #111111;
}

.hero-button.secondary {
  background: #b88a2a;
  color: #111111;
}

.hero-button.secondary:hover {
  background: #d0a13a;
  border-color: #d0a13a;
  color: #111111;
}

/* SIMPLE INNER SECTIONS */

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 90px 60px;
  border-top: 1px solid rgba(244, 244, 244, 0.12);
}

.section-label {
  color: #b88a2a;
  font-size: 14px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section h2 {
  max-width: 760px;
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section p {
  max-width: 680px;
  font-size: 18px;
  line-height: 1.6;
  color: #cfcfcf;
}

/* WATCH PAGE */

.watch-page {
  height: calc(100vh - 125px);
  padding: 20px 60px 50px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
}

.watch-card {
  border: 1px solid rgba(244, 244, 244, 0.18);
  color: #f4f4f4;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.02);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;

  min-width: 0;
  min-height: 0;
}

.watch-card:hover {
  border-color: #b88a2a;
  background: rgba(184, 138, 42, 0.08);
}

.watch-card h1 {
  font-size: 28px;
  line-height: 1;
  margin: 0;
  max-width: none;
  text-align: center;
}

.watch-icon-box {
  width: 140px;
  height: 140px;
  border: none;

  display: flex;
  align-items: center;
  justify-content: center;
}

.watch-icon {
  width: 115px;
  height: 115px;
  max-width: 115px;
  max-height: 115px;
  object-fit: contain;
  display: block;
}

/* MOBILE */

@media (max-width: 760px) {
  .navbar {
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .site-logo {
    width: 220px;
  }

  nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero {
    padding: 60px 24px;
  }

  h1 {
    font-size: 44px;
  }

  .hero-text {
    font-size: 17px;
  }

  .section {
    padding: 70px 24px;
  }

  .section h2 {
    font-size: 32px;
  }

  .section p {
    font-size: 16px;
  }

  .watch-page {
    height: auto;
    min-height: calc(100vh - 160px);
    padding: 30px 24px 50px;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .watch-card {
    min-height: 220px;
  }

  .watch-card h1 {
    font-size: 26px;
  }

  .watch-icon-box {
    width: 120px;
    height: 120px;
  }

  .watch-icon {
    width: 95px;
    height: 95px;
    max-width: 95px;
    max-height: 95px;
  }
}

/* ABOUT PAGE V2 */

.about-page-v2 {
  padding: 50px 60px 90px;
  max-width: 1300px;
  margin: 0 auto;
}

.about-intro {
  max-width: 850px;
  padding: 60px 0 70px;
}

.about-kicker {
  color: #b88a2a;
  font-size: 13px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.about-main-title {
  font-size: 56px;
  line-height: 1.05;
  max-width: 850px;
  margin-bottom: 24px;
}

.about-main-text {
  max-width: 720px;
  font-size: 19px;
  line-height: 1.7;
  color: #cfcfcf;
}

.about-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 85px;
}

.about-info-card {
  min-height: 220px;
  border: 1px solid rgba(244, 244, 244, 0.16);
  background: rgba(255, 255, 255, 0.02);
  padding: 30px;
}

.about-info-card h2 {
  font-size: 24px;
  margin-bottom: 16px;
}

.about-info-card p {
  font-size: 16px;
  line-height: 1.65;
  color: #cfcfcf;
}

.founders-v2 {
  border-top: 1px solid rgba(244, 244, 244, 0.14);
  padding-top: 60px;
}

.founders-heading {
  margin-bottom: 30px;
}

.founders-heading h2 {
  font-size: 40px;
  line-height: 1.1;
}

.founders-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.founder-v2-card {
  border: 1px solid rgba(244, 244, 244, 0.16);
  background: rgba(255, 255, 255, 0.02);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.founder-v2-avatar {
  min-width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #b88a2a;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  letter-spacing: 1px;
}

.founder-v2-card h3 {
  font-size: 23px;
  margin-bottom: 12px;
}

.founder-v2-card p {
  font-size: 16px;
  line-height: 1.65;
  color: #cfcfcf;
}

@media (max-width: 900px) {
  .about-info-grid,
  .founders-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .about-page-v2 {
    padding: 30px 24px 70px;
  }

  .about-intro {
    padding: 45px 0 55px;
  }

  .about-main-title {
    font-size: 38px;
  }

  .about-main-text {
    font-size: 17px;
  }

  .founder-v2-card {
    flex-direction: column;
  }
}

/* JOIN PAGE */

.join-page {
  padding: 50px 60px 90px;
  max-width: 1300px;
  margin: 0 auto;
}

.join-hero {
  max-width: 850px;
  padding: 60px 0 70px;
}

.join-kicker {
  color: #b88a2a;
  font-size: 13px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.join-hero h1 {
  font-size: 56px;
  line-height: 1.05;
  max-width: 850px;
  margin-bottom: 24px;
}

.join-hero p {
  max-width: 720px;
  font-size: 19px;
  line-height: 1.7;
  color: #cfcfcf;
}

.join-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.join-card {
  min-height: 300px;
  border: 1px solid rgba(244, 244, 244, 0.16);
  background: rgba(255, 255, 255, 0.02);
  padding: 32px;
}

.join-card-link {
  text-decoration: none;
  color: #f4f4f4;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: 0.2s ease;
}

.join-card-link:hover {
  border-color: #b88a2a;
  background: rgba(184, 138, 42, 0.08);
  transform: translateY(-2px);
}

.join-icon-box {
  width: 96px;
  height: 96px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.join-icon {
  width: 76px;
  height: 76px;
  object-fit: contain;
  display: block;
}

.join-card h2 {
  font-size: 24px;
  margin-bottom: 16px;
  text-align: center;
}

.join-card p {
  font-size: 16px;
  line-height: 1.65;
  color: #cfcfcf;
  text-align: center;
  max-width: 320px;
}

@media (max-width: 900px) {
  .join-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .join-page {
    padding: 30px 24px 70px;
  }

  .join-hero {
    padding: 45px 0 55px;
  }

  .join-hero h1 {
    font-size: 38px;
  }

  .join-hero p {
    font-size: 17px;
  }

  .join-grid {
    grid-template-columns: 1fr;
  }
}

/* EMPTY PLACEHOLDER PAGE */

.empty-placeholder-page {
  min-height: 100vh;
  background: #111111;
  color: #f4f4f4;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  padding: 40px;
}

.empty-placeholder-image {
  width: 180px;
  height: auto;
  margin-bottom: 32px;
  object-fit: contain;
}

.empty-placeholder-page h1 {
  max-width: 680px;
  font-size: 30px;
  line-height: 1.25;
  margin-bottom: 18px;
}

.empty-placeholder-page p {
  max-width: 560px;
  font-size: 16px;
  line-height: 1.6;
  color: #bdbdbd;
}

@media (max-width: 760px) {
  .empty-placeholder-image {
    width: 140px;
  }

  .empty-placeholder-page h1 {
    font-size: 23px;
  }

  .empty-placeholder-page p {
    font-size: 15px;
  }
}

.empty-placeholder-link {
  margin-top: 28px;
  color: #b88a2a;
  text-decoration: none;
  font-size: 14px;
}

.empty-placeholder-link:hover {
  text-decoration: underline;
}

/* AUTH / YOU AND US */

.auth-gate-page {
  padding: 50px 60px 90px;
  max-width: 1300px;
  margin: 0 auto;
}

.auth-gate-hero {
  max-width: 850px;
  padding: 60px 0 70px;
}

.auth-kicker {
  color: #b88a2a;
  font-size: 13px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.auth-gate-hero h1 {
  font-size: 56px;
  line-height: 1.05;
  max-width: 850px;
  margin-bottom: 24px;
}

.auth-gate-hero p {
  max-width: 720px;
  font-size: 19px;
  line-height: 1.7;
  color: #cfcfcf;
}

.auth-gate-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.auth-gate-card {
  min-height: 240px;
  border: 1px solid rgba(244, 244, 244, 0.16);
  background: rgba(255, 255, 255, 0.02);
  padding: 34px;
  color: #f4f4f4;
  text-decoration: none;
  transition: 0.2s ease;
}

.auth-gate-card:hover {
  border-color: #b88a2a;
  background: rgba(184, 138, 42, 0.08);
  transform: translateY(-2px);
}

.auth-gate-card h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.auth-gate-card p {
  font-size: 16px;
  line-height: 1.65;
  color: #cfcfcf;
}

.auth-page {
  min-height: calc(100vh - 130px);
  padding: 50px 60px 90px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.auth-card {
  width: 100%;
  max-width: 620px;
  border: 1px solid rgba(244, 244, 244, 0.16);
  background: rgba(255, 255, 255, 0.02);
  padding: 44px;
}

.auth-card h1 {
  font-size: 44px;
  line-height: 1.05;
  margin-bottom: 18px;
}

.auth-intro {
  font-size: 17px;
  line-height: 1.65;
  color: #cfcfcf;
  margin-bottom: 30px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.auth-form label {
  font-size: 14px;
  color: #f4f4f4;
  margin-top: 8px;
}

.auth-form input {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(244, 244, 244, 0.18);
  background: #181818;
  color: #f4f4f4;
  font-size: 15px;
  outline: none;
}

.auth-form input:focus {
  border-color: #b88a2a;
}

.auth-submit-button {
  margin-top: 18px;
  padding: 14px 24px;
  border: 1px solid #b88a2a;
  background: #b88a2a;
  color: #111111;
  font-size: 15px;
  cursor: pointer;
}

.auth-submit-button:hover {
  background: #d0a13a;
  border-color: #d0a13a;
}

.auth-message {
  min-height: 22px;
  margin-top: 12px;
  font-size: 14px;
  color: #cfcfcf;
}

.auth-message.error {
  color: #ff6b6b;
}

.auth-message.success {
  color: #b88a2a;
}

.auth-small-text {
  margin-top: 24px;
  font-size: 14px;
  color: #cfcfcf;
}

.auth-small-text a {
  color: #b88a2a;
  text-decoration: none;
}

.auth-small-text a:hover {
  text-decoration: underline;
}

@media (max-width: 760px) {
  .auth-gate-page,
  .auth-page {
    padding: 30px 24px 70px;
  }

  .auth-gate-hero {
    padding: 45px 0 55px;
  }

  .auth-gate-hero h1 {
    font-size: 38px;
  }

  .auth-gate-grid {
    grid-template-columns: 1fr;
  }

  .auth-card {
    padding: 32px 24px;
  }

  .auth-card h1 {
    font-size: 36px;
  }
}

.logout-button {
  margin-top: 18px;
  padding: 12px 20px;
  border: 1px solid rgba(244, 244, 244, 0.35);
  background: transparent;
  color: #f4f4f4;
  font-size: 14px;
  cursor: pointer;
}

.logout-button:hover {
  border-color: #b88a2a;
  color: #b88a2a;
}
