/* Global Styles */
:root {
  --primary-color: #7b2cbf;
  --secondary-color: #5a189a;
  --accent-color: #f72585;
  --dark-color: #0a0a15;
  --darker-color: #050510;
  --light-color: #f8f9fa;
  --gray-color: #8c8c9e;
  --text-color: #e6e6e6;
  --success-color: #38b000;
  --warning-color: #ffbe0b;
  --danger-color: #d90429;
  --dark-gradient: linear-gradient(135deg, #0a0a15 0%, #16183e 100%);
  --primary-gradient: linear-gradient(135deg, #7b2cbf 0%, #5a189a 100%);
  --accent-gradient: linear-gradient(135deg, #f72585 0%, #b5179e 100%);
  --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
  --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--darker-color);
  overflow-x: hidden;
  position: relative;
}

main {
	overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--light-color);
}

img {
  max-width: 100%;
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  position: relative;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--gray-color);
  font-size: 1.1rem;
}

.highlight {
  color: var(--primary-color);
}

/* Background Particles */
.background-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Main Content Wrapper */
main, header, footer, section {
  position: relative;
  z-index: 1;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

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

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

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

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

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

.btn-light {
  background-color: white;
  color: var(--dark-color);
}

.btn-cta {
  background-color: var(--accent-color);
  color: white;
  font-size: 1rem;
  padding: 1rem 2rem;
  box-shadow: 0 4px 14px rgba(247, 37, 133, 0.4);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(247, 37, 133, 0.6);
}

.btn-register {
  background-color: var(--accent-color);
  color: white;
  box-shadow: 0 4px 14px rgba(247, 37, 133, 0.3);
}

.btn-login {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.btn-login:hover {
  background-color: white;
  color: var(--dark-color);
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Animation Classes */
.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(247, 37, 133, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(247, 37, 133, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(247, 37, 133, 0);
  }
}

/* Header Styles */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-bar {
  background-color: rgba(10, 10, 21, 0.9);
  padding: 0.5rem 0;
  color: white;
  font-size: 0.85rem;
  backdrop-filter: blur(10px);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.exchange-rates-static {
  display: flex;
  gap: 1.5rem;
  flex: 0 0 auto;
  padding: 0.4rem 0.8rem;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  border-left: 3px solid var(--accent-color);
}

.exchange-rates-static span {
  white-space: nowrap;
  font-weight: 600;
}

.exchange-rates-static span i {
  color: var(--accent-color);
  margin-right: 0.3rem;
}

.winners-ticker-container {
  flex: 1;
  overflow: hidden;
  margin: 0 1.5rem;
}

.winners-ticker {
  display: flex;
  animation: ticker-slow 30s linear infinite;
}

.winners-ticker span {
  white-space: nowrap;
  padding-right: 2rem;
}

.winners-ticker span i {
  color: #ffc107;
  margin-right: 0.3rem;
}

@keyframes ticker-slow {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-180%);
  }
}

.top-bar-buttons {
  display: flex;
  gap: 0.8rem;
  flex: 0 0 auto;
}

.top-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.free-money-btn {
  background-color: var(--accent-color);
}

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

.top-btn i {
  margin-right: 0.3rem;
  font-size: 0.9rem;
}

.top-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
  color: white;
}

.main-nav {
  background-color: rgba(10, 10, 21, 0.8);
  padding: 1rem 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.logo img {
  width: auto;
  height: 70px;
}

.nav-links {
  display: flex;
  margin-bottom: 0;
  gap: 0.5rem;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  color: white;
  padding: 0.8rem;
  display: block;
  font-weight: 600;
  opacity: 0.8;
  transition: var(--transition);
  border-radius: 6px;
}

.nav-links li a:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.05);
}

.nav-links li a.active {
  opacity: 1;
  color: var(--accent-color);
}

.nav-links li a.active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 3px;
}

.auth-buttons {
  display: flex;
  gap: 1rem;
}

.menu-toggle {
  display: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.game-providers {
	display: flex;
	gap: 1rem;
	align-items: center;
	justify-content: center;
}

.game-providers img {
	width: auto;
	height: 25px;
}

/* Hero Section */
.hero {
  color: white;
  position: relative;
  padding: 2rem 0;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero-row {
  display: flex;
  gap: 1.5rem;
  align-items: stretch;
}

.hero-main-block {
  flex: 0 0 50%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)), url('../images/1.avif') center/cover no-repeat;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  padding: 2rem;
  display: flex;
  align-items: center;
  min-height: 380px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 450px;
}

.hero-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  text-shadow: var(--text-shadow);
  line-height: 1.2;
}

.hero-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  line-height: 1.3;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn-play {
  background-color: var(--accent-color);
  color: white;
  padding: 0.8rem 3rem;
  font-size: 1.2rem;
  box-shadow: 0 4px 14px rgba(247, 37, 133, 0.4);
}

.btn-play:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(247, 37, 133, 0.6);
}

.promo-block {
  flex: 0 0 23%;
  border-radius: 15px;
  padding: 2rem;
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--card-shadow);
}

.promo-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.promo-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.cashback-promo {
  background: url('../images/2.png') center/cover no-repeat;
  background-color: #7209b7;
}

.bonus-promo {
  background: url('../images/4.avif') center/cover no-repeat;
  background-color: #4361ee;
}

.promo-block h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-shadow: var(--text-shadow);
  line-height: 1.2;
}

/* Game Navigation Section */
.game-nav {
  padding: 0.5rem 0 1.5rem;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 10px;
}

.game-nav-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.game-nav-block {
  flex: 1;
  padding: 1rem;
  border-radius: 8px;
	background-color: var(--secondary-color);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: var(--text-color);
  display: block;
}

.game-nav-block:hover {
  background-color: rgba(255, 255, 255, 0.05);
  text-decoration: none;
  color: var(--text-color);
  transform: translateY(-3px);
}

.game-nav-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.game-nav-icon {
  font-size: 1.8rem;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
}

.tvbet-block .game-nav-icon {
  color: #ffc107;
}

.casino-block .game-nav-icon {
  color: #e63946;
}

.live-games-block .game-nav-icon {
  color: #4cc9f0;
}

.poker-block .game-nav-icon {
  color: #2a9d8f;
}

.game-nav-text h4 {
  margin-bottom: 0.2rem;
  font-size: 1.2rem;
}

.game-nav-text p {
  color: var(--gray-color);
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background-color: var(--dark-color);
  position: relative;
  z-index: 1;
}

.feature-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background-color: rgba(26, 26, 46, 0.7);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  border: 1px solid rgba(123, 44, 191, 0.2);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(123, 44, 191, 0.6);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background-color: rgba(123, 44, 191, 0.1);
  color: var(--primary-color);
  font-size: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--gray-color);
  margin-bottom: 1.5rem;
}

/* Promotion Boxes */
.promo-boxes {
  padding: 3rem 0;
  background-color: transparent;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.promo-box {
  border-radius: 15px;
  padding: 2rem;
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--card-shadow);
}

.promo-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

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

.promo-box h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  text-shadow: var(--text-shadow);
  line-height: 1.2;
}

.promo-box p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  opacity: 0.9;
}

/* Game Categories */
.game-categories {
  padding: 5rem 0;
  background-color: var(--darker-color);
  position: relative;
  z-index: 1;
}

.category-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tab-btn {
  padding: 0.8rem 1.5rem;
  background-color: rgba(26, 26, 46, 0.7);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-color);
  transition: var(--transition);
}

.tab-btn.active {
  background-color: var(--primary-color);
  color: white;
}

.tab-btn:hover {
  background-color: rgba(123, 44, 191, 0.3);
}

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

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.game-card {
  border-radius: 10px;
  overflow: hidden;
  background-color: rgba(26, 26, 46, 0.7);
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  border: 1px solid rgba(123, 44, 191, 0.1);
}

.game-card:hover {
  transform: translateY(-10px);
  border-color: rgba(123, 44, 191, 0.4);
}

.game-thumb {
  height: 200px;
  position: relative;
  background-color: var(--dark-color);
}

.game-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.btn-play-now {
  background-color: var(--accent-color);
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.game-provider {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
}

.game-card h4 {
  padding: 1rem 1rem 0.5rem;
  font-size: 1.1rem;
}

.game-meta {
  display: flex;
  justify-content: space-between;
  padding: 0 1rem 1rem;
  color: var(--gray-color);
  font-size: 0.9rem;
}

.more-games {
  margin-top: 2rem;
  text-align: center;
}

.btn-view-all {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-view-all:hover {
  background-color: var(--primary-color);
  color: white;
}

/* App Promo */
.app-promo {
  padding: 5rem 3rem;
  background: var(--dark-gradient);
  color: white;
}

.app-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.app-info h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.app-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
  font-weight: 600;
}

.app-info p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.app-features {
  margin-bottom: 2rem;
}

.app-features li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.app-features li i {
  color: var(--accent-color);
}

.app-buttons {
  display: flex;
  gap: 1rem;
}

.btn-app {
  background-color: white;
  color: var(--dark-color);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-app i {
  font-size: 1.3rem;
}

.btn-app:hover {
  background-color: var(--accent-color);
  color: white;
}

.app-mockup {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 280px;
  height: 500px;
  background-color: #222;
  border-radius: 30px;
  padding: 10px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
  background-color: var(--dark-color);
  position: relative;
  z-index: 1;
}

.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background-color: rgba(26, 26, 46, 0.7);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  border: 1px solid rgba(123, 44, 191, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: rgba(123, 44, 191, 0.4);
}

.testimonial-rating {
  margin-bottom: 1rem;
  color: var(--warning-color);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  color: var(--text-color);
}

.testimonial-text::before {
  content: '"';
  font-size: 3rem;
  position: absolute;
  top: -1rem;
  left: -1rem;
  color: rgba(123, 44, 191, 0.1);
  font-family: serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.author-info span {
  font-size: 0.85rem;
  color: var(--gray-color);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 1rem;
}

.prev-btn, .next-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
  background-color: var(--secondary-color);
}

/* CTA Section */
.cta {
  padding: 5rem 0;
  color: white;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Footer */
footer {
  background-color: rgba(10, 10, 21, 0.9);
  color: white;
  position: relative;
  z-index: 1;
}

.footer-top {
  padding: 4rem 0 2rem;
  display: grid;
  grid-template-columns: 1.5fr 3fr 1.5fr;
  gap: 2rem;
}

.footer-logo img {
  width: auto;
  height: 70px;
}

.footer-logo p {
  color: #ddd;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  color: #ddd;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: white;
  padding-left: 5px;
}

.footer-social h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-social h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
}

.footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.payment-methods {
  margin-bottom: 1.5rem;
}

.payment-methods h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 1.8rem;
  color: #ddd;
}

.footer-disclaimer {
  font-size: 0.9rem;
  color: #ddd;
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
}

.float-btn {
  width: 160px;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.register-float {
  background-color: var(--accent-color);
  color: white;
}

.login-float {
  background-color: white;
  color: var(--dark-color);
}

.float-btn:hover {
  transform: translateY(-5px);
}

/* Page Banner (for inner pages) */
.page-banner {
  background: var(--dark-gradient);
  padding: 5rem 0;
  position: relative;
  color: white;
  text-align: center;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  text-shadow: var(--text-shadow);
}

.banner-content h2 {
  font-size: 1.5rem;
  font-weight: 500;
  opacity: 0.9;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  z-index: 1;
}

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

/* Specific Banner Styles */
.promotions-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('') center/cover no-repeat;
  background-color: var(--primary-color);
}

.slots-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('') center/cover no-repeat;
  background-color: var(--accent-color);
}

.live-casino-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('') center/cover no-repeat;
  background-color: var(--secondary-color);
}

.app-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('') center/cover no-repeat;
  background-color: var(--dark-color);
}

.support-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('') center/cover no-repeat;
  background-color: var(--dark-color);
}

/* Intro Sections (for inner pages) */
.intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 0;
}

.intro-content p {
  font-size: 1.2rem;
  color: var(--gray-color);
}

/* Form Styles */
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #2a2a40;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background-color: rgba(26, 26, 46, 0.7);
  color: var(--text-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-submit {
  text-align: center;
}

.btn-submit {
  background-color: var(--primary-color);
  color: white;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

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

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-content h2 {
    font-size: 2.5rem;
  }
  
  .feature-blocks {
    grid-template-columns: 1fr;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
  }

  .hero-row {
    flex-wrap: wrap;
  }

  .hero-main-block {
    flex: 0 0 100%;
    margin-bottom: 1.5rem;
  }

  .promo-block {
    min-height: 250px;
  }
}

/* Header Styles */
.main-nav.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  background-color: rgba(10, 10, 21, 0.95);
}

/* Mobile Navigation Improvements */
@media (max-width: 1300px) {
  /* Top bar improvements */
  .top-bar {
    padding: 0.8rem 0;
  }
  
  .top-bar-content {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .exchange-rates-static {
    flex: none;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0.5rem;
  }
  
  .winners-ticker-container {
    flex: none;
    width: 100%;
    margin: 0.4rem 0;
  }
  
  .top-bar-buttons {
    flex: none;
    width: 100%;
    justify-content: center;
    gap: 0.8rem;
  }
}

@media (max-width: 1024px) {
  /* Header and Navigation improvements */
  .main-nav {
    padding: 0.8rem 0;
  }
  
  .main-nav .container {
    position: relative;
  }
  
  .logo img {
    height: 50px;
  }
  
  .menu-toggle {
    display: block;
		position: absolute;
		top: 100%;
		right: 0;
    padding: 0.5rem;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1100;
  }

	.promo-grid {
		grid-template-columns: 1fr;
	}

	.app-content {
		grid-template-columns: 1fr;
	}
  
  .nav-links {
    display: none; /* Скрываем меню по умолчанию */
    position: absolute; /* Меняем fixed на absolute для нормальной прокрутки */
    top: 100%; /* Размещаем меню под хедером */
    right: 0;
    width: 280px;
    background-color: rgba(10, 10, 21, 0.95);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
    box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1090;
  }

	.testimonial-slider {
		grid-template-columns: 1fr;
	}
  
  .nav-links.active {
    display: block; /* Показываем меню при активации */
  }
  
  .nav-links li {
    width: 100%;
  }
  
  .nav-links li a {
    padding: 1rem 2rem;
    border-radius: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

	.game-nav-row {
		flex-wrap: wrap;
	}
  
  .nav-links li a.active::before {
    display: none;
  }
  
  .nav-links li a.active {
    background-color: rgba(247, 37, 133, 0.1);
    border-left: 3px solid var(--accent-color);
  }
  
  .game-providers {
    display: none; /* Скрываем на мобильных */
  }
  
  /* Только auth-buttons фиксированы */
  .auth-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    padding: 1rem;
    background-color: rgba(10, 10, 21, 0.95);
    z-index: 1080;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    gap: 1rem;
  }
  
  .auth-buttons .btn {
    flex: 1;
    text-align: center;
    padding: 0.7rem 0;
  }

  
  /* Improved ticker animation for mobile */
  @keyframes ticker-slow {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-300%);
    }
  }

	.app-buttons {
		flex-wrap: wrap;
	}
  
  .winners-ticker {
    animation: ticker-slow 40s linear infinite;
  }

	.footer-top {
		grid-template-columns: 1fr;
	}
	header {
		position: relative;
	}
	.promo-block {
		flex: 0 0 100%;
	}
  
  /* Improved Exchange Rates Display */
  .exchange-rates-static span {
    font-size: 0.8rem;
    padding: 0.3rem 0.5rem;
    background-color: rgba(26, 26, 46, 0.7);
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .section-header h2 {
    font-size: 2rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .footer-nav {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .btn {
    padding: 0.7rem 1.5rem;
  }
  
  .footer-top {
    padding: 2rem 0 1rem;
  }
  
  .floating-buttons {
    display: none; /* Hide floating buttons as we have fixed auth buttons */
  }
  
  .float-btn {
    width: 140px;
  }

  .promo-block h3 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .game-nav-content {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .game-nav-text h4 {
    font-size: 1rem;
  }
} 