/* =============================================
   RocketClash — Custom Styles
   Palette: Orange #FF5722, Amber #FF9800,
            White #FFFFFF, Light Grey #F8F9FA,
            Dark text #1A1A2E
   ============================================= */

:root {
  --rc-orange:   #FF5722;
  --rc-amber:    #FF9800;
  --rc-dark:     #1A1A2E;
  --rc-mid:      #2D2D44;
  --rc-light:    #F4F4F8;
  --rc-white:    #FFFFFF;
  --rc-muted:    #6B7280;
  --rc-border:   #E5E7EB;
  --rc-success:  #22C55E;
  --rc-gradient: linear-gradient(135deg, #FF5722 0%, #FF9800 100%);
  --rc-radius:   .75rem;
  --rc-shadow:   0 4px 20px rgba(255,87,34,.15);
}

/* ── Base ── */
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--rc-white);
  color: var(--rc-dark);
  line-height: 1.7;
}

a { color: var(--rc-orange); }
a:hover { color: var(--rc-amber); }

/* ── Utility overrides ── */
.text-orange  { color: var(--rc-orange) !important; }
.text-amber   { color: var(--rc-amber) !important; }
.bg-orange    { background: var(--rc-orange) !important; }
.bg-gradient-rc { background: var(--rc-gradient) !important; }
.bg-dark-rc   { background: var(--rc-dark) !important; }
.bg-light-rc  { background: var(--rc-light) !important; }

/* ── Buttons ── */
.btn-rc-primary {
  background: var(--rc-gradient);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: .65rem 1.8rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: transform .2s, box-shadow .2s;
}
.btn-rc-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,87,34,.4);
}

.btn-rc-outline {
  background: transparent;
  color: var(--rc-orange);
  border: 2px solid var(--rc-orange);
  border-radius: 50px;
  padding: .6rem 1.7rem;
  font-weight: 600;
  transition: all .2s;
}
.btn-rc-outline:hover {
  background: var(--rc-orange);
  color: #fff;
  transform: translateY(-2px);
}

.btn-rc-white {
  background: #fff;
  color: var(--rc-orange);
  border: none;
  border-radius: 50px;
  padding: .65rem 1.8rem;
  font-weight: 700;
  transition: all .2s;
}
.btn-rc-white:hover {
  background: var(--rc-light);
  color: var(--rc-orange);
  transform: translateY(-2px);
}

/* ── Navbar ── */
.rc-navbar {
  background: var(--rc-white);
  border-bottom: 3px solid var(--rc-orange);
  padding: .75rem 0;
}

.rc-navbar .navbar-brand {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--rc-dark);
  text-decoration: none;
}

.rc-navbar .navbar-brand .brand-accent {
  background: var(--rc-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rc-navbar .nav-link {
  color: var(--rc-dark);
  font-weight: 500;
  padding: .45rem .9rem;
  border-radius: .4rem;
  transition: all .2s;
}
.rc-navbar .nav-link:hover,
.rc-navbar .nav-link.active {
  color: var(--rc-orange);
  background: rgba(255,87,34,.07);
}

.rc-navbar .nav-cta {
  background: var(--rc-gradient);
  color: #fff !important;
  border-radius: 50px;
  padding: .45rem 1.3rem !important;
  font-weight: 600;
}
.rc-navbar .nav-cta:hover {
  opacity: .9;
  background: var(--rc-gradient);
}

/* ── Hero ── */
.rc-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.rc-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center top;
  z-index: 0;
}

.rc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(26,26,46,.92) 0%,
    rgba(26,26,46,.7) 55%,
    rgba(26,26,46,.1) 100%);
  z-index: 1;
}

.rc-hero .container { position: relative; z-index: 2; }

.rc-hero-eyebrow {
  display: inline-block;
  background: var(--rc-gradient);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.rc-hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.25rem;
}

.rc-hero h1 .highlight {
  background: var(--rc-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rc-hero p.lead {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 2rem;
}

.rc-hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.rc-stat-num {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--rc-amber);
  display: block;
  line-height: 1;
}
.rc-stat-lbl {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* ── Section headers ── */
.rc-section-label {
  display: inline-block;
  background: rgba(255,87,34,.1);
  color: var(--rc-orange);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .3rem .9rem;
  border-radius: 50px;
  border: 1px solid rgba(255,87,34,.3);
  margin-bottom: .75rem;
}

/* ── Review Cards ── */
.rc-review-card {
  border: 1px solid var(--rc-border);
  border-radius: var(--rc-radius);
  overflow: hidden;
  background: #fff;
  transition: transform .25s, box-shadow .25s;
  height: 100%;
}

.rc-review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--rc-shadow);
}

.rc-review-card .card-img-top {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.rc-review-card .card-body { padding: 1.4rem; }

.rc-genre-badge {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .2rem .65rem;
  border-radius: 4px;
  background: rgba(255,87,34,.1);
  color: var(--rc-orange);
  border: 1px solid rgba(255,87,34,.25);
}

.rc-stars { color: #F59E0B; font-size: .9rem; letter-spacing: 1px; }
.rc-score { font-size: .8rem; color: var(--rc-muted); margin-left: .3rem; }

.rc-review-card .card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--rc-dark);
  margin: .5rem 0 .4rem;
}

.rc-review-card .card-text {
  font-size: .87rem;
  color: var(--rc-muted);
  margin-bottom: 1rem;
}

/* ── Tournament Cards ── */
.rc-t-card {
  border-radius: var(--rc-radius);
  overflow: hidden;
  border: 1px solid var(--rc-border);
  background: #fff;
  transition: transform .25s, box-shadow .25s;
}

.rc-t-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--rc-shadow);
}

.rc-t-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.rc-t-card .t-body { padding: 1.4rem; }

.rc-status-live {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: .2rem .7rem;
  border-radius: 50px;
  background: rgba(239,68,68,.12);
  color: #EF4444;
  border: 1px solid #EF4444;
}

.rc-status-upcoming {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: .2rem .7rem;
  border-radius: 50px;
  background: rgba(34,197,94,.1);
  color: #16A34A;
  border: 1px solid #16A34A;
}

.rc-status-ended {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: .2rem .7rem;
  border-radius: 50px;
  background: rgba(107,114,128,.1);
  color: var(--rc-muted);
  border: 1px solid var(--rc-muted);
}

.rc-t-meta { font-size: .82rem; color: var(--rc-muted); }
.rc-t-title { font-size: 1.1rem; font-weight: 700; color: var(--rc-dark); margin: .4rem 0 .3rem; }
.rc-t-game  { font-size: .85rem; color: var(--rc-orange); font-weight: 600; margin-bottom: .9rem; }

.rc-t-info {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 1.1rem;
}
.rc-t-info-item strong { display: block; font-size: .88rem; color: var(--rc-dark); }
.rc-t-info-item span   { font-size: .78rem; color: var(--rc-muted); }

/* ── CTA / Newsletter strip ── */
.rc-cta-strip {
  background: var(--rc-gradient);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.rc-cta-strip::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}

.rc-cta-strip::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 220px; height: 220px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
}

.rc-subscribe-input {
  border: none;
  border-radius: 50px 0 0 50px;
  padding: .75rem 1.4rem;
  font-size: .95rem;
  outline: none;
  flex: 1;
  min-width: 200px;
}

.rc-subscribe-btn {
  background: var(--rc-dark);
  color: #fff;
  border: none;
  border-radius: 0 50px 50px 0;
  padding: .75rem 1.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.rc-subscribe-btn:hover { background: #2D2D44; }

.rc-subscribe-wrap {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  border-radius: 50px;
  overflow: hidden;
}

/* ── About section ── */
.rc-about-img {
  border-radius: var(--rc-radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.12);
}
.rc-about-img img { width: 100%; height: 420px; object-fit: cover; }

.rc-check-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.rc-check-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .92rem;
  color: var(--rc-muted);
  margin-bottom: .6rem;
}
.rc-check-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  min-width: 20px;
  background: var(--rc-gradient);
  color: #fff;
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 700;
  margin-top: 2px;
}

/* ── Page hero (inner pages) ── */
.rc-page-hero {
  background: var(--rc-light);
  border-bottom: 3px solid var(--rc-orange);
  padding: 3.5rem 0 2.5rem;
}

.rc-page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--rc-dark);
}

/* ── Breadcrumb ── */
.rc-breadcrumb { font-size: .82rem; color: var(--rc-muted); margin-bottom: .75rem; }
.rc-breadcrumb a { color: var(--rc-muted); text-decoration: none; }
.rc-breadcrumb a:hover { color: var(--rc-orange); }

/* ── Forms ── */
.rc-form-control {
  border: 1.5px solid var(--rc-border);
  border-radius: .5rem;
  padding: .7rem 1rem;
  font-size: .95rem;
  width: 100%;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  background: #fff;
  color: var(--rc-dark);
  font-family: inherit;
}
.rc-form-control:focus {
  border-color: var(--rc-orange);
  box-shadow: 0 0 0 3px rgba(255,87,34,.12);
}
.rc-form-control::placeholder { color: #9CA3AF; }
textarea.rc-form-control { resize: vertical; min-height: 130px; }

.rc-form-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--rc-dark);
  margin-bottom: .4rem;
  display: block;
}

.rc-form-success {
  display: none;
  background: rgba(34,197,94,.1);
  border: 1px solid #22C55E;
  color: #16A34A;
  border-radius: .5rem;
  padding: .9rem 1.2rem;
  margin-top: 1rem;
  font-weight: 600;
  text-align: center;
}

/* ── Contact info items ── */
.rc-contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.rc-contact-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: rgba(255,87,34,.1);
  border: 1.5px solid rgba(255,87,34,.3);
  border-radius: .6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.rc-contact-item strong { display: block; font-size: .88rem; color: var(--rc-dark); margin-bottom: .15rem; }
.rc-contact-item span  { font-size: .85rem; color: var(--rc-muted); }

/* ── Policy pages ── */
.rc-policy-body { max-width: 820px; margin: 0 auto; padding: 3.5rem 1.5rem; }
.rc-policy-body h2 { font-size: 1.45rem; font-weight: 700; margin: 2.5rem 0 .9rem; color: var(--rc-dark); }
.rc-policy-body h3 { font-size: 1.1rem; font-weight: 600; margin: 1.5rem 0 .6rem; color: var(--rc-orange); }
.rc-policy-body p  { color: #374151; margin-bottom: .9rem; }
.rc-policy-body ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.rc-policy-body ul li { color: #374151; margin-bottom: .35rem; }
.rc-policy-body .last-updated { font-size: .82rem; color: var(--rc-muted); margin-bottom: 2rem; }
.rc-policy-body code {
  background: var(--rc-light);
  padding: .1rem .4rem;
  border-radius: 4px;
  font-size: .85em;
}
.rc-policy-body table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; font-size: .85rem; }
.rc-policy-body table th {
  background: var(--rc-light);
  padding: .7rem 1rem;
  text-align: left;
  color: var(--rc-muted);
  border-bottom: 2px solid var(--rc-border);
}
.rc-policy-body table td {
  padding: .7rem 1rem;
  border-bottom: 1px solid var(--rc-border);
  color: #374151;
}

/* ── Footer ── */
.rc-footer {
  background: var(--rc-dark);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 2rem;
}

.rc-footer .footer-brand-name {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  display: block;
  margin-bottom: .75rem;
}
.rc-footer .footer-brand-name span {
  background: var(--rc-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rc-footer p { font-size: .87rem; color: rgba(255,255,255,.55); }
.rc-footer h6 {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}
.rc-footer ul { list-style: none; padding: 0; }
.rc-footer ul li { margin-bottom: .5rem; }
.rc-footer ul a { font-size: .87rem; color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s; }
.rc-footer ul a:hover { color: var(--rc-amber); }
.rc-footer address { font-size: .82rem; color: rgba(255,255,255,.45); font-style: normal; line-height: 1.8; }
.rc-footer address a { color: rgba(255,255,255,.55); }
.rc-footer address a:hover { color: var(--rc-amber); }

.rc-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.75rem;
  margin-top: 3rem;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}
.rc-footer-bottom a { color: rgba(255,255,255,.4); text-decoration: none; }
.rc-footer-bottom a:hover { color: var(--rc-amber); }

/* ── Cookie Banner ── */
.rc-cookie {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--rc-dark);
  border-top: 3px solid var(--rc-orange);
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform .4s ease;
}
.rc-cookie.visible { transform: translateY(0); }
.rc-cookie p { font-size: .87rem; color: rgba(255,255,255,.75); margin: 0; flex: 1; min-width: 200px; }
.rc-cookie a { color: var(--rc-amber); }
.rc-cookie-btns { display: flex; gap: .75rem; flex-shrink: 0; }

/* ── Filter pills ── */
.rc-filter-pill {
  padding: .4rem 1.1rem;
  border-radius: 50px;
  border: 1.5px solid var(--rc-border);
  background: transparent;
  color: var(--rc-muted);
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}
.rc-filter-pill:hover,
.rc-filter-pill.active {
  border-color: var(--rc-orange);
  color: var(--rc-orange);
  background: rgba(255,87,34,.07);
}

/* ── Featured review split ── */
.rc-featured {
  border-radius: var(--rc-radius);
  overflow: hidden;
  border: 1px solid var(--rc-border);
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}
.rc-featured img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.rc-featured-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .rc-hero { min-height: 75vh; }
  .rc-hero-stats { gap: 1.5rem; }
  .rc-featured img { min-height: 220px; }
  .rc-featured-body { padding: 1.5rem; }
  .rc-cta-strip { padding: 3rem 0; }
  .rc-subscribe-wrap { flex-direction: column; border-radius: .75rem; }
  .rc-subscribe-input { border-radius: .5rem .5rem 0 0; }
  .rc-subscribe-btn { border-radius: 0 0 .5rem .5rem; padding: .75rem; }
}
