/* Xenyvaron.xyz - Unique Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Exo+2:wght@300;400;600;700&display=swap');

:root {
  --primary: #0d0b2e;
  --secondary: #1a1650;
  --accent: #ff6b35;
  --accent2: #ffd700;
  --text: #e8e6f0;
  --text-muted: #9b97b8;
  --glass: rgba(26, 22, 80, 0.7);
  --radius: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Exo 2', sans-serif;
  background: var(--primary);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(13,11,46,0.98) 0%, rgba(13,11,46,0.85) 100%);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,107,53,0.15);
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: 2px;
}

.logo svg {
  width: 36px;
  height: 36px;
  vertical-align: middle;
  margin-right: 8px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
  background: none;
  border: none;
  padding: 5px;
}

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

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--secondary);
    flex-direction: column;
    padding: 90px 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 20px rgba(0,0,0,0.5);
  }
  .nav-links.open { right: 0; }
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 2rem 60px;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(255,107,53,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255,215,0,0.06) 0%, transparent 50%),
    var(--primary);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6b35' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content { position: relative; z-index: 1; max-width: 800px; }

.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.cta-btn {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, var(--accent), #ff8c5a);
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(255,107,53,0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255,107,53,0.5);
}

/* === NOTICES === */
.notices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.notice-card {
  background: var(--glass);
  border: 1px solid rgba(255,107,53,0.1);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.notice-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.notice-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.notice-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  color: var(--accent2);
}

.notice-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* === GAME SECTION === */
.game-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.game-section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  text-align: center;
  margin-bottom: 2rem;
  color: var(--accent2);
}

.game-wrapper {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(255,107,53,0.2);
  background: #000;
  aspect-ratio: 16/9;
}

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

/* === FEATURES === */
.features {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.feature-item {
  background: linear-gradient(145deg, var(--secondary), rgba(26,22,80,0.4));
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 4px solid var(--accent);
}

.feature-item h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.feature-item p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* === STATS === */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 3rem 2rem;
  background: var(--secondary);
  margin: 3rem 0;
}

.stat-item { text-align: center; }

.stat-item .number {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
}

.stat-item .label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.3rem;
}

/* === PAGE CONTENT === */
.page-content {
  padding: 120px 2rem 60px;
  max-width: 960px;
  margin: 0 auto;
}

.page-content h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-content h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  color: var(--accent2);
  margin: 2rem 0 1rem;
}

.page-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.page-content ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.page-content ul li {
  color: var(--text-muted);
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  line-height: 1.6;
}

.page-content ul li::before {
  content: '\25B8';
  color: var(--accent);
  position: absolute;
  left: 0;
}

/* === FOOTER === */
.site-footer {
  background: var(--secondary);
  border-top: 1px solid rgba(255,107,53,0.1);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--accent); }

.responsible-gambling {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,107,53,0.1);
}

.responsible-gambling p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}

.responsible-gambling a {
  color: var(--accent);
  text-decoration: none;
  margin: 0 0.8rem;
  font-size: 0.85rem;
}

.responsible-gambling a:hover { text-decoration: underline; }

.footer-copy {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 1.5rem;
  opacity: 0.6;
}

/* === AGE POPUP === */
.age-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-popup {
  background: var(--secondary);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  max-width: 440px;
  width: 90%;
  box-shadow: 0 0 60px rgba(255,107,53,0.2);
}

.age-popup h2 {
  font-family: 'Orbitron', sans-serif;
  color: var(--accent2);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.age-popup p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.age-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.age-buttons button {
  padding: 12px 36px;
  border-radius: 50px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid var(--accent);
  transition: all 0.3s;
  text-transform: uppercase;
}

.btn-yes {
  background: var(--accent);
  color: #fff;
}

.btn-yes:hover {
  background: #ff8c5a;
  box-shadow: 0 4px 20px rgba(255,107,53,0.4);
}

.btn-no {
  background: transparent;
  color: var(--accent);
}

.btn-no:hover {
  background: rgba(255,107,53,0.1);
}

.age-overlay.hidden { display: none; }

/* === PLAY PAGE === */
.play-hero {
  padding: 100px 2rem 40px;
  text-align: center;
}

.play-hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.play-note {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.fullwidth-game {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}

.fullwidth-game .game-wrapper {
  max-width: 100%;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--primary); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }
