/*-------------------------------------------------
  VYRA.CLICK SPACE-THEMED STYLESHEET
  Author: Reeshtech | Site: Vyra.click
  -------------------------------------------------*/

/*------------------------------
  BASE STYLES
-------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.vyra-click-body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(ellipse at top, #1a1340, #160f2e 80%);
  color: #e7e7e7;
  overflow-x: hidden;
  line-height: 1.7;
}

/*------------------------------
  GLOBAL ELEMENTS
-------------------------------*/
a {
  color: #46eaff;
  text-decoration: none;
  transition: 0.3s ease;
}
a:hover {
  color: #e7e7e7;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title,
.vyra-click-section-title {
  color: #46eaff;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 2rem;
  text-shadow: 0 0 10px rgba(70, 234, 255, 0.6);
  border-bottom: 2px solid rgba(70, 234, 255, 0.2);
  display: inline-block;
  padding-bottom: 8px;
}

/*------------------------------
  NAVBAR
-------------------------------*/
.vyra-click-navbar {
  background: rgba(22, 15, 46, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(70, 234, 255, 0.15);
  box-shadow: 0 0 20px rgba(70, 234, 255, 0.15);
}

.vyra-click-logo {
  height: 80px;
}

.vyra-click-nav .nav-link {
  color: #e7e7e7;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  transition: 0.3s;
}
.vyra-click-nav .nav-link:hover,
.vyra-click-nav .nav-link.active {
  color: #160f2e;
  background-color: #46eaff;
  box-shadow: 0 0 12px #46eaff;
}
/*--------------------------------------
  NAVBAR TOGGLER (Mobile Menu Button)
---------------------------------------*/
.vyra-click-navbar .navbar-toggler {
  border: 2px solid #46eaff;
  color: #46eaff;
  background-color: transparent;
  border-radius: 8px;
  padding: 6px 10px;
  transition: all 0.3s ease;
}

/* Hover effect */
.vyra-click-navbar .navbar-toggler:hover,
.vyra-click-navbar .navbar-toggler:focus {
  background-color: #46eaff;
  color: #160f2e;
  border-color: #46eaff;
  outline: none;
  box-shadow: 0 0 10px #46eaff80;
}

/* Toggle icon style */
.vyra-click-navbar .navbar-toggler .fas {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

/* Rotate icon when menu is open */
.vyra-click-navbar .navbar-toggler[aria-expanded="true"] .fas {
  transform: rotate(90deg);
}

/* Show toggler only on mobile */
@media (min-width: 768px) {
  .vyra-click-navbar .navbar-toggler {
    display: none;
  }
}

.navbar-toggler:hover .fas {
  color: #e7e7e7;
  text-shadow: 0 0 10px #46eaff, 0 0 20px #46eaff;
  transition: all 0.3s ease;
}

/*------------------------------
  HERO SECTION
-------------------------------*/
.vyra-click-hero {
  position: relative;
  background: url("../images/hero.jpg") center/cover no-repeat;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.vyra-click-hero-overlay {
  position: absolute;
  inset: 0;
}

.vyra-click-hero-inner {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.vyra-click-hero-title {
  font-size: 3rem;
  color: #46eaff;
  text-shadow: 0 0 20px rgba(70, 234, 255, 0.6);
  font-weight: 800;
  margin-bottom: 1rem;
}

.vyra-click-hero-text {
  color: #e7e7e7;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

/*------------------------------
  BUTTONS
-------------------------------*/
.vyra-click-btn,
.vyra-click-btn-outline {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.vyra-click-btn {
  background: #46eaff;
  color: #160f2e;
  box-shadow: 0 0 15px rgba(70, 234, 255, 0.5);
}
.vyra-click-btn:hover {
  background: #e7e7e7;
  color: #160f2e;
  box-shadow: 0 0 25px rgba(70, 234, 255, 0.7);
}

.vyra-click-btn-outline {
  background: transparent;
  border: 2px solid #46eaff;
  color: #46eaff;
}
.vyra-click-btn-outline:hover {
  background: #46eaff;
  color: #160f2e;
}

/*------------------------------
  DISCLAIMER CARD
-------------------------------*/
.vyra-click-disclaimer-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(70, 234, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(70, 234, 255, 0.15);
}

/*----------------------------------
  GAME SECTION
----------------------------------*/
.vyra-click-game-wrapper {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(70, 234, 255, 0.3);
  background: #000;
}

/* Responsive 16:9 Aspect Ratio */
.vyra-click-game-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio (9/16 = 0.5625) */
  background: #000;
}

.vyra-click-game-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
  background-color: #000;
}

/* Optional Glow on Hover */
.vyra-click-game-wrapper:hover {
  box-shadow: 0 0 35px rgba(70, 234, 255, 0.6);
  transition: box-shadow 0.3s ease-in-out;
}

/* Small Device Adjustments */
@media (max-width: 576px) {
  .vyra-click-game-wrapper {
    border-radius: 14px;
  }
}

/*------------------------------
  FEATURES
-------------------------------*/
.vyra-click-feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(70, 234, 255, 0.2);
  transition: 0.3s ease;
}
.vyra-click-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(70, 234, 255, 0.3);
}

.vyra-click-feature-icon {
  font-size: 2rem;
  color: #46eaff;
  text-shadow: 0 0 10px rgba(70, 234, 255, 0.7);
}
.vyra-click-feature-title {
  color: #46eaff;
  font-weight: 700;
  margin-bottom: 10px;
}
.vyra-click-feature-text {
  color: #e7e7e7;
}

/*------------------------------
  ABOUT SECTION
-------------------------------*/
.vyra-click-about-text {
  color: #e7e7e7;
  font-size: 1.05rem;
  text-align: center;
  line-height: 1.8;
}

/*------------------------------
  CONTACT FORM
-------------------------------*/
.vyra-click-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(70, 234, 255, 0.2);
  color: #e7e7e7;
  border-radius: 8px;
  padding: 12px;
  transition: 0.3s;
}
.vyra-click-input:focus {
  border-color: #46eaff;
  box-shadow: 0 0 10px rgba(70, 234, 255, 0.3);
  outline: none;
}

/*--------------------------------------
  FOOTER SECTION
---------------------------------------*/
.vyra-click-footer {
  background: radial-gradient(circle at center, #031b2d 0%, #010a14 100%);
  color: #b0dfff;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 40px;
}

.vyra-click-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(70, 234, 255, 0.15), rgba(255, 255, 255, 0));
  opacity: 0.2;
  pointer-events: none;
}

/* Footer Logo Centering */
.vyra-click-footer-logo {
  display: block;
  margin: 0 auto 25px auto; /* centers the logo */
  width: 140px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(70, 234, 255, 0.3));
  transition: transform 0.3s ease, filter 0.3s ease;
}
.vyra-click-footer-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px rgba(70, 234, 255, 0.5));
}

/* Footer Links */
.vyra-click-footer-links {
  padding: 0;
  margin-bottom: 25px;
}
.vyra-click-footer-links a {
  color: #b0dfff;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.vyra-click-footer-links a:hover {
  color: #46eaff;
  text-shadow: 0 0 8px #46eaff;
}

/* Disclaimer Box */
.vyra-click-footer-disclaimer {
  background: rgba(0, 20, 35, 0.7);
  border: 1px solid rgba(70, 234, 255, 0.2);
  border-radius: 12px;
  padding: 20px;
  color: #a8d8ff;
  box-shadow: 0 0 25px rgba(70, 234, 255, 0.08);
  transition: box-shadow 0.3s ease;
  text-align: left;
}
.vyra-click-footer-disclaimer:hover {
  box-shadow: 0 0 30px rgba(70, 234, 255, 0.15);
}

/* Disclaimer Title */
.vyra-click-disclaimer-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #46eaff;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

/* Disclaimer Text */
.vyra-click-disclaimer-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #b8e6ff;
  text-align: center;
}

/* Footer Copyright */
.vyra-click-footer p {
  color: #84cfff;
  font-size: 0.85rem;
  margin: 0;
}
.vyra-click-footer p a {
  color: #46eaff;
  text-decoration: none;
  font-weight: 500;
}
.vyra-click-footer p a:hover {
  text-decoration: underline;
}

/* Divider */
.vyra-click-footer::after {
  content: "";
  display: block;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(70, 234, 255, 0.3), transparent);
  margin: 20px auto 0;
  border-radius: 50%;
  opacity: 0.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .vyra-click-footer-links {
    gap: 10px;
  }
  .vyra-click-footer-disclaimer {
    padding: 15px;
  }
  .vyra-click-disclaimer-title {
    font-size: 1.05rem;
  }
  .vyra-click-disclaimer-text {
    font-size: 0.9rem;
  }
}


/*------------------------------
  SCROLL TO TOP BUTTON
-------------------------------*/
.vyra-click-scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #46eaff;
  color: #160f2e;
  border: none;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(70, 234, 255, 0.5);
  transition: 0.3s;
  z-index: 999;
}
.vyra-click-scroll-top:hover {
  background: #e7e7e7;
  box-shadow: 0 0 30px rgba(70, 234, 255, 0.8);
}

/*------------------------------
  DISCLAIMER POPUP
-------------------------------*/
.vyra-click-popup {
  position: fixed;
  inset: 0;
  background: rgba(22, 15, 46, 0.96);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}
.vyra-click-popup[aria-hidden="false"] {
  display: flex;
}
.vyra-click-popup-inner {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(70, 234, 255, 0.25);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 0 25px rgba(70, 234, 255, 0.3);
  max-width: 400px;
}
.vyra-click-popup h3 {
  color: #46eaff;
  margin-bottom: 1rem;
}
.vyra-click-popup p {
  margin-bottom: 1.5rem;
  color: #e7e7e7;
}
.vyra-click-popup-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/*------------------------------
  MEDIA QUERIES
-------------------------------*/
@media (max-width: 768px) {
  .vyra-click-hero-title {
    font-size: 2.2rem;
  }
  .vyra-click-hero-text {
    font-size: 1rem;
  }
  .vyra-click-game-frame iframe {
    height: 300px;
  }
}



/*--------------------------------------
  LEGAL PAGES STYLING
---------------------------------------*/
.vyra-click-legal {
  background: #160f2e;
  color: #e7e7e7;
  padding-top: 80px;
  padding-bottom: 80px;
  line-height: 1.7;
}
.vyra-click-legal-title {
  color: #46eaff;
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(70, 234, 255, 0.6);
  border-bottom: 2px solid rgba(70, 234, 255, 0.4);
  display: inline-block;
  padding-bottom: 10px;
}
.vyra-click-legal-subtitle {
  color: #46eaff;
  font-size: 1.3rem;
  font-weight: 600;
  border-left: 4px solid #46eaff;
  padding-left: 12px;
  margin-bottom: 10px;
  margin-top: 30px;
  text-shadow: 0 0 5px rgba(70, 234, 255, 0.5);
}
.vyra-click-legal-text {
  font-size: 1rem;
  color: #e7e7e7;
  margin-bottom: 15px;
  text-align: justify;
}
.vyra-click-legal-list {
  margin-left: 25px;
  color: #c7f5ff;
}
.vyra-click-legal-list li {
  margin-bottom: 8px;
}

/* Links */
.vyra-click-legal a {
  color: #46eaff;
  text-decoration: none;
}
.vyra-click-legal a:hover {
  text-decoration: underline;
  color: #e7e7e7;
}

/* Responsive */
@media (max-width: 768px) {
  .vyra-click-legal-title {
    font-size: 1.8rem;
  }
  .vyra-click-legal-subtitle {
    font-size: 1.15rem;
  }
  .vyra-click-legal-text {
    font-size: 0.95rem;
  }
}
