/* Vynska.world — main stylesheet
   Colors and tokens match your specification.
   Headings: #02ac41 with subtle border
   Text: #9eccaf
   Accents & buttons: #02ac41
   Button text: #3f1d12
   Button hover: #9eccaf
   Site background: #3f1d12
*/

:root{
  --bg: #3f1d12;
  --accent: #02ac41;
  --text: #9eccaf;
  --accent-dark: #02381f; /* for heading stroke / borders */
  --btn-text: #3f1d12;
  --btn-hover: #9eccaf;
  --container-max: 1200px;
  --radius-lg: 16px;
  --glass: rgba(255,255,255,0.03);
  --muted: rgba(158,204,175,0.35);
  --shadow: 0 10px 30px rgba(0,0,0,0.45);
  --focus: 3px solid rgba(0, 172, 65, 0.6);
}

body.vynska-world-body {
margin: 0;
font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
background-color: var(--bg);
color: var(--text);
line-height: 1.6;
}

/* Navbar */
.vynska-world-navbar {
background: var(--bg);
color: var(--text);
z-index: 1000;
}

.vynska-world-navbar .nav-link {
color: var(--text);
font-weight: 500;
transition: color 0.3s, border-bottom 0.3s;
}

.vynska-world-navbar .nav-link.active,
.vynska-world-navbar .nav-link:hover {
color: var(--accent);
border-bottom: 2px solid var(--accent);
}

.vynska-world-logo {
height: 80px;
}

.vynska-world-brand-text {
font-weight: 700;
font-size: 1.2rem;
color: var(--accent);
}

/* Hero Section */
.vynska-world-hero {
  position: relative;
  text-align: center;
  height: 90vh; /* full viewport height minus small margin */
  background: 
    url('../images/hero.jpg') center center / cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  color: var(--text);
}

.vynska-world-hero-overlay {
position: absolute;
inset: 0;
background: rgba(0,0,0,0.2);
z-index: 0;
}

.vynska-world-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px; /* maximum width */
  width: 100%;       /* full width up to max-width */
  margin: 0 auto;    /* center horizontally */
  padding: 0 15px;   /* horizontal padding for small screens */
  text-align: center;
}

.vynska-world-hero-heading {
font-size: 2.5rem;
font-weight: 700;
color: var(--accent);
text-shadow: 0 0 3px var(--accent-dark);
margin-bottom: 20px;
}

.vynska-world-hero-text {
font-size: 1.2rem;
margin-bottom: 30px;
color: var(--text);
}

.vynska-world-btn {
background-color: var(--accent);
color: var(--btn-text);
font-weight: 600;
padding: 0.75rem 1.5rem;
border-radius: var(--radius-lg);
text-decoration: none;
transition: background 0.3s, color 0.3s;
}

.vynska-world-btn:hover {
background-color: var(--btn-hover);
color: var(--bg);
}

.vynska-world-btn-outline {
background: transparent;
border: 2px solid var(--accent);
color: var(--accent);
font-weight: 600;
padding: 0.7rem 1.5rem;
border-radius: var(--radius-lg);
transition: all 0.3s;
}

.vynska-world-btn-outline:hover {
background-color: var(--accent);
color: var(--btn-text);
}

/* Notice Card */
.vynska-world-notice-card {
background: var(--glass);
color: var(--text);
box-shadow: var(--shadow);
border-radius: var(--radius-lg);
}

.vynska-world-section-title {
color: var(--accent);
font-weight: 700;
font-size: 2rem;
margin-bottom: 1rem;
text-shadow: 1px 1px 2px var(--accent-dark);
}

/* Game Frame */
.vynska-world-game-frame {
position: relative;
width: 100%;
max-width: 900px;
margin: 0 auto;
aspect-ratio: 16/9;
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: var(--shadow);
}

.vynska-world-game-frame iframe {
width: 100%;
height: 100%;
border: none;
display: block;
}

/* Features */
.vynska-world-feature-card {
background: var(--glass);
border-radius: var(--radius-lg);
padding: 30px 20px;
transition: transform 0.3s, box-shadow 0.3s;
}

.vynska-world-feature-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow);
}

.feature-icon {
font-size: 2rem;
color: var(--accent);
margin-bottom: 15px;
}

/* About Section */
.vynska-world-about-content {
background: var(--glass);
color: var(--text);
border-radius: var(--radius-lg);
box-shadow: var(--shadow);
}

.vynska-world-reviews .vynska-world-review-card {
  background: rgba(2, 172, 65, 0.1);
  color: var(--text);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(2, 172, 65, 0.3);
}

.vynska-world-reviews .vynska-world-review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.vynska-world-reviews .vynska-world-avatar {
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: var(--btn-text);
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 1.2rem;
  box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}

.vynska-world-reviews .text-muted {
  color: #9eccaf !important;
}


/* Footer container */
.vynska-world-footer {
  background-color: #3f1d12;
  color: #9eccaf;
  padding: 60px 20px;
  font-family: 'Poppins', system-ui, sans-serif;
}

/* Footer logo */
.vynska-world-footer-logo {
  height: 60px;
  transition: transform 0.3s;
}

.vynska-world-footer-logo:hover {
  transform: scale(1.05);
}

/* Footer links */
.vynska-world-footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.vynska-world-footer-links .footer-link {
  color: #9eccaf;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: color 0.3s, border-bottom 0.3s;
}

.vynska-world-footer-links .footer-link:hover,
.vynska-world-footer-links .footer-link:focus {
  color: #02ac41;
  border-bottom: 2px solid #02ac41;
}

.vynska-world-footer-links .footer-link:active {
  color: #02ac41;
  opacity: 0.8;
}

/* Footer disclaimer card */
.vynska-world-footer-disclaimer {
  background: rgba(2, 172, 65, 0.1);
  color: #9eccaf;
  text-align: left;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  line-height: 1.6;
}

.vynska-world-footer-disclaimer h5 {
  color: #02ac41;
  font-weight: 700;
  text-shadow: 1px 1px 2px #000;
  margin-bottom: 15px;
}

.vynska-world-footer-disclaimer a.footer-link {
  color: #02ac41;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s;
}

.vynska-world-footer-disclaimer a.footer-link:hover {
  color: #9eccaf;
}

/* Divider line */
.vynska-world-footer hr {
  border-color: rgba(158, 204, 175, 0.25);
  margin: 30px 0;
}

/* Copyright and powered by text */
.vynska-world-footer .small {
  font-size: 0.85rem;
  color: #9eccaf;
}

.vynska-world-footer .powered-by a.footer-link {
  color: #02ac41;
  font-weight: 600;
  text-decoration: underline;
}

.vynska-world-footer .powered-by a.footer-link:hover {
  color: #9eccaf;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .vynska-world-footer-links {
    flex-direction: column;
    gap: 10px;
  }
  .vynska-world-footer-disclaimer {
    padding: 20px;
  }
}

/* Age Popup */
.vynska-world-popup-overlay {
position: fixed;
inset: 0;
display: none;
justify-content: center;
align-items: center;
background: rgba(0,0,0,0.85);
z-index: 2000;
}

.vynska-world-popup-card {
background: var(--bg);
color: var(--text);
padding: 30px 20px;
border-radius: var(--radius-lg);
max-width: 500px;
width: 90%;
box-shadow: var(--shadow);
}

.vynska-world-popup-actions button {
margin: 5px;
}

/* Scroll Top Button */
.vynska-world-scroll-top {
position: fixed;
bottom: 30px;
right: 30px;
background: var(--accent);
color: var(--btn-text);
border: none;
border-radius: 50%;
width: 45px;
height: 45px;
display: none;
align-items: center;
justify-content: center;
font-size: 1.2rem;
cursor: pointer;
box-shadow: var(--shadow);
z-index: 1500;
}

.vynska-world-scroll-top:hover {
background: var(--btn-hover);
color: var(--bg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
.vynska-world-hero-heading {
font-size: 2rem;
}
.vynska-world-hero-text {
font-size: 1rem;
}
.vynska-world-feature-card, .vynska-world-review-card {
padding: 20px;
}
.vynska-world-about-content {
padding: 20px;
}
}




.vynska-world-contact {
  background: #3f1d12;
  color: #9eccaf;
  font-family: 'Poppins', system-ui, sans-serif;
}

.vynska-world-contact-card {
  background: rgba(2, 172, 65, 0.1);
  color: #9eccaf;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.vynska-world-contact-card .form-label {
  font-weight: 600;
  color: #02ac41;
}

.vynska-world-contact-card .form-control {
  background: #3f1d12;
  border: 1px solid #02ac41;
  color: #9eccaf;
  border-radius: 10px;
  padding: 12px;
  transition: all 0.3s ease;
}

.vynska-world-contact-card .form-control:focus {
  border-color: #9eccaf;
  box-shadow: 0 0 10px rgba(2,172,65,0.5);
  outline: none;
}

.vynska-world-contact-card textarea.form-control {
  resize: none;
}

.vynska-world-btn {
  background-color: #02ac41;
  color: #3f1d12;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 12px;
  border: none;
  transition: all 0.3s ease;
}

.vynska-world-btn:hover {
  background-color: #9eccaf;
  color: #3f1d12;
}




.vynska-world-legal {
  background-color: #3f1d12;
  color: #9eccaf;
  font-family: 'Poppins', system-ui, sans-serif;
}

.vynska-world-legal .vynska-world-section-title {
  color: #02ac41;
  text-shadow: 1px 1px 2px #000;
  font-weight: 700;
  margin-bottom: 20px;
}

.vynska-world-legal-lead {
  color: #9eccaf;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.vynska-world-legal-content {
  background: rgba(2, 172, 65, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  line-height: 1.7;
}

.vynska-world-legal-content h2 {
  color: #02ac41;
  margin-top: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.vynska-world-legal-content p {
  margin-bottom: 15px;
}

.vynska-world-legal-content a.footer-link {
  color: #02ac41;
  text-decoration: underline;
  font-weight: 600;
}

.vynska-world-legal-content a.footer-link:hover {
  color: #9eccaf;
}

@media (max-width: 768px) {
  .vynska-world-legal-content {
    padding: 30px 20px;
  }
}
