/* Highlight box for important notices in policy cards */
.policy-highlight {
  margin-top: 30px;
  padding: 20px;
  background: rgba(0,212,255,0.1);
  border-left: 5px solid #00d4ff;
}

.policy-highlight.danger {
  background: rgba(255,0,0,0.1);
  border-left: 5px solid #ff0000;
}
/* Card-like design for policy pages (disclaimer, privacy, terms) */
.policy-card {
  background: var(--card-bg);
  border-radius: 22px;
  padding: 50px 42px;
  margin: 50px auto;
  color: #fff;
  box-shadow: 0 12px 48px rgba(20,27,58,0.22);
  max-width: 900px;
  border-top: 5px solid var(--accent-color);
  text-align: left;
}

.policy-card h1, .policy-card h2, .policy-card h3 {
  color: var(--primary-color);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.policy-card h1 {
  font-size: 2.3rem;
  text-align: center;
}

.policy-card h2 {
  font-size: 1.5rem;
}

.policy-card h3 {
  font-size: 1.2rem;
}

.policy-card p, .policy-card ul, .policy-card li {
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.policy-card ul {
  padding-left: 32px;
}

.policy-card strong {
  color: var(--accent-color);
  font-weight: 700;
}
/*
  Arcticbddy.com - Main Stylesheet
  Theme: Icy Blue & Arctic White
  Font: Montserrat (unique from previous sites)
  Year: 2025
*/

:root {
  --primary-color: #00d4ff; /* Icy Blue */
  --accent-color: #6366f1; /* Indigo Purple */
  --background-color: #0a0e27; /* Deep Space Blue */
  --card-bg: #141b3a;
  --text-color: #f0f9ff;
  --nav-bg: #070b1f;
  --nav-active: #00d4ff;
  --footer-bg: #0f1629;
  --footer-accent: #00d4ff;
  --button-bg: #00d4ff;
  --button-hover: #6366f1;
  --disclaimer-bg: #1e1b4b;
  --disclaimer-border: #00d4ff;
  --review-bg: #0f1535;
  --scroll-btn-bg: #00d4ff;
  --scroll-btn-hover: #6366f1;
}

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

body {
  font-family: 'Montserrat', 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 24px rgba(0,212,255,0.18);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px 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: 76px;
}

.logo {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-color);
  text-decoration: none;
  letter-spacing: -0.5px;
  text-shadow: 0 0 20px rgba(0,212,255,0.5);
}

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

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

.nav-menu {
  display: flex;
}

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

.nav-menu a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 10px 6px;
  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: 76px;
    left: 0;
    width: 100%;
    background: var(--nav-bg);
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0,212,255,0.25);
    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 #1e293b;
    padding: 16px 0;
    text-align: center;
  }
  
  .hamburger {
    display: flex;
  }
}

.hero {
  background:  url('bg.jpg') center/cover no-repeat;
  padding: 76px 32px 60px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 14, 39, 0.55); /* Dull overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(99,102,241,0.2) 0%, transparent 50%);
}

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

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

.hero-img {
  width: 190px;
  height: 190px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 16px 56px rgba(99,102,241,0.4);
  margin-bottom: 32px;
  border: 6px solid #fff;
  background: #fff;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 900;
  margin-bottom: 26px;
  letter-spacing: -2px;
  color: #fff;
  text-shadow: 3px 3px 12px rgba(0,0,0,0.4);
}

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

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

.hero .play-btn:hover {
  background: var(--button-hover);
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(99,102,241,0.6);
}

.disclaimer-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10,14,39,0.96);
  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: 26px;
  padding: 50px 42px;
  max-width: 500px;
  text-align: center;
  color: #fff;
  box-shadow: 0 16px 64px rgba(0,212,255,0.3);
}

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

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

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

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

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

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

.disclaimer-section {
  background: var(--disclaimer-bg);
  border: 5px solid var(--disclaimer-border);
  border-radius: 22px;
  padding: 42px 34px;
  margin: 50px 32px;
  text-align: center;
  color: #fff;
  box-shadow: 0 12px 48px rgba(0,212,255,0.22);
}

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

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

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

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

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

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

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

.games-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.game-frame {
  width: 100%;
  max-width: 900px;
  height: 550px;
  border: 5px solid var(--primary-color);
  border-radius: 18px;
  background: #000;
  box-shadow: 0 12px 48px rgba(0,212,255,0.28);
}

.about-section {
  background: var(--card-bg) url('ab.jpg') center/cover no-repeat;
  border-radius: 22px;
  padding: 46px 38px;
  margin: 50px 32px;
  text-align: center;
  color: #fff;
  box-shadow: 0 12px 48px rgba(20,27,58,0.22);
  border-top: 5px solid var(--accent-color);
}

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

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

.about-img {
  width: 100%;
  max-width: 370px;
  border-radius: 18px;
  margin: 26px 0;
  box-shadow: 0 8px 36px rgba(99,102,241,0.22);
  border: 5px solid var(--accent-color);
}

.review-section {
  background: var(--review-bg);
  border-radius: 22px;
  padding: 46px 38px;
  margin: 50px 32px;
  text-align: left;
  color: #fff;
  box-shadow: 0 12px 48px rgba(15,21,53,0.28);
}

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

.review-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.review-card {
  background: var(--card-bg);
  border-radius: 14px;
  padding: 26px 22px;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 400;
  box-shadow: 0 8px 28px rgba(0,212,255,0.16);
  border-left: 5px solid var(--primary-color);
  font-style: italic;
}

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

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

.features-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 34px;
}

.feature-box {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 34px 26px;
  color: #fff;
  box-shadow: 0 8px 32px rgba(20,27,58,0.2);
  font-size: 1.15rem;
  font-weight: 600;
  border-bottom: 5px solid var(--accent-color);
  transition: all 0.3s;
  flex: 1 1 260px;
  max-width: 300px;
}

.feature-box:hover {
  transform: translateY(-9px);
  box-shadow: 0 16px 56px rgba(0,212,255,0.35);
  border-bottom: 5px solid var(--primary-color);
}

.scroll-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: var(--scroll-btn-bg);
  color: #0a0e27;
  border: none;
  border-radius: 50%;
  width: 58px;
  height: 58px;
  font-size: 2.1rem;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(0,212,255,0.42);
  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.18);
}

.footer {
  background: var(--footer-bg);
  color: #fff;
  padding: 68px 0 0 0;
  margin-top: 84px;
  border-top: 4px solid var(--accent-color);
}

.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 44px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px 44px 32px;
}

.footer-block {
  flex: 1 1 240px;
}

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

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

.footer-block li {
  margin-bottom: 13px;
}

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

.footer-block a:hover {
  color: var(--primary-color);
  padding-left: 7px;
}

.footer-block p {
  font-size: 1.15rem;
  line-height: 1.8;
}

.footer-notice {
  background: var(--disclaimer-bg);
  color: #fff;
  border-top: 3px solid var(--primary-color);
  padding: 34px 32px;
  text-align: center;
  font-size: 1.15rem;
  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: 26px 32px;
  font-size: 1.08rem;
  font-weight: 700;
}

.contact-section {
  background: var(--card-bg);
  border-radius: 22px;
  padding: 46px 38px;
  margin: 50px auto;
  color: #fff;
  box-shadow: 0 12px 48px rgba(20,27,58,0.22);
  max-width: 700px;
  border-top: 5px solid var(--accent-color);
}

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

.contact-intro {
  text-align: center;
  margin-bottom: 34px;
  font-size: 1.25rem;
  line-height: 1.75;
}

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

.contact-form input,
.contact-form textarea {
  background: #0a0e27;
  color: #fff;
  border: 3px solid var(--accent-color);
  border-radius: 14px;
  padding: 17px;
  font-size: 1.15rem;
  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 18px rgba(0,212,255,0.4);
}

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

.contact-form button {
  background: var(--button-bg);
  color: #0a0e27;
  border: none;
  border-radius: 14px;
  font-size: 1.25rem;
  font-weight: 800;
  padding: 17px 42px;
  cursor: pointer;
  margin-top: 18px;
  transition: all 0.3s;
  text-transform: uppercase;
}

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

.policy-content {
  background: var(--card-bg);
  border-radius: 22px;
  padding: 50px 42px;
  margin: 50px auto;
  color: #fff;
  box-shadow: 0 12px 48px rgba(20,27,58,0.22);
  max-width: 1020px;
  border-top: 5px solid var(--accent-color);
}

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

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

.policy-content h3 {
  color: var(--primary-color);
  font-size: 1.35rem;
  margin-bottom: 16px;
  margin-top: 30px;
  font-weight: 800;
}

.policy-content ul {
  margin-bottom: 24px;
  padding-left: 34px;
}

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

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

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

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

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

@media (max-width: 600px) {
  .nav-container {
    padding: 0 16px;
    height: 68px;
  }
  
  .logo {
    font-size: 2rem;
  }
  
  .hero {
    padding: 50px 16px 38px 16px;
  }
  
  .hero-img {
    width: 130px;
    height: 130px;
  }
  
  .hero-title {
    font-size: 2.3rem;
  }
  
  .hero-desc {
    font-size: 1.25rem;
  }
  
  .footer-wrapper {
    flex-direction: column;
    gap: 30px;
    padding: 0 16px 34px 16px;
  }
  
  .policy-content {
    padding: 30px 18px;
  }
  
  .game-section,
  .about-section,
  .review-section,
  .features-section,
  .disclaimer-section {
    margin: 38px 16px;
  }
  
  .game-frame {
    height: auto;
    aspect-ratio: 16/9;
  }
  
  .features-list {
    flex-direction: column;
    align-items: center;
    height: auto;
  }
  
  .feature-box {
    max-width: 100%;
    height: auto;
  }
}