* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --dark-orange: #d35400;
  --dark-orange-hover: #e67e22;
  --dark-bg: #0f0f0f;
  --light-bg: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --card-bg: #1e1e1e;
  --gradient-primary: linear-gradient(135deg, #d35400 0%, #e67e22 100%);
  --gradient-secondary: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  --gradient-purple: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
  --gradient-blue: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
  --gradient-green: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  --gradient-red: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
  --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4c430 100%);
  --border-radius: 20px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  --transition: all 0.3s ease;
}

body {
  font-family: "Manrope", sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* 
      UTILITY CLASSES
      Reusable classes for consistent spacing, typography, etc.
    */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(211, 84, 0, 0.4);
}

.section {
  padding: 100px 0;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 60px;
}

.hero {
  height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.heroBG {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}

.hero-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.heroImg {
  width: 600px;
}

.hero h1 {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero p {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--dark-orange);
  color: var(--dark-orange);
}

.btn-secondary:hover {
  background: var(--dark-orange);
  color: white;
}

/* 
      FEATURES SECTION
      Grid layout with cards showcasing key features
    */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 40px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: white;
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--text-secondary);
}

/* 
      GAMES SECTION
      Showcase popular casino games with images
    */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.game-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  height: 300px;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.game-card:hover img {
  transform: scale(1.05);
}

.game-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 20px;
}

.game-overlay h3 {
  font-size: 20px;
}

/* 
      VIP EXPERIENCE SECTION
      Creative section with animated cards and premium visuals
    */
.vip-section {
  position: relative;
  overflow: hidden;
}

.vip-content {
  position: relative;
  z-index: 2;
}

.vip-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.vip-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.vip-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.vip-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: var(--dark-bg);
}

.vip-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: white;
}

.vip-card p {
  color: rgba(255, 255, 255, 0.9);
}

/* 
      TECHNOLOGY SECTION
      Futuristic design with animated circuit background
    */
.tech-section {
  background: var(--dark-bg);
  position: relative;
}

.tech-content {
  position: relative;
  z-index: 2;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.tech-item {
  text-align: center;
  padding: 30px;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--gradient-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
}

.tech-item h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.tech-item p {
  color: var(--text-secondary);
}

/* 
      TESTIMONIALS SECTION
      Elegant carousel-style testimonials with animated quotes
    */
.testimonials-section {
  position: relative;
  overflow: hidden;
}

.testimonials-content {
  position: relative;
  z-index: 2;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 80px;
  color: rgba(255, 255, 255, 0.2);
  font-family: serif;
  line-height: 1;
}

.testimonial-content {
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;

  p {
    font-style: italic;
  }
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--dark-bg);
}

.author-info h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.author-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

/* 
      NEW: LIVE CASINO SECTION
      Immersive section with video-like graphics and real-time feel
    */
.live-casino-section {
  position: relative;
  overflow: hidden;
}

.live-casino-content {
  position: relative;
  z-index: 2;
}

.live-casino-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.live-table {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.live-table-img img {
  height: 220px;
  width: 100%;
}

.live-table-info {
  padding: 20px;
}

.live-status {
  display: inline-block;
  background: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 10px;
}

.live-table-info h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.live-table-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

/* 
      NEW: TOURNAMENTS SECTION
      Dynamic section with animated tournament brackets and prizes
    */
.tournaments-section {
  background: var(--dark-bg);
  position: relative;
}

.tournaments-content {
  position: relative;
  z-index: 2;
}

.tournament-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.tournament-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.tournament-header {
  background: #d9610b;
  padding: 20px;
  text-align: center;
}

.tournament-prize {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
}

.tournament-name {
  font-size: 18px;
  font-weight: 600;
}

.tournament-body {
  padding: 30px;
}

.tournament-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

.detail-item {
  text-align: center;
}

.detail-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-orange);
}

.detail-label {
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.tournament-footer {
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
}

/* 
      NEW: MOBILE APP SECTION
      Showcase mobile gaming experience with device mockups
    */
.mobile-app-section {
  position: relative;
  overflow: hidden;
}

.mobile-app-content {
  position: relative;
  z-index: 2;
}

.app-showcase {
  display: flex;
  align-items: center;
  gap: 60px;
}

.app-text {
  flex: 1;
}

.app-text h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: white;
}

.app-text p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  font-size: 18px;
}

.app-features {
  margin-bottom: 30px;
}

.app-feature {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.app-feature-icon {
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 14px;
  color: var(--dark-bg);
}

.app-device img {
  flex: 1;
  width: 600px;
  transform: rotateZ(5deg);
  -webkit-transform: rotateZ(5deg);
  -moz-transform: rotateZ(5deg);
  -ms-transform: rotateZ(5deg);
  -o-transform: rotateZ(5deg);
}

.device-mockup {
  width: 280px;
  height: 500px;
  background: white;
  border-radius: 40px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.device-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  display: flex;
  flex-direction: column;
  padding: 30px;
  box-sizing: border-box;
}

.device-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.device-time {
  font-size: 14px;
  font-weight: bold;
}

.device-icons {
  display: flex;
  gap: 10px;
}

.device-icon {
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
}

.device-content {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.device-game {
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  color: white;
}

/* 
      CTA SECTION
      Full-width call-to-action with gradient background
    */
.cta-section {
  background: var(--gradient-primary);
  text-align: center;
  padding: 80px 0;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 20px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

/* 
      FOOTER
      Clean footer with social links and copyright
    */
footer {
  background: var(--light-bg);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.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: var(--transition);
}

.footer-column ul li a:hover {
  color: var(--dark-orange);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  font-size: 14px;
}

/* 
      RESPONSIVE DESIGN
      Mobile-first approach with breakpoints
    */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 36px;
  }

  .section-subtitle {
    font-size: 18px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .app-showcase {
    flex-direction: column;
    gap: 40px;
  }

  .device-mockup {
    width: 200px;
    height: 350px;
  }

  nav ul {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 32px;
  }

  .section-title {
    font-size: 28px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 16px;
  }

  .testimonials-grid,
  .tournament-cards {
    grid-template-columns: 1fr;
  }

  .device-content {
    grid-template-columns: 1fr;
  }
}

/*   НАСТРОЙКА SCROLL-BAR   */
::-webkit-scrollbar {
  width: 0.5em;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #d9610b;
}

::-webkit-scrollbar-thumb:active {
  background-color: #d9610b;
}

.footerContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.intoLinks {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
  span {
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
  }
  a {
    transition: 0.3s all linear;
    transform-origin: left;
    color: #fff;
    text-decoration: none;
  }
  a:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 750px) {
  .intoLinks {
    flex-direction: column;
    span {
      display: none;
    }
  }
}
.reserved {
  opacity: 0.5;
  text-align: center;
}

.f-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  i {
    color: #d9610b;
  }
}

@media (max-width: 800px) {
  .hero-content img {
    display: none;
  }
  .hero-buttons {
    max-width: 150px;
    a {
      text-align: center;
    }
  }
  .app-device img {
    width: 300px;
  }
}

.myWrapper-into {
  margin-bottom: 30px;
}
