:root {
  --primary: #000000;
  --secondary: #ffd700;
  --accent: #d4af37;
  --text: #ffffff;
  --text-secondary: #cccccc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  background-color: var(--primary);
  color: var(--text);
  line-height: 1.6;
}

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

.site-header {
  background-color: #000;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid var(--accent);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--secondary);
  text-decoration: none;
}

.logo span {
  color: var(--accent);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.main-nav a:hover {
  color: var(--secondary);
}

.language-switcher {
  display: flex;
  gap: 0.5rem;
}

.lang-btn {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.3rem 0.75rem;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.lang-btn:hover,
.lang-btn.active {
  background: var(--accent);
  color: var(--primary);
}

@media (max-width: 768px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #000;
    display: none;
    flex-direction: column;
    padding: 1rem 2rem;
    gap: 1rem;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1.2rem;
  }
}

/* Кнопка скрыта на десктопе */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1000;
}

.mobile-menu-btn .bar {
  height: 3px;
  width: 100%;
  background-color: var(--secondary);
  border-radius: 2px;
  transition: 0.3s ease;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
    position: absolute;
    top: 18px;
    right: 20px;
  }
}

.hero-section {
  position: relative;
  background: url("images/hero.jpeg") no-repeat center center / cover;
  color: var(--text);
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(59, 47, 1, 0.714),
    rgba(0, 0, 0, 0.6)
  );
  backdrop-filter: blur(3px);
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-content {
  animation: fadeInLeft 1s ease-out;
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 3.3rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #fff;
}

.hero-highlight {
  color: white;
  text-shadow: 0 0 10px rgba(255, 197, 7, 0.7);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn {
  padding: 0.85rem 2rem;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.btn-primary {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}

.btn-secondary:hover {
  background: var(--secondary);
  color: var(--primary);
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  flex-wrap: wrap;
  color: var(--text-secondary);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.emoji-glow {
  font-size: 1.2rem;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.8));
  animation: glowPulse 2s infinite ease-in-out;
}

.emoji-glow.large {
  font-size: 2rem;
}

@keyframes glowPulse {
  0% {
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.7));
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 1));
  }
  100% {
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.7));
  }
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  animation: fadeInRight 1.2s ease-out;
}

.visual-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--accent);
  padding: 1.1rem;
  border-radius: 16px;
  text-align: center;
  color: var(--text-secondary);
  backdrop-filter: blur(3px);
  transition: transform 0.3s;
}
.visual-card P {
  font-size: 22px;
}
.visual-card:hover {
  transform: translateY(-5px);
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-cta {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .hero-visual {
    justify-content: center;
    gap: 1rem;
  }

  .visual-card {
    flex: 1 1 45%;
    max-width: 45%;
  }
}

@media (max-width: 480px) {
  .visual-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .emoji-glow.large {
    font-size: 1.8rem;
  }
  .visual-card P {
    font-size: 16px;
  }
}
/* Games Section */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  color: var(--secondary);
  font-size: 36px;
  position: relative;
}

.section-title:after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background-color: var(--secondary);
  margin: 15px auto 0;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.game-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
  border: 1px solid var(--secondary);
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.game-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.game-card-content {
  padding: 15px;
}

.game-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--secondary);
}

.game-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.bonuses {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("images/bonus.jpg") no-repeat center center/cover;
  background-attachment: fixed;
}

.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.bonus-card {
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  border: 2px solid var(--secondary);
  transition: all 0.3s;
}

.bonus-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.bonus-card i {
  font-size: 50px;
  color: var(--secondary);
  margin-bottom: 20px;
  display: block;
}

.bonus-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--secondary);
}

.bonus-card p {
  margin-bottom: 20px;
  color: var(--text-secondary);
}

/* Referral Section */
.referral {
  background-color: rgba(0, 0, 0, 0.9);
  border-top: 2px solid var(--secondary);
  border-bottom: 2px solid var(--secondary);
}

.referral-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.referral-image {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.referral-image img {
  width: 100%;
  border-radius: 10px;
  border: 2px solid var(--secondary);
}

.referral-content {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.referral-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--secondary);
}

.referral-content p {
  margin-bottom: 15px;
  color: var(--text-secondary);
}

.highlight {
  background-color: rgba(212, 175, 55, 0.2);
  padding: 20px;
  border-radius: 10px;
  margin: 30px 0;
  border-left: 4px solid var(--secondary);
}

.highlight h3 {
  color: var(--secondary);
  margin-bottom: 10px;
  font-size: 24px;
}
#tier2Text {
  margin-bottom: 10px;
}
.countdown {
  display: flex;
  margin: 30px 0;
}

.countdown-item {
  margin: 0 10px;
  text-align: center;
}

.countdown-number {
  font-size: 36px;
  font-weight: bold;
  color: var(--secondary);
}

.countdown-label {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Deposit Bonus Section */
.deposit-bonus {
  text-align: center;
}

.bonus-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.bonus-tier {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.1),
    rgba(0, 0, 0, 0.7)
  );
  border-radius: 10px;
  padding: 30px 20px;
  border: 2px solid var(--secondary);
  transition: all 0.3s;
}

.bonus-tier:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.bonus-tier h3 {
  font-size: 24px;
  color: var(--secondary);
}

.bonus-tier .amount {
  font-size: 36px;
  font-weight: bold;
  color: var(--secondary);
}

.bonus-tier .bonus-amount {
  font-size: 28px;
  color: var(--text);
}
#tier1Text {
  margin-bottom: 10px;
}
.winning-counter {
  background: linear-gradient(
    145deg,
    rgba(0, 0, 0, 0.85),
    rgba(20, 20, 20, 0.8)
  );
  padding: 2.5rem;
  border-radius: 16px;
  border: 2px solid var(--accent);
  text-align: center;
  max-width: 800px;
  margin: 3rem auto;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
  backdrop-filter: blur(4px);
}

.winning-counter h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--secondary);
  margin-bottom: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
}

.counter-glow {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.counter {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: bold;
  color: var(--secondary);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.winning-counter p {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: var(--text-secondary);
}

@media (max-width: 480px) {
  .winning-counter {
    padding: 1.5rem;
  }

  .counter {
    font-size: 2rem;
  }

  .winning-counter h3 {
    font-size: 1.25rem;
  }

  .winning-counter p {
    font-size: 0.95rem;
  }
}

/* Partners Section */
.partners {
  background-color: rgba(0, 0, 0, 0.9);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 30px;
  align-items: center;
}

.partner-logo {
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s;
  max-height: 80px;
  width: auto;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}
.partners-marquee {
  overflow: hidden;
  width: 100%;
  background: #0a0a0a;
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  padding: 1rem 0;
}

.partners-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.partner-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  flex-shrink: 0;
  user-select: none;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 600px) {
  .partner-name {
    font-size: 1rem;
    gap: 2rem;
  }

  .partners-track {
    animation-duration: 20s;
  }
}

.testimonials {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("images/bg-terms.jpg") no-repeat center center/cover;
  background-attachment: fixed;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 30px;
  border-radius: 10px;
  margin: 20px;
  border: 1px solid var(--secondary);
  text-align: center;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.testimonial-author {
  font-weight: bold;
  color: var(--secondary);
}

/* SEO Article Section */
.seo-article {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 60px 0;
}

.article-container {
  max-width: 800px;
  margin: 0 auto;
}

.article-container h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--secondary);
}

.article-container h3 {
  font-size: 24px;
  margin: 30px 0 15px;
  color: var(--secondary);
}

.article-container p {
  margin-bottom: 15px;
  color: var(--text-secondary);
}
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  align-items: stretch;
  gap: 10px;
  margin-top: 30px;
}

.payment-method {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-light);
  transition: transform 0.3s ease;
}

.payment-method:hover {
  transform: translateY(-5px);
}

.payment-method img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 8px;
  margin-bottom: 10px;
  display: block;
}

.payment-method p {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
}
#paymentText {
  text-align: center;
}
/* Footer */
footer {
  background-color: #000;
  padding: 50px 0 20px;
  border-top: 2px solid var(--secondary);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-column h3 {
  color: var(--secondary);
  margin-bottom: 20px;
  font-size: 18px;
}

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

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: var(--secondary);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  font-size: 14px;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    width: 100%;
    margin-top: 15px;
    display: none;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
  }

  nav ul li {
    margin: 10px 0;
  }

  .mobile-menu-btn {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 18px;
  }

  .referral-container {
    flex-direction: column;
  }

  .section-title {
    font-size: 28px;
  }
}
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  color: var(--primary);
  padding: 0.85rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 40px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 10%,
    transparent 60%
  );
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.5s;
}

.btn:hover::before {
  top: 50%;
  left: 50%;
  opacity: 1;
}

.btn:hover {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

@media (max-width: 768px) {
  .btn {
    padding: 0.75rem 1.8rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .btn {
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
}
