/* vyvik.top — main stylesheet
   Colors:
   Headings: #ffb758 (with subtle text border)
   Text: #f08233
   Accents/Buttons: #ffb758
   Button text: #45301e
   Button hover: #f08233
   Background: #45301e
*/

/* Base reset / fonts */
:root{
  --bg: #45301e;
  --heading: #ffb758;
  --text: #f08233;
  --accent: #ffb758;
  --btn-bg: #ffb758;
  --btn-text: #45301e;
  --btn-hover: #f08233;
  --max-width: 1180px;
  --radius: 12px;
  --container-pad: 1.25rem;
  --font-main: "Space Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* Body */
body.vyvik-top-body{
  margin:0;
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.55;
}

/* Links */
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--btn-hover); text-decoration: underline; }

/* Utility layout */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--container-pad); }
.text-center { text-align:center; }

/* ==============================
   VYVIK.TOP NAVBAR STYLES
   ============================== */

body {
  background-color: #45301e;
  color: #f08233;
  font-family: "Poppins", system-ui, sans-serif;
  margin: 0;
  padding: 0;
}

/* NAVBAR BASE */
.vyvik-top-nav {
  background-color: #45301e;
  border-bottom: 1px solid rgba(255, 183, 88, 0.3);
  padding: 0.75rem 1rem;
  transition: all 0.3s ease-in-out;
  z-index: 1000;
}

.vyvik-top-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* BRAND LOGO */
.vyvik-top-logo {
  height: 78px;
  width: auto;
  transition: transform 0.3s ease;
}

.vyvik-top-logo:hover {
  transform: scale(1.05);
}

/* TOGGLER */
.vyvik-top-toggler {
  color: #ffb758;
  font-size: 1.5rem;
  border: none;
  background: none;
  transition: color 0.3s ease;
}

.vyvik-top-toggler:hover {
  color: #f08233;
}

/* NAV LINKS */
.vyvik-top-nav .nav-link {
  color: #f08233;
  font-weight: 500;
  padding: 0.75rem 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.vyvik-top-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #ffb758;
  transition: width 0.3s ease-in-out;
  border-radius: 1px;
}

.vyvik-top-nav .nav-link:hover::after,
.vyvik-top-nav .nav-link.active::after {
  width: 50%;
}

.vyvik-top-nav .nav-link:hover,
.vyvik-top-nav .nav-link.active {
  color: #ffb758;
}

/* NAVBAR BACKGROUND ON SCROLL (optional enhancement) */
@media (min-width: 992px) {
  .vyvik-top-nav.scrolled {
    background-color: rgba(69, 48, 30, 0.95);
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  }
}

/* MOBILE STYLES */
.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-collapse {
  background-color: #45301e;
  border-top: 1px solid rgba(255, 183, 88, 0.2);
  padding: 1rem 0;
}

.vyvik-top-nav .nav-item {
  text-align: center;
}

.vyvik-top-nav .nav-link {
  display: block;
}

/* FOCUS AND ACTIVE STATES */
.vyvik-top-nav .nav-link:focus,
.vyvik-top-nav .nav-link:active {
  outline: none;
  color: #ffb758;
}

/* Smooth fade effect for menu toggle */
.collapse:not(.show) {
  transition: height 0.35s ease;
}

/* ==============================
   VYVIK.TOP HERO SECTION (Fixed)
   ============================== */

.vyvik-top-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #f08233;
  padding: 0 1rem;
  overflow: hidden;
  background:
    linear-gradient(
      rgba(69, 48, 30, 0.25),
      rgba(46, 28, 17, 0.25)
    ),
    url("../images/hero.jpg") center center / cover no-repeat;
}

/* Decorative glow overlay */
.vyvik-top-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 130%;
  height: 140%;
  background: radial-gradient(circle at center, rgba(255, 183, 88, 0.15) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none; /* ✅ prevents blocking buttons */
}

/* Make sure content sits above overlay */
.vyvik-top-hero .container {
  position: relative;
  z-index: 2; /* ✅ ensures buttons/text are clickable */
}

/* HERO TITLE */
.vyvik-top-hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffb758;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

/* HERO SUBTEXT */
.vyvik-top-hero-sub {
  max-width: 680px;
  margin: 0 auto 2rem;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #f9b47e;
}

/* BUTTON GROUP */
.vyvik-top-hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* HERO BUTTONS */
.vyvik-top-btn {
  font-size: 1rem;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none;
  display: inline-block;
  box-shadow: 0 0 10px rgba(255, 183, 88, 0.25);
  position: relative;
  z-index: 3; /* ✅ adds another layer of safety */
}

/* Enter Button */
.vyvik-top-btn.enter {
  background-color: #ffb758;
  color: #45301e;
}

.vyvik-top-btn.enter:hover {
  background-color: #f08233;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(240, 130, 51, 0.45);
}

/* Outline Button */
.vyvik-top-btn.outline {
  background-color: transparent;
  border: 2px solid #ffb758;
  color: #ffb758;
}

.vyvik-top-btn.outline:hover {
  background-color: #ffb758;
  color: #45301e;
  box-shadow: 0 0 15px rgba(255, 183, 88, 0.4);
}
.vyvik-top-btn,
.vyvik-top-btn:hover,
.vyvik-top-btn:focus {
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .vyvik-top-hero-title {
    font-size: 2.2rem;
  }
  .vyvik-top-hero-sub {
    font-size: 1rem;
  }
  .vyvik-top-btn {
    padding: 0.7rem 1.8rem;
  }
}

@media (max-width: 480px) {
  .vyvik-top-hero-title {
    font-size: 1.9rem;
  }
  .vyvik-top-hero-actions {
    flex-direction: column;
  }
}


/* ============================
   DISCLAIMER / NOTICE SECTION
   ============================ */

.vyvik-top-notice {
  background: linear-gradient(180deg, #2e1c11 0%, #3d2718 100%);
  color: #f5c998;
  padding: 5rem 1rem;
}

.vyvik-top-notice-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 183, 88, 0.25);
  border-radius: 1.5rem;
  max-width: 780px;
  margin: 0 auto;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
  position: relative;
}

.vyvik-top-notice-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(240, 130, 51, 0.4);
}

.vyvik-top-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffb758;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

.vyvik-top-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #f9d3ac;
}

.vyvik-top-notice p {
  font-size: 1rem;
  line-height: 1.8;
  color: #f5c998;
  margin-bottom: 1.2rem;
}

/* BUTTON (no underline + refined hover) */
.vyvik-top-small-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  background: #ffb758;
  color: #2e1c11;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 0 10px rgba(255, 183, 88, 0.3);
  transition: all 0.3s ease-in-out;
  border: none;
  text-decoration: none !important; /* removes underline */
  cursor: pointer;
}

.vyvik-top-small-btn:hover {
  background: #f08233;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(240, 130, 51, 0.45);
  text-decoration: none; /* ensure hover underline is off */
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .vyvik-top-section-title {
    font-size: 1.6rem;
  }
  .vyvik-top-notice-card {
    padding: 2.5rem 1.5rem;
  }
}

/* ==============================
   PLAY SECTION — GAME FRAME
   ============================== */

.vyvik-top-play {
  background: linear-gradient(180deg, #3d2718 0%, #2e1c11 100%);
  padding: 5rem 1rem;
  color: #f08233;
}

.vyvik-top-section-title {
  color: #ffb758;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
  margin-bottom: 2.5rem;
}

/* Main container */
.vyvik-top-game-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 800px;
  position: relative;
}

/* Aspect ratio + max height control */
.vyvik-top-game-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 64 / 125; /* maintains perfect proportion */
  max-height: 700px;
  overflow: hidden;
  border-radius: 16px;
  background: #1d120a;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
}

/* Embedded iframe */
.vyvik-top-game-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
  display: block;
}

/* Hover glow */
.vyvik-top-game-frame:hover {
  box-shadow: 0 0 35px rgba(255, 183, 88, 0.4);
  transition: box-shadow 0.4s ease;
}



/* ==============================
   FEATURES SECTION
   ============================== */

.vyvik-top-features {
  background: linear-gradient(180deg, #2e1c11 0%, #3d2718 100%);
  color: #f08233;
  padding: 5rem 1rem;
}

.vyvik-top-section-title {
  color: #ffb758;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

/* GRID LAYOUT */
.vyvik-top-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* FEATURE CARDS */
.vyvik-top-feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 183, 88, 0.25);
  border-radius: 1.5rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.35s ease-in-out;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  cursor: default;
  position: relative;
  overflow: hidden;
}

/* Subtle hover lift + glow */
.vyvik-top-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(255, 183, 88, 0.4);
  border-color: rgba(255, 183, 88, 0.45);
}

/* ICON */
.vyvik-top-feature-icon {
  font-size: 2.8rem;
  color: #ffb758;
  margin-bottom: 1rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.vyvik-top-feature-card:hover .vyvik-top-feature-icon {
  color: #f08233;
  transform: scale(1.1);
}

/* TITLES */
.vyvik-top-feature-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffb758;
  margin-bottom: 0.8rem;
  text-transform: capitalize;
}

/* PARAGRAPH */
.vyvik-top-feature-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #f5c998;
  margin: 0;
}

/* ==============================
   RESPONSIVE ADJUSTMENTS
   ============================== */
@media (max-width: 992px) {
  .vyvik-top-feature-card {
    padding: 2rem 1.2rem;
  }
}

@media (max-width: 768px) {
  .vyvik-top-section-title {
    font-size: 1.8rem;
  }
  .vyvik-top-feature-card {
    padding: 1.8rem 1rem;
  }
  .vyvik-top-feature-icon {
    font-size: 2.4rem;
  }
}

@media (max-width: 480px) {
  .vyvik-top-feature-card {
    border-radius: 1rem;
  }
}

/* ABOUT */
.vyvik-top-about .vyvik-top-about-img{ max-width: 100%; height: auto; width: 420px; object-fit:cover; }
.vyvik-top-about-image-wrapper{ display:flex; justify-content:center; align-items:center; }

/* ==============================
   REVIEWS SECTION
   ============================== */

.vyvik-top-reviews {
  background: linear-gradient(180deg, #3d2718 0%, #2e1c11 100%);
  color: #f5c998;
  padding: 5rem 1rem;
  position: relative;
  overflow: hidden;
}

.vyvik-top-section-sub {
  color: #f9d5a7;
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
  opacity: 0.9;
}

/* GRID LAYOUT */
.vyvik-top-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* REVIEW CARD */
.vyvik-top-review-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 183, 88, 0.25);
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease-in-out;
  position: relative;
  text-align: left;
}

/* Hover glow + gentle scale */
.vyvik-top-review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(255, 183, 88, 0.4);
  border-color: rgba(255, 183, 88, 0.5);
}

/* Review Text */
.vyvik-top-review-card p {
  font-style: italic;
  line-height: 1.8;
  color: #ffdebb;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

/* Reviewer Name */
.vyvik-top-review-card h5 {
  font-weight: 600;
  color: #ffb758;
  text-align: right;
  font-size: 1rem;
  margin: 0;
}

/* ==============================
   RESPONSIVE DESIGN
   ============================== */
@media (max-width: 992px) {
  .vyvik-top-review-card {
    padding: 1.8rem 1.2rem;
  }
}

@media (max-width: 768px) {
  .vyvik-top-section-sub {
    font-size: 1rem;
  }
  .vyvik-top-review-card p {
    font-size: 0.98rem;
  }
}

@media (max-width: 480px) {
  .vyvik-top-review-card {
    border-radius: 1rem;
  }
}

/* ==============================
   CONTACT SECTION
   ============================== */

.vyvik-top-contact {
  background: linear-gradient(180deg, #3b2618 0%, #2b180e 100%);
  color: #ffcf9f;
  padding: 5rem 1rem;
  position: relative;
  overflow: hidden;
}

.vyvik-top-contact-header {
  max-width: 720px;
  margin: 0 auto;
}

.vyvik-top-section-title {
  font-size: 2.5rem;
  color: #ffb758;
  font-weight: 700;
}

.vyvik-top-section-sub {
  color: #ffd7a6;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Layout */
.vyvik-top-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 0 20px rgba(255, 183, 88, 0.1);
  backdrop-filter: blur(6px);
}

/* Info Section */
.vyvik-top-contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 183, 88, 0.25);
  padding-right: 2rem;
}

.vyvik-top-info-title {
  color: #ffb758;
  font-weight: 600;
  font-size: 1.4rem;
}

.vyvik-top-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vyvik-top-info-list li {
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
  color: #ffd8b2;
}

.vyvik-top-info-list a {
  color: #ffcf8a;
  text-decoration: none;
  border-bottom: 1px dotted transparent;
  transition: 0.3s;
}

.vyvik-top-info-list a:hover {
  border-bottom: 1px dotted #ffcf8a;
}

.vyvik-top-note {
  font-size: 0.95rem;
  color: #f9bf84;
  opacity: 0.9;
}

/* Contact Form */
.vyvik-top-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 183, 88, 0.3);
  border-radius: 0.75rem;
  color: #ffe6c8;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  outline: none;
  transition: 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #ffb758;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 10px rgba(255, 183, 88, 0.25);
}

.vyvik-top-btn.submit-btn {
  background-color: #ffb758;
  color: #3b2618;
  font-weight: 600;
  border: none;
  border-radius: 2rem;
  padding: 0.9rem 2rem;
  transition: 0.3s ease;
  cursor: pointer;
}

.vyvik-top-btn.submit-btn:hover {
  background-color: #f08233;
  color: #fff;
  box-shadow: 0 0 15px rgba(240, 130, 51, 0.4);
  transform: translateY(-2px);
}

.vyvik-top-form-note {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: #f2c08a;
  text-align: center;
  opacity: 0.8;
}

/* ==============================
   RESPONSIVE DESIGN
   ============================== */
@media (max-width: 992px) {
  .vyvik-top-contact-layout {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .vyvik-top-contact-info {
    border-right: none;
    border-bottom: 1px solid rgba(255, 183, 88, 0.25);
    padding-right: 0;
    padding-bottom: 2rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .vyvik-top-section-title {
    font-size: 2rem;
  }

  .vyvik-top-contact {
    padding: 4rem 1rem;
  }
}

/* ==============================
   FOOTER — VYVIK.TOP
   ============================== */

.vyvik-top-footer {
  background: linear-gradient(180deg, #2b180e 0%, #1b0f08 100%);
  color: #f9c58a;
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  border-top: 1px solid rgba(255, 183, 88, 0.15);
}

/* Logo */
.vyvik-top-footer-logo {
  max-width: 160px;
  height: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.vyvik-top-footer-logo:hover {
  opacity: 1;
}

/* Footer Navigation */
.vyvik-top-footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.vyvik-top-footer-nav a {
  color: #ffb758;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.vyvik-top-footer-nav a:hover {
  color: #f08233;
  text-shadow: 0 0 8px rgba(240, 130, 51, 0.5);
}

/* Disclaimer / Notice Box */
.vyvik-top-footer-disclaimer {
  background: rgba(255, 255, 255, 0.05);
  color: #ffd7a6;
  border: 1px solid rgba(255, 183, 88, 0.15);
  border-radius: 1rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  box-shadow: 0 0 20px rgba(255, 183, 88, 0.05);
  backdrop-filter: blur(6px);
}

.vyvik-top-footer-disclaimer h5 {
  color: #ffb758;
  font-weight: 600;
  font-size: 1.1rem;
}

.vyvik-top-footer-disclaimer p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: #ffd9ad;
}

/* Copyright */
.vyvik-top-footer-copy {
  color: #f2c590;
  font-size: 0.9rem;
}

.vyvik-top-footer-copy a {
  color: #ffb758;
  text-decoration: none;
  transition: color 0.3s ease;
}

.vyvik-top-footer-copy a:hover {
  color: #f08233;
}

/* ==============================
   RESPONSIVE DESIGN
   ============================== */

@media (max-width: 768px) {
  .vyvik-top-footer-nav {
    gap: 1rem;
    font-size: 0.95rem;
  }

  .vyvik-top-footer-disclaimer {
    padding: 1.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .vyvik-top-footer-logo {
    max-width: 130px;
  }
}

/* ==============================
   VYVIK.TOP AGE POPUP STYLES
   ============================== */

.vyvik-top-popup {
  position: fixed;
  inset: 0;
  background: rgba(34, 24, 15, 0.95);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 3000;
}

.vyvik-top-popup.active {
  visibility: visible;
  opacity: 1;
}

/* INNER BOX */
.vyvik-top-popup-inner {
  background: #2e1c11;
  border: 2px solid #ffb758;
  border-radius: 1.25rem;
  box-shadow: 0 0 35px rgba(255, 183, 88, 0.35);
  color: #f9b47e;
  max-width: 500px;
  width: 90%;
  text-align: center;
  padding: 2.5rem 2rem;
  animation: popupFade 0.4s ease-out;
}

@keyframes popupFade {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* TITLE */
.vyvik-top-popup-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #ffb758;
  text-shadow: 1px 1px 2px #000;
  margin-bottom: 1.2rem;
}

/* TEXT */
.vyvik-top-popup-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #f3d0a3;
  margin-bottom: 1.25rem;
}

.vyvik-top-popup-text strong {
  color: #ffb758;
}

/* BUTTON GROUP */
.vyvik-top-popup-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* BUTTON STYLES */
.vyvik-top-btn {
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 183, 88, 0.25);
}

.vyvik-top-btn.enter {
  background-color: #ffb758;
  color: #2e1c11;
}

.vyvik-top-btn.enter:hover {
  background-color: #f08233;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(240, 130, 51, 0.5);
}

.vyvik-top-btn.exit {
  background-color: #3b2a1c;
  color: #f9b47e;
  border: 1px solid #f9b47e;
}

.vyvik-top-btn.exit:hover {
  background-color: #f9b47e;
  color: #2e1c11;
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(249, 180, 126, 0.4);
}

/* RESPONSIVE */
@media (max-width: 480px) {
  .vyvik-top-popup-inner {
    padding: 2rem 1.25rem;
  }
  .vyvik-top-popup-title {
    font-size: 1.6rem;
  }
  .vyvik-top-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
  }
  .vyvik-top-popup-actions {
    flex-direction: column;
    gap: 0.8rem;
  }
}

/* Scroll to top button */
.vyvik-top-scroll{ position:fixed; right:18px; bottom:18px; width:48px; height:48px; border-radius:10px; display:none; align-items:center; justify-content:center; background: rgba(255,255,255,0.03); border:1px solid rgba(255,183,88,0.04); color:var(--heading); z-index:120; cursor:pointer; }

/* Alerts */
.vyvik-top-alert{ position:fixed; left:50%; transform:translateX(-50%); top:18px; padding:0.8rem 1rem; border-radius:10px; color:#fff; font-weight:600; z-index:220; box-shadow:0 8px 28px rgba(0,0,0,0.5); transition: opacity .2s ease; }
.vyvik-top-alert.success{ background: linear-gradient(90deg, rgba(110,210,140,0.95), rgba(70,180,100,0.95)); }
.vyvik-top-alert.error{ background: linear-gradient(90deg, rgba(240,120,120,0.95), rgba(210,80,80,0.95)); }

/* Small responsive tweaks */
@media (max-width: 991px){
  .vyvik-top-contact-grid{ grid-template-columns: 1fr; }
  .vyvik-top-hero{ padding: 3.5rem 0; }
  .vyvik-top-notice-card{ padding:1.8rem; }
  .vyvik-top-video-ratio{ padding-top:56.25%; border-radius:12px; }
}

@media (max-width: 560px){
  .vyvik-top-hero-title{ font-size:1.6rem; }
  .vyvik-top-hero-sub{ font-size:0.96rem; }
  .vyvik-top-btn{ padding:0.7rem 1rem; border-radius:12px; }
  .vyvik-top-nav .nav-link{ padding:0.45rem 0.4rem; }
  .vyvik-top-feature-card{ min-height: unset; }
}

/* Accessibility: focus states */
a:focus, button:focus, input:focus, textarea:focus{
  outline: 3px solid rgba(255,183,88,0.16);
  outline-offset: 3px;
}


/* ==============================
   LEGAL PAGES — VYVIK.TOP
   ============================== */

.vyvik-legal-section {
  background: #1b0f08;
  color: #fce2b5;
  line-height: 1.8;
  font-size: 1rem;
}

.vyvik-legal-title {
  font-size: 2.2rem;
  color: #ffb758;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vyvik-legal-intro {
  color: #f2c58a;
  max-width: 750px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.vyvik-legal-article {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 183, 88, 0.15);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 20px rgba(255, 183, 88, 0.05);
  backdrop-filter: blur(5px);
}

.vyvik-legal-article h2 {
  color: #ffb758;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.vyvik-legal-article p {
  color: #fbe6c9;
  margin-bottom: 0;
}

.vyvik-legal-article a {
  color: #ffb758;
  text-decoration: none;
  font-weight: 500;
}

.vyvik-legal-article a:hover {
  text-decoration: underline;
  color: #f08233;
}

/* Responsive */
@media (max-width: 768px) {
  .vyvik-legal-article {
    padding: 1.5rem;
  }

  .vyvik-legal-title {
    font-size: 1.8rem;
  }
}
