/* Шрифты */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Monument+Extended:wght@400;700&family=Space+Grotesk:wght@400;500&display=swap');

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

body {
  background: #000000; 
  color: #6C7B7F; 
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1.6;
}

header {
  background-color: #000000; 
  min-height: 65px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  border-top: 2px solid #FFD700;
  border-bottom: 2px solid #FFD700;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0 20px;
  height: 75px;
}

.logo-container {
  display: flex;
  align-items: center;
  height: 75px;
}

.logo-container img {
  height: 75px;
  width: auto;
  object-fit: contain;
  display: block;
}

.menu-toggle {
  width: 34px;
  height: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 105;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3.5px;
  background: #FFD700;
  border-radius: 2px;
  margin: 4px 0;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 240px;
  height: 100vh;
  background: #000000; 
  border-left: 1px solid #FFD700;
  z-index: 104;
  flex-direction: column;
  padding-top: 90px;
  box-shadow: -3px 0 16px rgba(0, 0, 0, 0.5);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.menu.active {
  display: flex;
  transform: translateX(0);
}

.menu ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style-type: none;
  padding: 0 0 0 20px;
}

.menu ul li a {
  padding: 12px 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  display: block;
  color: #FFD700; /* Electric Gold */
  text-decoration: none;
  transition: color 0.2s;
}

.menu ul li a:hover {
  color: #10B981; /* Emerald - успех */
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 103;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  display: block;
}

main {
  max-width: 860px;
  margin: 115px auto 0 auto;
  padding: 0 15px;
}

.hero {
  text-align: center;
  padding: 40px 0;
}

h1 {
  margin-bottom: 18px;
  font-family: 'Monument Extended', sans-serif;
  font-size: 2.3em;
  font-weight: 700;
  color: #FFD700; /* Electric Gold */
  animation: fadeIn 1s ease-in;
}

h2 {
  margin-top: 36px;
  font-family: 'Monument Extended', sans-serif;
  color: #10B981; /* Emerald - успех */
  font-weight: 600;
  animation: slideUp 0.8s ease-out;
}

p {
  margin: 14px 0;
  font-family: 'Inter', sans-serif;
  font-size: 1.1em;
  color: #6C7B7F; /* Steel Gray */
}

strong {
  color: #F59E0B; 
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #FFD700, #10B981); /* Electric Gold to Emerald */
  color: #000000;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
}

.casino-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px); /* Glassmorphism */
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
  border: 1px solid rgba(255, 215, 0, 0.2); /* Electric Gold */
  animation: popIn 0.5s ease-out;
}

.data-visualization {
  margin: 20px 0;
  animation: fadeIn 1s ease-in;
}

#casinoChart {
  max-width: 100%;
}

/* Микроанимации */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes popIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}