/*
  matevibehq.com - Main Stylesheet
  Theme: Dark Red & Orange
  Font: Poppins (unique from previous sites)
  Year: 2025
*/

:root {
  --primary-color: #ff6600; /* Bright Orange */
  --accent-color: #8b0000; /* Dark Red */
  --background-color: #1a0000; /* Deep Dark Red */
  --card-bg: #2d0f0f;
  --text-color: #f8fafc;
  --nav-bg: #1f0404;
  --nav-active: #ff6600;
  --footer-bg: #2d0f0f;
  --footer-accent: #ff6600;
  --button-bg: #ff6600;
  --button-hover: #8b0000;
  --disclaimer-bg: #4d1a00;
  --disclaimer-border: #ff6600;
  --review-bg: #2a0a0a;
  --scroll-btn-bg: #ff6600;
  --scroll-btn-hover: #8b0000;
  --warning-bg: #8b0000;
  --warning-text: #fef3c7;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  min-height: 100vh;
}

.header {
  background: var(--nav-bg);
  box-shadow: 0 4px 20px rgba(255,133,0,0.15);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 4px solid var(--primary-color);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 80px;
}

.logo {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent-color);
  text-decoration: none;
  letter-spacing: -1px;
  text-shadow: 2px 2px 8px rgba(255,133,0,0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 3px;
  transition: transform 0.3s;
}

.nav-menu {
  display: flex;
}

.nav-menu ul {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-menu a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 8px;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.nav-menu a.active {
  color: var(--nav-active);
  border-bottom: 3px solid var(--nav-active);
}

.nav-menu a:hover {
  color: var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
}

@media (max-width: 900px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--nav-bg);
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(255,133,0,0.2);
    border-top: 2px solid var(--primary-color);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-menu ul {
    flex-direction: column;
    gap: 0;
  }
  
  .nav-menu li {
    border-bottom: 1px solid #374151;
    padding: 18px 0;
    text-align: center;
  }
  
  .hamburger {
    display: flex;
  }
}

.hero {
  background: linear-gradient(135deg, #ff6600 0%, #8b0000 100%);
  padding: 80px 32px 64px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="80" r="2.5" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
}

.hero-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 16px 64px rgba(139,0,0,0.4);
  margin-bottom: 36px;
  border: 6px solid var(--primary-color);
  background: #fff;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 28px;
  letter-spacing: -2px;
  color: #fff;
  text-shadow: 4px 4px 16px rgba(0,0,0,0.5);
}

.hero-desc {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 44px;
  line-height: 1.7;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero .play-btn {
  background: var(--button-bg);
  color: #0f172a;
  border: none;
  border-radius: 16px;
  font-size: 1.5rem;
  font-weight: 800;
  padding: 20px 60px;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(255,133,0,0.5);
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero .play-btn:hover {
  background: var(--button-hover);
  color: #fff;
  transform: translateY(-6px);
  box-shadow: 0 12px 48px rgba(139,0,0,0.6);
}

.disclaimer-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15,23,42,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.disclaimer-popup.active {
  display: flex;
}

.disclaimer-box {
  background: var(--disclaimer-bg);
  border: 6px solid var(--disclaimer-border);
  border-radius: 28px;
  padding: 52px 44px;
  max-width: 520px;
  text-align: center;
  color: #fff;
  box-shadow: 0 16px 64px rgba(255,133,0,0.3);
}

.disclaimer-box h2 {
  color: var(--primary-color);
  font-size: 2.6rem;
  margin-bottom: 28px;
  font-weight: 900;
  text-transform: uppercase;
}

.disclaimer-box p {
  font-size: 1.3rem;
  margin-bottom: 36px;
  line-height: 1.8;
}

.disclaimer-box .confirm-btn {
  background: var(--button-bg);
  color: #0f172a;
  border: none;
  border-radius: 16px;
  font-size: 1.3rem;
  font-weight: 800;
  padding: 18px 44px;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s;
  text-transform: uppercase;
}

.disclaimer-box .confirm-btn:hover {
  background: var(--button-hover);
  color: #fff;
  transform: scale(1.1);
}

.disclaimer-box .read-btn {
  background: transparent;
  color: var(--primary-color);
  border: 3px solid var(--primary-color);
  border-radius: 16px;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 16px 36px;
  cursor: pointer;
  margin-top: 16px;
  transition: all 0.3s;
  text-transform: uppercase;
}

.disclaimer-box .read-btn:hover {
  background: var(--primary-color);
  color: #0f172a;
}

.disclaimer-section {
  background: var(--disclaimer-bg);
  border: 5px solid var(--disclaimer-border);
  border-radius: 24px;
  padding: 44px 36px;
  margin: 52px 32px;
  text-align: center;
  color: #fff;
  box-shadow: 0 12px 48px rgba(255,133,0,0.2);
}

.disclaimer-section h2 {
  color: var(--primary-color);
  font-size: 2.2rem;
  margin-bottom: 24px;
  font-weight: 900;
  text-transform: uppercase;
}

.disclaimer-section p {
  font-size: 1.3rem;
  margin-bottom: 28px;
  line-height: 1.8;
}

.disclaimer-section .read-btn {
  background: var(--primary-color);
  color: #0f172a;
  border: none;
  border-radius: 16px;
  font-size: 1.2rem;
  font-weight: 800;
  padding: 16px 36px;
  cursor: pointer;
  margin-top: 16px;
  transition: all 0.3s;
  text-transform: uppercase;
}

.disclaimer-section .read-btn:hover {
  background: var(--button-hover);
  color: #fff;
  transform: scale(1.08);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.game-section {
  margin: 64px 32px;
  text-align: center;
}

.game-section h2 {
  color: var(--primary-color);
  font-size: 2.2rem;
  margin-bottom: 32px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.game-frame {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  border: 6px solid var(--primary-color);
  border-radius: 20px;
  background: #000;
  margin: 0 auto;
  box-shadow: 0 12px 48px rgba(255,133,0,0.3);
}

.about-section {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 48px 40px;
  margin: 52px 32px;
  text-align: center;
  color: #fff;
  box-shadow: 0 12px 48px rgba(30,41,59,0.2);
  border-top: 6px solid var(--accent-color);
}

.about-section h2 {
  color: var(--accent-color);
  font-size: 2.1rem;
  margin-bottom: 24px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-section p {
  font-size: 1.3rem;
  margin-bottom: 26px;
  line-height: 1.9;
}

.about-img {
  width: 100%;
  max-width: 380px;
  border-radius: 20px;
  margin: 28px 0;
  box-shadow: 0 8px 36px rgba(139,0,0,0.2);
  border: 5px solid var(--accent-color);
}

.review-section {
  background: var(--review-bg);
  border-radius: 24px;
  padding: 48px 40px;
  margin: 52px 32px;
  text-align: left;
  color: #fff;
  box-shadow: 0 12px 48px rgba(26,35,50,0.25);
}

.review-section h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 32px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
}

.review-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.review-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 28px 24px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  box-shadow: 0 8px 28px rgba(255,133,0,0.15);
  border-left: 6px solid var(--primary-color);
  font-style: italic;
}

.features-section {
  margin: 64px 32px;
  text-align: center;
}

.features-section h2 {
  color: var(--accent-color);
  font-size: 2.1rem;
  margin-bottom: 36px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  margin-top: 36px;
}

.feature-item {
  background: var(--card-bg);
  border-radius: 18px;
  padding: 36px 28px;
  color: #fff;
  box-shadow: 0 8px 32px rgba(30,41,59,0.18);
  font-size: 1.2rem;
  font-weight: 600;
  border-bottom: 6px solid var(--accent-color);
  transition: all 0.3s;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 56px rgba(255,133,0,0.4);
  border-bottom: 6px solid var(--primary-color);
}

.scroll-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: var(--scroll-btn-bg);
  color: #0f172a;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 2.2rem;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(255,133,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 999;
  font-weight: 900;
}

.scroll-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-to-top:hover {
  background: var(--scroll-btn-hover);
  color: #fff;
  transform: scale(1.2);
}

.footer {
  background: var(--footer-bg);
  color: #fff;
  padding: 72px 0 0 0;
  margin-top: 88px;
  border-top: 5px solid var(--accent-color);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px 48px 32px;
}

.footer-section {
  text-align: center;
}

.footer-section h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 14px;
}

.footer-section a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  transition: all 0.3s;
  display: inline-block;
}

.footer-section a:hover {
  color: var(--primary-color);
  transform: translateX(8px);
}

.footer-section p {
  font-size: 1.2rem;
  line-height: 1.8;
}

.footer-notice {
  background: var(--disclaimer-bg);
  color: #fff;
  border-top: 4px solid var(--primary-color);
  padding: 36px 32px;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.8;
}

.footer-notice strong {
  color: var(--primary-color);
  font-weight: 800;
}

.footer-copyright {
  background: var(--background-color);
  color: var(--accent-color);
  text-align: center;
  padding: 28px 32px;
  font-size: 1.1rem;
  font-weight: 700;
}

.contact-section {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 48px 40px;
  margin: 52px auto;
  color: #fff;
  box-shadow: 0 12px 48px rgba(30,41,59,0.2);
  max-width: 720px;
  border-top: 6px solid var(--accent-color);
}

.contact-section h2 {
  color: var(--accent-color);
  font-size: 2rem;
  margin-bottom: 28px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.contact-intro {
  text-align: center;
  margin-bottom: 36px;
  font-size: 1.3rem;
  line-height: 1.7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-form input,
.contact-form textarea {
  background: #1a0000;
  color: #fff;
  border: 3px solid var(--accent-color);
  border-radius: 16px;
  padding: 18px;
  font-size: 1.2rem;
  font-family: inherit;
  transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(255,133,0,0.4);
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form button {
  background: var(--button-bg);
  color: #0f172a;
  border: none;
  border-radius: 16px;
  font-size: 1.3rem;
  font-weight: 800;
  padding: 18px 44px;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s;
  text-transform: uppercase;
}

.contact-form button:hover {
  background: var(--button-hover);
  color: #fff;
  transform: scale(1.08);
}

.policy-content {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 52px 44px;
  margin: 52px auto;
  color: #fff;
  box-shadow: 0 12px 48px rgba(30,41,59,0.2);
  max-width: 1040px;
  border-top: 6px solid var(--accent-color);
}

.policy-content h1 {
  color: var(--primary-color);
  font-size: 2.6rem;
  margin-bottom: 36px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.policy-content h2 {
  color: var(--accent-color);
  font-size: 1.7rem;
  margin-bottom: 24px;
  margin-top: 40px;
  font-weight: 900;
  text-transform: uppercase;
}

.policy-content h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 18px;
  margin-top: 32px;
  font-weight: 800;
}

.policy-content ul {
  margin-bottom: 26px;
  padding-left: 36px;
}

.policy-content li {
  margin-bottom: 14px;
  line-height: 1.8;
}

.policy-content p {
  line-height: 1.9;
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.policy-content .highlight-box {
  background: var(--disclaimer-bg);
  border: 5px solid var(--primary-color);
  border-radius: 20px;
  padding: 36px;
  margin: 44px 0;
  text-align: center;
  color: #fff;
  box-shadow: 0 8px 36px rgba(255,133,0,0.2);
}

.policy-content .highlight-box h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 20px;
  margin-top: 0;
}

.policy-content .highlight-box p {
  font-size: 1.2rem;
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .nav-container {
    padding: 0 16px;
    height: 70px;
  }
  
  .logo {
    font-size: 2.1rem;
  }
  
  .hero {
    padding: 52px 16px 40px 16px;
  }
  
  .hero-img {
    width: 140px;
    height: 140px;
  }
  
  .hero-title {
    font-size: 2.4rem;
  }
  
  .hero-desc {
    font-size: 1.3rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 16px 36px 16px;
  }
  
  .policy-content {
    padding: 32px 20px;
  }
  
  .game-section,
  .about-section,
  .review-section,
  .features-section,
  .disclaimer-section {
    margin: 40px 16px;
  }
  
  .game-frame{
    height: auto;
  }
  .review-list {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}