/* ===========================
   DROVIK.TODAY GLOBAL STYLES
   =========================== */
body.drovik-today-body {
  background-color: #232323;
  color: #ffda9a;
  font-family: 'Rubik', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: #3ec57b;
  text-shadow: 1px 1px 0 #232323;
  font-weight: 700;
}
.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Links */
a {
  color: #3ec57b;
  text-decoration: none;
}
a:hover {
  color: #ffda9a;
}

/* Buttons */
.btn-drovik {
  background-color: #3ec57b;
  color: #232323;
  font-weight: 600;
  border: 2px solid #3ec57b;
  border-radius: 8px;
  transition: 0.3s ease;
}
.btn-drovik:hover {
  background-color: #ffda9a;
  color: #232323;
  border-color: #ffda9a;
}

.btn-drovik-outline {
  background-color: transparent;
  border: 2px solid #3ec57b;
  color: #3ec57b;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s ease;
}
.btn-drovik-outline:hover {
  background-color: #3ec57b;
  color: #232323;
}

/* ===========================
   NAVBAR
   =========================== */
.drovik-today-navbar {
  background: #232323;
  border-bottom: 1px solid rgba(62, 197, 123, 0.4);
}
.drovik-today-navbar .navbar-brand img {
  height: 80px;
}
.drovik-today-nav .nav-link {
  color: #ffda9a;
  font-weight: 500;
  padding: 8px 15px;
  transition: color 0.3s ease;
}
.drovik-today-nav .nav-link.active,
.drovik-today-nav .nav-link:hover {
  color: #3ec57b;
}
.navbar-toggler {
  border: none;
  font-size: 1.5rem;
  color: #3ec57b;
}
.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

/* ===========================
   HERO
   =========================== */
.drovik-today-hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffda9a;
  background: url("../images/hero.jpg") no-repeat center center;
  background-size: cover;
}

/* Overlay gradient for readability */
.drovik-today-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(35,35,35,0.2), rgba(26,26,26,0.2));
  z-index: 1;
}

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

.hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #3ec57b;
  text-shadow: 2px 2px 4px #000;
}

.hero-sub {
  color: #ffda9a;
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.2rem;
}

.hero-actions .btn {
  margin: 0.3rem;
}

/* ===========================
   DISCLAIMER SHORT CARD
   =========================== */
.drovik-card {
  background: rgba(255, 218, 154, 0.05);
  border: 1px solid rgba(62, 197, 123, 0.4);
  color: #ffda9a;
}
.drovik-card-title {
  color: #3ec57b;
}

/* ===========================
   GAME
   =========================== */
.drovik-game-card {
  background: rgba(255, 218, 154, 0.05);
  border: 1px solid rgba(62, 197, 123, 0.4);
  border-radius: 10px;
  padding: 1rem;
  max-width: 900px;
  margin: 0 auto; /* center horizontally */
}

.drovik-game-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.drovik-game-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

/* ===========================
   FEATURES
   =========================== */
.feature-card {
  background: rgba(62, 197, 123, 0.05);
  border: 1px solid rgba(62, 197, 123, 0.4);
  color: #ffda9a;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
}
.feature-icon {
  font-size: 2rem;
  color: #3ec57b;
  margin-bottom: 10px;
}

/* ===========================
   ABOUT
   =========================== */
.drovik-about-img {
  max-width: 350px;
  border: 2px solid #3ec57b;
  border-radius: 12px;
}

/* ===========================
   REVIEWS
   =========================== */
.drovik-today-reviews {
  background: #1a1a1a;
}

.drovik-today-reviews .section-title {
  color: #3ec57b;
  text-shadow: 1px 1px #232323;
}

.drovik-today-reviews .section-text {
  color: #ffda9a;
  font-size: 1.05rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.review-card {
  background: rgba(62, 197, 123, 0.05);
  border: 1px solid rgba(62, 197, 123, 0.3);
  border-radius: 12px;
  color: #ffda9a;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.review-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #ffda9a;
}

.reviewer-name {
  color: #3ec57b;
  margin-bottom: 0;
}

.review-date {
  color: rgba(255, 218, 154, 0.7);
  font-size: 0.85rem;
}

/* ===========================
   CONTACT FORM
   =========================== */
.drovik-contact .drovik-input {
  background: #1a1a1a;
  border: 1px solid rgba(62, 197, 123, 0.4);
  color: #ffda9a;
  border-radius: 8px;
}

.drovik-contact .drovik-input:focus {
  border-color: #3ec57b;
  outline: none;
  box-shadow: 0 0 5px rgba(62, 197, 123, 0.6);
}

/* Placeholder text style */
.drovik-contact .drovik-input::placeholder {
  color: rgba(255, 218, 154, 0.6);  /* softer gold */
  font-style: italic;
}

/* ===========================
   FOOTER
   =========================== */
.drovik-today-footer {
  background: #1a1a1a;
  color: #ffda9a;
  font-size: 0.95rem;
  line-height: 1.6;
}

.drovik-footer-logo {
  max-width: 160px;
}

.drovik-footer-about {
  color: #ffda9a;
  font-size: 0.95rem;
  margin: 0;
}

/* Headings */
.drovik-footer-heading {
  color: #3ec57b;
  font-weight: 600;
  font-size: 1.05rem;
  border-left: 3px solid #3ec57b;
  padding-left: 8px;
}

/* Links */
.drovik-footer-links li {
  margin-bottom: 0.5rem;
}

.drovik-footer-links a {
  color: #ffda9a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.drovik-footer-links a:hover {
  color: #3ec57b;
}

/* Disclaimer */
.drovik-footer-disclaimer {
  color: #ffda9a;
  font-size: 0.9rem;
  background: rgba(62, 197, 123, 0.05);
  border: 1px solid rgba(62, 197, 123, 0.3);
  border-radius: 8px;
  padding: 1rem;
  margin: 0;
}

/* Divider */
.drovik-footer-divider {
  border-color: rgba(255, 218, 154, 0.2);
}

/* Bottom */
.drovik-footer-bottom {
  color: #ffda9a;
}

.drovik-footer-bottom a {
  color: #3ec57b;
  text-decoration: none;
  font-weight: 500;
}

.drovik-footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .drovik-footer-heading {
    margin-top: 1rem;
  }
}

/* ===========================
   SCROLL TO TOP
   =========================== */
.drovik-scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  height: 40px;
  width: 40px;
  background: #3ec57b;
  color: #232323;
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
  transition: background 0.3s, transform 0.2s ease;
  display: none;

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

.drovik-scroll-top:hover {
  background: #ffda9a;
  color: #232323;
  transform: translateY(-3px);
}


/* ===========================
   DISCLAIMER POPUP
   =========================== */
.drovik-disclaimer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drovik-disclaimer-overlay.active {
  visibility: visible;
  opacity: 1;
}

.drovik-disclaimer-popup {
  background: #1a1a1a;
  border: 1px solid rgba(62, 197, 123, 0.5);
  color: #ffda9a;
  max-width: 500px;
  width: 90%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  animation: fadeInScale 0.4s ease;
}

@keyframes fadeInScale {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.btn-drovik {
  background: #3ec57b;
  border: none;
  color: #232323;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}
.btn-drovik:hover {
  background: #2fa862;
}

.btn-drovik-outline {
  background: transparent;
  border: 1px solid #3ec57b;
  color: #3ec57b;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-drovik-outline:hover {
  background: #3ec57b;
  color: #232323;
}



/* ===========================
   LEGAL PAGES: GENERAL
   =========================== */
.legal-page {
  background: #121212;
  color: #ffda9a;
  padding: 4rem 1rem;
  font-family: 'Rubik', sans-serif;
}

.legal-page .container {
  max-width: 900px;
  margin: 0 auto;
}

.legal-page h1.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #ffffff;
}

.legal-page h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #ffda9a;
}

.legal-page p.section-text {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #ffdca6;
}

.legal-page ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-page ul li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.legal-page a {
  color: #3ec57b;
  text-decoration: none;
  transition: color 0.3s;
}

.legal-page a:hover {
  color: #ffda9a;
  text-decoration: underline;
}

/* ===========================
   RESPONSIVE LEGAL PAGES
   =========================== */
@media (max-width: 768px) {
  .legal-page {
    padding: 3rem 1rem;
  }
  
  .legal-page h1.section-title {
    font-size: 2rem;
  }

  .legal-page h2 {
    font-size: 1.4rem;
  }

  .legal-page p.section-text {
    font-size: 1rem;
  }
}

