/* ---- ROOM7 MAIN STYLES ---- */

body {
  background: #161a29;
  color: #ecf2fa;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.r7-header {
  background: #1a203a;
  padding: 0;
  box-shadow: 0 2px 12px rgba(24,36,70,0.10);
}
.r7-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 26px;
  height: 72px;
}
.r7-logo img {
  height: 38px;
  width: auto;
  vertical-align: middle;
}
.r7-nav {
  display: flex;
  gap: 28px;
}
.r7-nav a {
  color: #ffac42;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  transition: color .18s;
  opacity: 0.95;
}
.r7-nav a.active,
.r7-nav a:hover,
.r7-nav a:focus {
  color: #fff;
  opacity: 1;
  border-bottom: 2px solid #ffac42;
}

.r7-hero {
  background: linear-gradient(120deg, #192040 60%, #264e96 100%);
  text-align: center;
  padding: 64px 0 38px 0;
}
.r7-hero-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #fff;
}
.r7-subhead {
  color: #ffac42;
  font-size: 1.34rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.r7-hero-content p {
  color: #e3e8f5;
  font-size: 1.14rem;
  max-width: 680px;
  margin: 0 auto 18px auto;
}

.r7-core {
  background: #23284a;
  padding: 44px 0 36px 0;
  text-align: center;
}
.r7-core h2 {
  color: #ffac42;
  font-size: 1.34rem;
  margin-bottom: 14px;
}
.r7-core ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 720px;
}
.r7-core ul li {
  font-size: 1.14rem;
  margin-bottom: 15px;
  color: #e3e8f5;
  text-align: left;
  background: #1a1d30;
  border-radius: 10px;
  padding: 15px 24px;
  box-shadow: 0 2px 8px rgba(38,86,173,0.06);
}

.r7-actions {
  background: #161a29;
  text-align: center;
  padding: 38px 0 28px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.r7-btn {
  background: #ffac42;
  color: #222;
  padding: 14px 32px;
  border-radius: 28px;
  font-weight: 700;
  font-size: 1.09rem;
  text-decoration: none;
  border: none;
  transition: background .22s, color .22s;
  margin: 0 4px 8px 4px;
}
.r7-btn:hover, .r7-btn:focus {
  background: #ffa726;
  color: #fff;
}
.r7-btn-outline {
  background: #23284a;
  color: #ffac42;
  border: 2px solid #ffac42;
}
.r7-btn-outline:hover, .r7-btn-outline:focus {
  background: #2a3261;
  color: #fff;
}

.r7-footer {
  background: #23284a;
  padding: 36px 0 18px 0;
  color: #fff;
}
.r7-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-bottom: 10px;
}
.r7-footer-links a {
  color: #ffac42;
  text-decoration: none;
  font-size: 1.03rem;
  font-weight: 500;
  transition: color .16s;
}
.r7-footer-links a.active,
.r7-footer-links a:hover,
.r7-footer-links a:focus {
  color: #fff;
}
.r7-footer-center {
  text-align: center;
  width: 100%;
  color: #fff;
  font-size: 1.05rem;
  opacity: 0.85;
}

@media (max-width: 600px) {
  .r7-header-inner,
  .r7-footer-links {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    padding: 0 10px;
  }
  .r7-hero-content h1 {
    font-size: 1.52rem;
  }
  .r7-hero {
    padding: 38px 0 18px 0;
  }
  .r7-core ul li {
    font-size: 1.02rem;
    padding: 12px 12px;
  }
  .r7-actions {
    flex-direction: column;
    gap: 10px;
  }
}
