/* Base */
body.veyra-icu {
  font-family: 'Inter', sans-serif;
  background: #ffcfa7;
  color: #4d2f1d;
  margin: 0;
  scroll-behavior: smooth;
}

/* Navbar Base */
.veyra-icu-navbar {
  background: #ffcfa7;
  padding: 1rem 0;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Logo */
.veyra-icu-logo {
  max-height: 90px;
}

/* Nav links container */
.veyra-icu-navbar .navbar-nav {
  justify-content: center; /* Center links */
  align-items: center;
  gap: 1.5rem; /* space between links */
  flex-wrap: wrap;
}

/* Links */
.veyra-icu-navbar .nav-link {
  color: #095334;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 20px; /* Rounded pill shape */
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
}

/* Hover */
.veyra-icu-navbar .nav-link:hover {
  background: #4d2f1d;
  color: #ffcfa7;
}

/* Active link */
.veyra-icu-navbar .nav-link.active {
  background: #095334;
  color: #ffcfa7;
  box-shadow: 0 0 10px rgba(9,83,52,0.5);
}

/* Optional: small underline for active */
.veyra-icu-navbar .nav-link.active::after {
  content: "";
  display: block;
  height: 4px;
  width: 50%;
  background: #ffcfa7;
  border-radius: 2px;
  margin: 4px auto 0;
}

/* Responsive adjustments */
@media(max-width: 768px) {
  .veyra-icu-navbar .navbar-nav {
    flex-direction: column;
    gap: 0.8rem;
  }
}


/* Hero Section */
.veyra-icu-hero {
  position: relative;
  min-height: 70vh; /* Adjust height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('../images/hero.jpg') no-repeat center center;
  background-size: cover;
  color: #fff;
  overflow: hidden;
}

/* Optional overlay for better text readability */
.veyra-icu-hero-overlay {
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  z-index: 1;
}

/* Hero content */
.veyra-icu-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px; /* Contained width */
  margin: 0 auto;
  padding: 1rem;
}

/* Heading */
.veyra-icu-hero-heading {
  font-size: 3rem;
  font-weight: 700;
  color: #095334; 
  text-shadow: 1px 1px #2f2119;
  margin-bottom: 1rem;
}

/* Paragraph */
.veyra-icu-hero-text {
  font-size: 1.2rem;
  color: #4d2f1d;
  margin-bottom: 1.5rem;
}

/* Button */
.veyra-icu-btn {
  background: #095334;
  color: #ffcfa7;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 30px;
  border: none;
  transition: 0.3s;
}
.veyra-icu-btn:hover {
  background: #4d2f1d;
}

/* Responsive */
@media(max-width:768px){
  .veyra-icu-hero-heading { font-size: 2rem; }
  .veyra-icu-hero-text { font-size: 1rem; }
  .veyra-icu-hero-content { padding: 0.5rem; }
}


/* Cards & Sections */
.veyra-icu-section-title {
  font-size: 2rem;
  color: #095334;
  text-shadow: 1px 1px #2f2119;
  font-weight: 700;
}
.veyra-icu-lead {
  color: #4d2f1d;
  font-size: 1rem;
}

/* Notice Card */
.veyra-icu-brief-card {
  background: #ffcfa7;
  color: #4d2f1d;
  border: 2px solid #095334;
  transition: transform 0.3s, box-shadow 0.3s;
}
.veyra-icu-brief-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Section Title */
.veyra-icu-section-title {
  color: #095334;
  text-shadow: 1px 1px #2f2119;
  font-size: 2rem;
  font-weight: 700;
}

/* Notice Text */
.veyra-icu-notice-text {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Disclaimer Button */
.veyra-icu-btn-outline {
  display: inline-block;
  padding: 12px 30px;
  font-weight: 600;
  color: #095334;
  background: transparent;
  border: 2px solid #095334;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 1rem;
}
.veyra-icu-btn-outline:hover {
  background: #095334;
  color: #ffcfa7;
  transform: translateY(-2px);
}


/* Game Card */
.veyra-icu-game-card {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

/* Game Frame Wrapper */
.veyra-icu-game-frame {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9; /* keeps 900x600 ratio */
  border: 2px solid #095334;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  background: #000; /* fallback so black bars blend */
  display: flex;
  justify-content: center;  /* horizontal center */
  align-items: center;      /* vertical center */
}

/* Iframe */
.veyra-icu-game-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain; /* scale and keep aspect ratio */
  background: #000;    /* fill behind */
}

/* Responsive adjustments */
@media(max-width:1024px){
  .veyra-icu-game-frame {
    max-width: 90%;
  }
}

@media(max-width:768px){
  .veyra-icu-game-frame {
    aspect-ratio: auto;
    height: 60vw;  /* proportion for mobile */
  }
}


/* Features Section */
.veyra-icu-features {
  background: #ffcfa7;
}

/* Section Title */
.veyra-icu-features .veyra-icu-section-title {
  color: #095334;
  text-shadow: 1px 1px #2f2119;
  font-size: 2rem;
  font-weight: 700;
}

/* Section Lead */
.veyra-icu-features .veyra-icu-lead {
  font-size: 1.1rem;
  color: #4d2f1d;
}

/* Feature Cards */
.veyra-icu-feature-card {
  background: #fff8f0;
  border: 2px solid #095334;
  border-radius: 20px;
  padding: 2rem 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
  color: #4d2f1d;
}
.veyra-icu-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
  background: #095334;
  color: #ffcfa7;
}

/* Feature Icons */
.veyra-icu-feature-card .feature-icon {
  color: #095334;
  transition: color 0.3s;
}
.veyra-icu-feature-card:hover .feature-icon {
  color: #ffcfa7;
}

/* Feature Headings */
.veyra-icu-feature-card h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Feature Paragraph */
.veyra-icu-feature-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive */
@media(max-width:768px){
  .veyra-icu-feature-card {
    padding: 1.5rem;
  }
}


/* About Section */
.veyra-icu-about {
  background: #ffcfa7;
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

/* Section Title */
.veyra-icu-about .veyra-icu-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #095334;
  text-shadow: 1px 1px #2f2119;
}

/* About Text */
.veyra-icu-about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4d2f1d;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Button */
.veyra-icu-about .veyra-icu-btn {
  margin-top: 1.5rem;
  background: #095334;
  color: #ffcfa7;
  padding: 12px 30px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.veyra-icu-about .veyra-icu-btn:hover {
  background: #4d2f1d;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* Image Wrapper */
.veyra-icu-about-image-wrapper {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.veyra-icu-about-image-wrapper:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Image */
.veyra-icu-about-img {
  border-radius: 12px;
}

/* Responsive */
@media(max-width:992px){
  .veyra-icu-about .veyra-icu-section-title {
    font-size: 1.8rem;
  }
  .veyra-icu-about-text p {
    font-size: 1rem;
  }
}
@media(max-width:576px){
  .veyra-icu-about .veyra-icu-btn {
    padding: 10px 25px;
    font-size: 0.95rem;
  }
}

/* Reviews Section */
.veyra-icu-reviews {
  background: #ffcfa7;
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Section Title */
.veyra-icu-reviews .veyra-icu-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #095334;
  text-shadow: 1px 1px #2f2119;
}

/* Section Lead */
.veyra-icu-reviews .veyra-icu-lead {
  font-size: 1.1rem;
  color: #4d2f1d;
}

/* Review Cards */
.veyra-icu-review-card {
  background: #ffcfa7;
  border: 2px solid #095334;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 2rem 1.5rem;
  color: #4d2f1d;
  position: relative;
}
.veyra-icu-review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  border-color: #4d2f1d;
  background: #fffbe6;
}

/* Avatar */
.veyra-icu-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffcfa7;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gradient-avatar {
  background: linear-gradient(135deg, #095334, #4d2f1d);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.veyra-icu-review-card:hover .veyra-icu-avatar {
  transform: scale(1.2);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Reviewer Name */
.veyra-icu-review-card h6 {
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: #095334;
}

/* Review Text */
.veyra-icu-review-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 0.5rem;
  color: #4d2f1d;
}

/* Responsive Adjustments */
@media(max-width:768px){
  .veyra-icu-review-card {
    padding: 1.5rem 1rem;
  }
  .veyra-icu-avatar {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}

/* Footer Base */
.veyra-icu-footer {
  background: #ffcfa7;
  color: #4d2f1d;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

/* Footer Links */
.veyra-icu-footer-links a {
  color: #095334;           /* Accent color */
  font-weight: 600;         /* Bold for prominence */
  text-decoration: none;    /* Remove underline */
  transition: color 0.3s ease, transform 0.2s ease;
  padding: 0.25rem 0.5rem; /* Slight padding for clickable area */
  border-radius: 5px;       /* Rounded clickable area */
}

.veyra-icu-footer-links a:hover {
  color: #4d2f1d;           /* Darker accent on hover */
  transform: translateY(-2px); /* Subtle lift on hover */
  background: rgba(9, 83, 52, 0.1); /* Light background highlight */
}

/* Footer Bottom Links */
.veyra-icu-footer-bottom a {
  color: #095334;           
  font-weight: 600;         
  text-decoration: none;    
  transition: color 0.3s ease, transform 0.2s ease;
}

.veyra-icu-footer-bottom a:hover {
  color: #4d2f1d;
  text-decoration: none;
  transform: translateY(-1px);
}


/* Prominent Disclaimer */
.veyra-icu-footer-disclaimer {
  background: #095334;
  color: #ffcfa7;
  border: 2px solid #4d2f1d;
  max-width: 900px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.veyra-icu-footer-disclaimer:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Disclaimer Heading */
.veyra-icu-footer-disclaimer h5 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Disclaimer Text */
.veyra-icu-footer-disclaimer p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Footer Bottom */
.veyra-icu-footer-bottom a {
  color: #095334;
  text-decoration: none;
  font-weight: 500;
}
.veyra-icu-footer-bottom a:hover {
  color: #4d2f1d;
  text-decoration: underline;
}

/* Responsive */
@media(max-width:768px){
  .veyra-icu-footer-disclaimer {
    padding: 2rem 1.5rem;
  }
  .veyra-icu-footer-disclaimer h5 {
    font-size: 1.1rem;
  }
  .veyra-icu-footer-disclaimer p {
    font-size: 0.95rem;
  }
}

/* Age Popup Overlay */
.veyra-icu-popup-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  display: none;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 1rem;
}

/* Popup Card */
.veyra-icu-popup-card {
  background: #ffcfa7;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  max-width: 480px;
  width: 100%;
  color: #4d2f1d;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative;
}

/* Popup Title */
.veyra-icu-popup-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #095334;
  text-shadow: 1px 1px #2f2119;
}

/* Popup Text */
.veyra-icu-popup-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Popup Buttons */
.veyra-icu-popup-actions .btn {
  margin: 0 0.5rem;
  padding: 0.55rem 1.3rem;
  font-size: 0.95rem;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.veyra-icu-popup-actions .btn:hover {
  transform: translateY(-2px);
}

/* Accept Button */
.veyra-icu-btn {
  background: #095334;
  color: #ffcfa7; /* Text color */
  border: none;
  border-radius: 8px;
  font-weight: 600;
  padding: 0.55rem 1.3rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.veyra-icu-btn:hover {
  background: #4d2f1d;
  color: #ffcfa7; /* Ensure text remains visible */
}

/* Exit Button */
.veyra-icu-btn-outline {
  background: transparent;
  color: #095334;
  border: 2px solid #095334;
  border-radius: 8px;
  font-weight: 600;
  padding: 0.55rem 1.3rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.veyra-icu-btn-outline:hover {
  background: #4d2f1d;
  color: #ffcfa7; /* Make text visible */
  border-color: #4d2f1d;
}


/* Scroll Top Button */
.veyra-icu-scroll-top {
  display: none;
  position: fixed;
  bottom: 40px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: #095334;
  color: #ffcfa7;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  transition: all 0.3s ease;

  /* Center the arrow perfectly */
  display: flex;
  justify-content: center;
  align-items: center;
}

.veyra-icu-scroll-top:hover {
  background: #4d2f1d;
  transform: translateY(-3px);
}


/* Responsive */
@media(max-width:768px){
  .veyra-icu-hero-heading { font-size: 2rem; }
  .veyra-icu-hero-text { font-size: 1rem; }
  .veyra-icu-game-frame iframe { height: 400px; }
}



/* Contact Section */
.veyra-icu-contact {
  background: #ffcfa7;
  color: #4d2f1d;
  font-family: 'Poppins', sans-serif;
}

.veyra-icu-contact .veyra-icu-section-title {
  color: #095334;
  text-shadow: 1px 1px #2f2119;
  font-size: 2rem;
  font-weight: 700;
}

.veyra-icu-contact .veyra-icu-lead {
  font-size: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.veyra-icu-contact-form .form-label {
  font-weight: 500;
  color: #095334;
}

.veyra-icu-contact-form .form-control {
  border-radius: 8px;
  border: 2px solid #095334;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.veyra-icu-contact-form .form-control:focus {
  border-color: #4d2f1d;
  box-shadow: 0 0 8px rgba(9,83,52,0.2);
}

.veyra-icu-contact-form .btn.veyra-icu-btn {
  margin-top: 1rem;
  background: #095334;
  color: #ffcfa7;
  font-weight: 600;
  padding: 0.55rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.veyra-icu-contact-form .btn.veyra-icu-btn:hover {
  background: #4d2f1d;
  color: #ffcfa7;
  transform: translateY(-2px);
}

/* Responsive */
@media(max-width:768px){
  .veyra-icu-contact-form .form-control {
    font-size: 0.95rem;
  }
  .veyra-icu-contact .veyra-icu-section-title {
    font-size: 1.75rem;
  }
}



/* Legal Pages (Disclaimer, Privacy, Terms) */
.veyra-icu-legal {
  background: #ffcfa7;
  color: #4d2f1d;
  font-family: 'Poppins', sans-serif;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.veyra-icu-legal .veyra-icu-section-title {
  color: #095334;
  text-shadow: 1px 1px #2f2119;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.veyra-icu-legal .veyra-icu-legal-content p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.veyra-icu-legal .veyra-icu-legal-content h2 {
  font-size: 1.5rem;
  color: #095334;
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-shadow: 0.5px 0.5px #2f2119;
}

.veyra-icu-legal a {
  color: #095334;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed #095334;
  transition: all 0.3s ease;
}

.veyra-icu-legal a:hover {
  color: #4d2f1d;
  border-bottom-color: #4d2f1d;
}

.veyra-icu-legal .veyra-icu-legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Responsive */
@media(max-width:768px) {
  .veyra-icu-legal .veyra-icu-section-title {
    font-size: 1.75rem;
  }

  .veyra-icu-legal .veyra-icu-legal-content p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .veyra-icu-legal .veyra-icu-legal-content h2 {
    font-size: 1.3rem;
  }
}
