@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: linear-gradient(180deg, #0b1020, #020617);
  color: #f1f5f9;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0.9375rem;
}

.gradient-text {
  background: linear-gradient(135deg, #7c5cff, #00e0ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-header {
  text-align: center;
  margin-bottom: 3.75rem;
}
.section-header .section-title {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #7c5cff, #00e0ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .section-header .section-title {
    font-size: 1.75rem;
  }
}
.section-header .section-subtitle {
  color: rgba(241, 245, 249, 0.7);
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .section-header .section-subtitle {
    font-size: 1rem;
  }
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  padding: 0.3125rem 0;
  backdrop-filter: blur(20px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  padding: 1.25rem 0;
  position: relative;
}
@media (max-width: 768px) {
  .navbar .container {
    padding: 0.9375rem 0;
  }
}
.navbar .logo {
  font-size: 1.75rem;
  font-weight: 700;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 0.625rem;
  color: #f1f5f9;
  text-decoration: none;
  z-index: 1001;
}
.navbar .logo i {
  color: #00e0ff;
  font-size: 1.5rem;
}
.navbar .logo span {
  color: #00e0ff;
}
.navbar .nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
  gap: 1.875rem;
}
@media (max-width: 1024px) {
  .navbar .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(11, 16, 32, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 5rem 1.875rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    gap: 1.5625rem;
  }
  .navbar .nav.active {
    right: 0;
  }
}
.navbar .nav a {
  color: #f1f5f9;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.navbar .nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #7c5cff, #00e0ff);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.navbar .nav a:hover {
  color: #00e0ff;
}
.navbar .nav a:hover::after {
  width: 80%;
}
.navbar .nav a.btn-outline {
  padding: 0.625rem 1.25rem;
  border: 1px solid #00e0ff;
  border-radius: 16px;
}
.navbar .nav a.btn-outline:hover {
  background: rgba(0, 224, 255, 0.1);
}
.navbar .nav a.btn-outline:hover::after {
  display: none;
}
@media (max-width: 1024px) {
  .navbar .nav a {
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
  }
  .navbar .nav a.btn-outline {
    margin-top: 0.625rem;
  }
}
.navbar .menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #f1f5f9;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.3125rem;
  z-index: 1001;
  transition: 0.3s ease;
}
.navbar .menu-toggle:hover {
  color: #00e0ff;
  transform: scale(1.1);
}
@media (max-width: 1024px) {
  .navbar .menu-toggle {
    display: block;
  }
}

.hero {
  padding: 6.25rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(124, 92, 255, 0.15), transparent 50%);
  z-index: -1;
  animation: float 20s infinite linear;
}
.hero .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.75rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .hero .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.hero .hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  animation: slideInLeft 0.8s ease;
}
@media (max-width: 768px) {
  .hero .hero-text h1 {
    font-size: 2.25rem;
  }
}
@media (max-width: 480px) {
  .hero .hero-text h1 {
    font-size: 1.75rem;
  }
}
.hero .hero-text p {
  font-size: 1.125rem;
  color: rgba(241, 245, 249, 0.8);
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.6;
  animation: slideInLeft 0.8s ease 0.2s both;
}
@media (max-width: 768px) {
  .hero .hero-text p {
    font-size: 1rem;
  }
}
.hero .hero-stats {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  animation: slideInLeft 0.8s ease 0.4s both;
}
@media (max-width: 768px) {
  .hero .hero-stats {
    gap: 1.25rem;
    justify-content: space-between;
  }
}
.hero .hero-stats .stat {
  text-align: center;
}
.hero .hero-stats .stat h3 {
  font-size: 2rem;
  color: #00e0ff;
  margin-bottom: 0.25rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .hero .hero-stats .stat h3 {
    font-size: 1.5rem;
  }
}
.hero .hero-stats .stat p {
  font-size: 0.875rem;
  color: rgba(241, 245, 249, 0.6);
  margin: 0;
  font-weight: 500;
}
.hero .hero-buttons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 1.25rem;
  flex-wrap: wrap;
  animation: slideInLeft 0.8s ease 0.6s both;
}
@media (max-width: 768px) {
  .hero .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}
.hero .hero-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  animation: slideInRight 0.8s ease 0.3s both;
}
.hero .hero-card .promo-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: linear-gradient(135deg, #ff5e62, #ff9966);
  color: #0b1020;
  padding: 0.5rem 1rem;
  border-radius: 1.25rem;
  font-weight: 700;
  font-size: 0.875rem;
  z-index: 2;
  animation: pulse 2s infinite;
}
.hero .hero-card img.hero-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.hero .hero-card img.hero-image:hover {
  transform: scale(1.02);
}
.hero .hero-card .hero-card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #f1f5f9;
}
@media (max-width: 768px) {
  .hero .hero-card .hero-card-content h3 {
    font-size: 1.25rem;
  }
}
.hero .hero-card .hero-card-content p {
  color: rgba(241, 245, 249, 0.7);
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
}
.hero .hero-card .countdown {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  margin-bottom: 1.25rem;
  gap: 0.625rem;
}
.hero .hero-card .countdown > div {
  text-align: center;
  background: rgba(11, 16, 32, 0.5);
  padding: 0.75rem;
  border-radius: 16px;
  flex: 1;
  transition: 0.3s ease;
}
.hero .hero-card .countdown > div:hover {
  background: rgba(0, 224, 255, 0.1);
  transform: translateY(-2px);
}
.hero .hero-card .countdown > div .time {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00e0ff;
  display: block;
  font-family: "Courier New", monospace;
}
.hero .hero-card .countdown > div small {
  font-size: 0.75rem;
  color: rgba(241, 245, 249, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero .hero-card .btn-small {
  padding: 0.75rem 1.5rem;
  width: 100%;
  font-size: 0.875rem;
  font-weight: 600;
}

.games {
  padding: 5rem 0;
  position: relative;
}
.games::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(0, 224, 255, 0.03), transparent 50%);
  z-index: -1;
}
.games .game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.875rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .games .game-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
@media (max-width: 480px) {
  .games .game-grid {
    grid-template-columns: 1fr;
  }
}
.games .game-card {
  background: #151a30;
  padding: 1.25rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(241, 245, 249, 0.1);
  animation: fadeInUp 0.6s ease;
}
.games .game-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(0, 224, 255, 0.3);
}
.games .game-card:hover img {
  transform: scale(1.05);
}
.games .game-card:hover .btn-card {
  background: #7c5cff;
  color: #0b1020;
  transform: translateY(0);
}
.games .game-card .game-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: linear-gradient(135deg, #7c5cff, #00e0ff);
  color: #0b1020;
  padding: 0.375rem 0.75rem;
  border-radius: 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.games .game-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  transition: 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.games .game-card > span {
  font-weight: 700;
  font-size: 1.125rem;
  display: block;
  margin-bottom: 0.5rem;
  color: #f1f5f9;
}
.games .game-card .game-price {
  color: #00e0ff;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}
.games .game-card .btn-card {
  width: 100%;
  padding: 0.75rem;
  background: rgba(124, 92, 255, 0.1);
  color: #7c5cff;
  border: 1px solid rgba(124, 92, 255, 0.3);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0.5rem;
  font-weight: 600;
  transform: translateY(5px);
}
.games .view-all {
  text-align: center;
  margin-top: 2.5rem;
}
.games .view-all .btn {
  padding: 0.75rem 2.5rem;
}

.promo {
  padding: 5rem 0;
  background: linear-gradient(180deg, rgba(11, 16, 32, 0.95), rgba(10, 15, 31, 0.95));
  position: relative;
  overflow: hidden;
}
.promo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(124, 92, 255, 0.05), transparent 40%), radial-gradient(circle at 90% 80%, rgba(0, 224, 255, 0.05), transparent 40%);
  z-index: -1;
}
.promo .promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.875rem;
  margin-bottom: 3.125rem;
}
@media (max-width: 1024px) {
  .promo .promo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .promo .promo-grid {
    grid-template-columns: 1fr;
  }
}
.promo .promo-card {
  background: #151a30;
  border-radius: 16px;
  padding: 1.5625rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(241, 245, 249, 0.1);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease;
}
.promo .promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(0, 224, 255, 0.3);
}
.promo .promo-card:hover .promo-tag {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.promo .promo-card.promo-main {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.1), rgba(0, 224, 255, 0.1));
  border: 1px solid rgba(0, 224, 255, 0.2);
  animation: fadeInUp 0.6s ease 0.2s both;
}
@media (max-width: 1024px) {
  .promo .promo-card.promo-main {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
  .promo .promo-card.promo-main {
    grid-column: span 1;
  }
}
.promo .promo-card.promo-main .promo-tag {
  background: linear-gradient(135deg, #ff5e62, #ff9966);
  animation: pulse 2s infinite;
}
.promo .promo-card.promo-main .discount-amount {
  background: linear-gradient(135deg, #ff5e62, #ff9966);
}
.promo .promo-card .promo-tag {
  position: absolute;
  top: 0.9375rem;
  right: 0.9375rem;
  background: linear-gradient(135deg, #7c5cff, #00e0ff);
  color: #0b1020;
  padding: 0.375rem 0.9375rem;
  border-radius: 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: 0.3s ease;
  z-index: 2;
}
.promo .promo-card .promo-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #f1f5f9;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 0.625rem;
  padding-right: 3.75rem;
}
.promo .promo-card .promo-content h3 i {
  color: #00e0ff;
  font-size: 1.125rem;
}
.promo .promo-card .promo-content .promo-description {
  color: rgba(241, 245, 249, 0.7);
  margin-bottom: 1.25rem;
  line-height: 1.5;
  font-size: 0.875rem;
  min-height: 2.625rem;
}
.promo .promo-card .promo-content .promo-discount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  margin-bottom: 1.25rem;
  padding: 0.9375rem;
  background: rgba(11, 16, 32, 0.5);
  border-radius: 0.75rem;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.promo .promo-card .promo-content .promo-discount .discount-amount {
  background: linear-gradient(135deg, #7c5cff, #00e0ff);
  color: #0b1020;
  padding: 0.5rem 1rem;
  border-radius: 1.25rem;
  font-weight: 700;
  font-size: 0.875rem;
  white-space: nowrap;
}
.promo .promo-card .promo-content .promo-discount .promo-code {
  color: #f1f5f9;
  font-size: 0.875rem;
  background: rgba(11, 16, 32, 0.3);
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  font-family: "Courier New", monospace;
}
.promo .promo-card .promo-content .promo-discount .promo-code strong {
  color: #00e0ff;
  font-weight: 700;
}
.promo .promo-card .promo-content .promo-validity {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
  color: rgba(241, 245, 249, 0.6);
  font-size: 0.875rem;
}
.promo .promo-card .promo-content .promo-validity i {
  color: #ffaa00;
  min-width: 1rem;
}
.promo .promo-card .promo-content button {
  width: 100%;
  margin-top: 0.3125rem;
}
.promo .promo-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.875rem;
  margin-top: 3.125rem;
}
.promo .promo-info .info-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5625rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease;
}
.promo .promo-info .info-card:hover {
  transform: translateY(-3px);
  background: rgba(124, 92, 255, 0.1);
  border-color: rgba(124, 92, 255, 0.3);
}
.promo .promo-info .info-card:hover i {
  transform: scale(1.1);
}
.promo .promo-info .info-card i {
  font-size: 2rem;
  color: #00e0ff;
  margin-bottom: 0.9375rem;
  display: block;
  transition: 0.3s ease;
}
.promo .promo-info .info-card h4 {
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
  color: #f1f5f9;
}
.promo .promo-info .info-card p {
  color: rgba(241, 245, 249, 0.7);
  font-size: 0.875rem;
  line-height: 1.5;
}

.features {
  padding: 5rem 0;
  background: rgba(124, 92, 255, 0.03);
  position: relative;
}
.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(0, 224, 255, 0.03), transparent 50%);
  z-index: -1;
}
.features .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.875rem;
}
.features .feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.875rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(241, 245, 249, 0.1);
  animation: fadeInUp 0.6s ease;
}
.features .feature-card:hover {
  transform: translateY(-5px);
  background: rgba(0, 224, 255, 0.05);
  border-color: rgba(0, 224, 255, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.features .feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}
.features .feature-card .feature-icon {
  width: 3.75rem;
  height: 3.75rem;
  background: linear-gradient(135deg, #7c5cff, #00e0ff);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  color: #0b1020;
  transition: 0.3s ease;
}
.features .feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #f1f5f9;
}
.features .feature-card p {
  color: rgba(241, 245, 249, 0.7);
  line-height: 1.6;
  font-size: 0.875rem;
}

.newsletter {
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.05), rgba(0, 224, 255, 0.05));
  z-index: -1;
}
.newsletter .newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.newsletter .newsletter-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: #f1f5f9;
  animation: fadeInUp 0.6s ease;
}
@media (max-width: 768px) {
  .newsletter .newsletter-content h2 {
    font-size: 1.75rem;
  }
}
.newsletter .newsletter-content p {
  color: rgba(241, 245, 249, 0.7);
  margin-bottom: 1.875rem;
  line-height: 1.6;
  animation: fadeInUp 0.6s ease 0.2s both;
}
.newsletter .newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0.9375rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.4s both;
}
.newsletter .newsletter-form input[type=email] {
  flex: 1;
  min-width: 250px;
  padding: 0.9375rem 1.25rem;
  background: rgba(241, 245, 249, 0.1);
  border: 1px solid rgba(241, 245, 249, 0.2);
  border-radius: 16px;
  color: #f1f5f9;
  font-size: 1rem;
  transition: 0.3s ease;
  font-family: inherit;
}
.newsletter .newsletter-form input[type=email]:focus {
  outline: none;
  border-color: #7c5cff;
  background: rgba(241, 245, 249, 0.05);
  box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.1);
}
.newsletter .newsletter-form input[type=email]::placeholder {
  color: rgba(241, 245, 249, 0.5);
}
@media (max-width: 768px) {
  .newsletter .newsletter-form input[type=email] {
    min-width: 100%;
  }
}
.newsletter .newsletter-form button {
  padding: 0.9375rem 1.875rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .newsletter .newsletter-form button {
    width: 100%;
  }
}

.footer {
  padding: 3.75rem 0 1.875rem;
  background: rgba(11, 16, 32, 0.9);
  border-top: 1px solid rgba(241, 245, 249, 0.1);
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #7c5cff, transparent);
}
.footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .footer .footer-grid {
    gap: 1.875rem;
  }
}
.footer .footer-col h4 {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  color: #00e0ff;
  position: relative;
  padding-bottom: 0.625rem;
}
.footer .footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2.5rem;
  height: 2px;
  background: linear-gradient(135deg, #7c5cff, #00e0ff);
}
.footer .footer-col a:not(.btn) {
  display: block;
  color: rgba(241, 245, 249, 0.7);
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: 0.3s ease;
  position: relative;
  padding-left: 0.9375rem;
}
.footer .footer-col a:not(.btn)::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #00e0ff;
  opacity: 0;
  transition: 0.3s ease;
}
.footer .footer-col a:not(.btn):hover {
  color: #00e0ff;
  transform: translateX(5px);
  padding-left: 1.25rem;
}
.footer .footer-col a:not(.btn):hover::before {
  opacity: 1;
}
.footer .footer-col .social-links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 0.9375rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.footer .footer-col .social-links a {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(241, 245, 249, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  color: #f1f5f9;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  text-decoration: none;
  padding: 0;
}
.footer .footer-col .social-links a:hover {
  background: linear-gradient(135deg, #7c5cff, #00e0ff);
  color: #0b1020;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.footer .footer-col .social-links a:hover::before {
  display: none;
}
.footer .footer-col .payment-methods {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 0.9375rem;
  font-size: 1.75rem;
  color: rgba(241, 245, 249, 0.7);
  margin: 1.25rem 0;
  flex-wrap: wrap;
}
.footer .footer-col .payment-methods i {
  transition: 0.3s ease;
}
.footer .footer-col .payment-methods i:hover {
  color: #f1f5f9;
  transform: translateY(-2px);
}
.footer .footer-col .copyright {
  color: rgba(241, 245, 249, 0.5);
  font-size: 0.875rem;
  margin-top: 1.25rem;
  text-align: center;
  width: 100%;
}
.footer .logo {
  margin-bottom: 1.25rem;
  display: inline-block;
}
.footer .logo:hover {
  transform: scale(1.05);
}
.footer p {
  color: rgba(241, 245, 249, 0.7);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.btn {
  padding: 0.875rem 1.75rem;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.btn:active::before {
  width: 300px;
  height: 300px;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.btn:active {
  transform: translateY(0);
}
.btn-primary {
  background: linear-gradient(135deg, #7c5cff, #00e0ff);
  color: #0b1020;
  font-weight: 700;
}
.btn-primary:hover {
  background: linear-gradient(135deg, rgb(164.9877300613, 143, 255), rgb(51, 230.2, 255));
  box-shadow: 0 10px 25px rgba(124, 92, 255, 0.3);
}
.btn-outline {
  background: transparent;
  border: 1px solid #00e0ff;
  color: #00e0ff;
}
.btn-outline:hover {
  background: rgba(0, 224, 255, 0.1);
  box-shadow: 0 10px 20px rgba(0, 224, 255, 0.1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(124, 92, 255, 0.4);
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(124, 92, 255, 0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(10px, -10px) rotate(1deg);
  }
  66% {
    transform: translate(-5px, 5px) rotate(-1deg);
  }
}
.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

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

.mt-20 {
  margin-top: 1.25rem;
}

.mb-20 {
  margin-bottom: 1.25rem;
}

.mt-40 {
  margin-top: 2.5rem;
}

.mb-40 {
  margin-bottom: 2.5rem;
}

@media (max-width: 1024px) {
  .hero .hero-stats .stat {
    flex: 1;
    min-width: 120px;
    text-align: center;
  }
  .promo-grid,
  .game-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 768px) {
  .hero-grid,
  .promo-grid,
  .game-grid,
  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr !important;
  }
  .hero-stats {
    justify-content: center !important;
  }
  .hero-stats .stat {
    flex: none !important;
    width: calc(33.333% - 20px) !important;
    min-width: auto !important;
  }
  .promo-card.promo-main {
    grid-column: span 1 !important;
  }
}
@media (max-width: 480px) {
  .hero-stats .stat {
    width: 100% !important;
    margin-bottom: 0.9375rem;
  }
  .container {
    width: 95%;
  }
}

/*# sourceMappingURL=main.css.map */
