/*
  driftmatespp.top - Main Stylesheet
  Theme: Zeus-inspired Gold & Deep Blue
  Font: Nunito Sans (unique from previous sites)
  Year: 2025
*/
:root {
  --primary-color: #1a4d8f; /* Deep Blue */
  --accent-color: #f4d03f; /* Rich Gold */
  --background-color: #0d1b2a; /* Dark Navy */
  --card-bg: #1b2838;
  --text-color: #e8f1f5;
  --nav-bg: #0f1f30;
  --nav-active: #f4d03f;
  --footer-bg: #1b2838;
  --footer-accent: #f4d03f;
  --button-bg: #f4d03f;
  --button-hover: #1a4d8f;
  --disclaimer-bg: #1f2e42;
  --disclaimer-border: #f4d03f;
  --review-bg: #14222e;
  --scroll-btn-bg: #f4d03f;
  --scroll-btn-hover: #1a4d8f;
}

* {
  box-sizing: border-box;
}

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

.header {
  background: var(--nav-bg);
  box-shadow: 0 4px 12px rgba(244,208,63,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--accent-color);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 70px;
}
.logo {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent-color);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 3px;
  transition: all 0.3s;
}
.nav-menu {
  display: flex;
}
.nav-menu ul {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.nav-menu a.active {
  color: var(--nav-active);
  border-bottom: 3px solid var(--nav-active);
}
.nav-menu a:hover {
  color: var(--accent-color);
}

@media (max-width: 900px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--nav-bg);
    flex-direction: column;
    box-shadow: 0 6px 20px rgba(244,208,63,0.15);
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-menu ul {
    flex-direction: column;
    gap: 0;
  }
  .nav-menu li {
    border-bottom: 1px solid #1a4d8f;
    padding: 18px 0;
    text-align: center;
  }
  .hamburger {
    display: flex;
  }
}

  .hero {
    background: none;
    color: #fff;
    padding: 80px 28px 60px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('bg.jpg') center center/cover no-repeat;
    z-index: 0;
  }

.hero-content {
  position: relative;
  z-index: 1;
}
.hero-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 40px rgba(244,208,63,0.3);
  margin-bottom: 28px;
  border: 4px solid var(--accent-color);
  background: #fff;
}
.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 22px;
  letter-spacing: 2px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}
.hero-desc {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero .play-btn {
  background: var(--button-bg);
  color: #0d1b2a;
  border: none;
  border-radius: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 18px 48px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(244,208,63,0.4);
  transition: all 0.3s;
  text-transform: uppercase;
}
.hero .play-btn:hover {
  background: var(--button-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244,208,63,0.6);
}

.disclaimer-popup {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13,27,42,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.disclaimer-popup.active {
  display: flex;
}
.disclaimer-box {
  background: var(--disclaimer-bg);
  border: 4px solid var(--disclaimer-border);
  border-radius: 20px;
  padding: 44px 36px;
  max-width: 440px;
  text-align: center;
  color: #fff;
  box-shadow: 0 10px 40px rgba(244,208,63,0.2);
}
.disclaimer-box h2 {
  color: var(--accent-color);
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 800;
}
.disclaimer-box p {
  font-size: 1.15rem;
  margin-bottom: 28px;
  line-height: 1.7;
}
.disclaimer-box .confirm-btn {
  background: var(--button-bg);
  color: #0d1b2a;
  border: none;
  border-radius: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 14px 36px;
  cursor: pointer;
  margin-top: 14px;
  transition: all 0.3s;
  text-transform: uppercase;
}
.disclaimer-box .confirm-btn:hover {
  background: var(--button-hover);
  color: #fff;
  transform: scale(1.05);
}
.disclaimer-box .read-btn {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 28px;
  cursor: pointer;
  margin-top: 12px;
  transition: all 0.3s;
  text-transform: uppercase;
}
.disclaimer-box .read-btn:hover {
  background: var(--accent-color);
  color: #0d1b2a;
}

.disclaimer-section {
  background: var(--disclaimer-bg);
  border: 3px solid var(--disclaimer-border);
  border-radius: 16px;
  padding: 36px 28px;
  margin: 40px 28px;
  text-align: center;
  color: #fff;
  box-shadow: 0 6px 25px rgba(244,208,63,0.15);
}
.disclaimer-section h2 {
  color: var(--accent-color);
  font-size: 1.8rem;
  margin-bottom: 16px;
  font-weight: 800;
}
.disclaimer-section p {
  font-size: 1.15rem;
  margin-bottom: 22px;
  line-height: 1.7;
}
.disclaimer-section .read-btn {
  background: var(--accent-color);
  color: #0d1b2a;
  border: none;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 12px 28px;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s;
  text-transform: uppercase;
}
.disclaimer-section .read-btn:hover {
  background: var(--button-hover);
  color: #fff;
  transform: scale(1.05);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.game-section {
  margin: 48px 28px;
  text-align: center;
}
.game-section h2 {
  color: var(--accent-color);
  font-size: 1.8rem;
  margin-bottom: 24px;
  font-weight: 800;
  text-transform: uppercase;
}
.game-frame {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  border: 4px solid var(--accent-color);
  border-radius: 14px;
  background: #000;
  margin: 0 auto;
  box-shadow: 0 8px 30px rgba(244,208,63,0.2);
}

.about-section {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 40px 32px;
  margin: 40px 28px;
  text-align: center;
  color: #fff;
  box-shadow: 0 6px 25px rgba(26,77,143,0.15);
  border-left: 6px solid var(--accent-color);
}
.about-section h2 {
  color: var(--accent-color);
  font-size: 1.7rem;
  margin-bottom: 18px;
  font-weight: 800;
}
.about-section p {
  font-size: 1.15rem;
  margin-bottom: 20px;
  line-height: 1.8;
}
.about-img {
  width: 100%;
  max-width: 340px;
  border-radius: 14px;
  margin: 22px 0;
  box-shadow: 0 4px 20px rgba(244,208,63,0.15);
  border: 3px solid var(--accent-color);
}

.review-section {
  background: var(--review-bg);
  border-radius: 16px;
  padding: 40px 32px;
  margin: 40px 28px;
  text-align: center;
  color: #fff;
  box-shadow: 0 6px 25px rgba(20,34,46,0.2);
}
.review-section h2 {
  color: var(--accent-color);
  font-size: 1.6rem;
  margin-bottom: 24px;
  font-weight: 800;
}
.review-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.review-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 20px 18px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 400;
  box-shadow: 0 4px 15px rgba(26,77,143,0.1);
  border-left: 4px solid var(--accent-color);
  text-align: left;
}

.features-section {
  margin: 48px 28px;
  text-align: center;
}
.features-section h2 {
  color: var(--accent-color);
  font-size: 1.7rem;
  margin-bottom: 28px;
  font-weight: 800;
  text-transform: uppercase;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 28px;
}
.feature-item {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 28px 20px;
  color: #fff;
  box-shadow: 0 4px 20px rgba(26,77,143,0.12);
  font-size: 1.05rem;
  font-weight: 600;
  border-top: 4px solid var(--accent-color);
  transition: all 0.3s;
}
.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(244,208,63,0.25);
}

.scroll-to-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  background: var(--scroll-btn-bg);
  color: #0d1b2a;
  border: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  font-size: 1.8rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(244,208,63,0.3);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 999;
  font-weight: 700;
}
.scroll-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.scroll-to-top:hover {
  background: var(--scroll-btn-hover);
  color: var(--accent-color);
  transform: scale(1.1);
}

.footer {
  background: var(--footer-bg);
  color: #fff;
  padding: 56px 0 0 0;
  margin-top: 72px;
  border-top: 3px solid var(--accent-color);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px 36px 28px;
}
.footer-column h3 {
  color: var(--footer-accent);
  font-size: 1.3rem;
  margin-bottom: 16px;
  font-weight: 800;
  text-transform: uppercase;
}
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-column li {
  margin-bottom: 10px;
}
.footer-column a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  transition: all 0.3s;
}
.footer-column a:hover {
  color: var(--footer-accent);
  padding-left: 5px;
}
.footer-column p {
  font-size: 1.05rem;
  line-height: 1.7;
}
.footer-notice {
  background: var(--disclaimer-bg);
  color: #fff;
  border-top: 2px solid var(--accent-color);
  padding: 28px 28px;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.7;
}
.footer-notice strong {
  color: var(--accent-color);
}
.footer-copyright {
  background: var(--background-color);
  color: var(--accent-color);
  text-align: center;
  padding: 20px 28px;
  font-size: 1.05rem;
  font-weight: 600;
}

.contact-section {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 40px 32px;
  margin: 40px auto;
  color: #fff;
  box-shadow: 0 6px 25px rgba(26,77,143,0.15);
  max-width: 640px;
  border-left: 6px solid var(--accent-color);
}
.contact-section h2 {
  color: var(--accent-color);
  font-size: 1.6rem;
  margin-bottom: 20px;
  font-weight: 800;
  text-align: center;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form input,
.contact-form textarea {
  background: #0d1b2a;
  color: #fff;
  border: 2px solid var(--accent-color);
  border-radius: 10px;
  padding: 14px;
  font-size: 1.05rem;
  font-family: inherit;
  transition: all 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--button-bg);
  box-shadow: 0 0 10px rgba(244,208,63,0.3);
}
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form button {
  background: var(--button-bg);
  color: #0d1b2a;
  border: none;
  border-radius: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 14px 36px;
  cursor: pointer;
  margin-top: 14px;
  transition: all 0.3s;
  text-transform: uppercase;
}
.contact-form button:hover {
  background: var(--button-hover);
  color: #fff;
  transform: scale(1.05);
}

.policy-content {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 44px 36px;
  margin: 44px auto;
  color: #fff;
  box-shadow: 0 6px 25px rgba(26,77,143,0.15);
  max-width: 960px;
  border-left: 6px solid var(--accent-color);
}
.policy-content h1 {
  color: var(--accent-color);
  font-size: 2.2rem;
  margin-bottom: 28px;
  font-weight: 900;
  text-align: center;
}
.policy-content h2 {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-bottom: 18px;
  margin-top: 32px;
  font-weight: 800;
}
.policy-content h3 {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-bottom: 14px;
  margin-top: 24px;
  font-weight: 700;
}
.policy-content ul {
  margin-bottom: 20px;
  padding-left: 28px;
}
.policy-content li {
  margin-bottom: 10px;
  line-height: 1.7;
}
.policy-content p {
  line-height: 1.8;
  margin-bottom: 18px;
}
.policy-content .highlight-box {
  background: var(--disclaimer-bg);
  border: 3px solid var(--accent-color);
  border-radius: 14px;
  padding: 28px;
  margin: 36px 0;
  text-align: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(244,208,63,0.15);
}
.policy-content .highlight-box h2 {
  color: var(--accent-color);
  font-size: 1.4rem;
  margin-bottom: 14px;
  margin-top: 0;
}
.policy-content .highlight-box p {
  font-size: 1.05rem;
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .nav-container {
    padding: 0 12px;
    height: 60px;
  }
  .logo {
    font-size: 1.7rem;
  }
  .hero {
    padding: 48px 12px 36px 12px;
  }
  .hero-img {
    width: 140px;
    height: 140px;
  }
  .hero-title {
    font-size: 1.9rem;
  }
  .hero-desc {
    font-size: 1.1rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0 12px 28px 12px;
  }
  .policy-content {
    padding: 22px 12px;
  }
  .game-section,
  .about-section,
  .review-section,
  .features-section,
  .disclaimer-section {
    margin: 32px 12px;
  }
}
