/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-bg: rgba(16, 1, 52, 1);
  --secondary-bg: #1a1035;
  --accent-cyan: #00d4ff;
  --accent-blue: #4a90e2;
  --text-white: #ffffff;
  --text-gray: #b4b4c8;
  --border-color: rgba(255, 255, 255, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Epilogue', sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-bg);
  padding: 40px 20px;
  z-index: 9999;
  border-top: 1px solid var(--border-color);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cookie-content h2 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 20px;
}

.cookie-content p {
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.cookie-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 700px;
  margin: 0 auto;
}

.cookie-buttons button {
  padding: 20px;
  font-size: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.btn-accept {
  background-color: var(--accent-cyan);
  color: var(--primary-bg);
}

.btn-accept:hover {
  background-color: #00b8e0;
}

.btn-refuse {
  background-color: transparent;
  color: var(--primary-bg);
  border: 2px solid var(--primary-bg);
  background-color: var(--text-white);
}

.btn-refuse:hover {
  background-color: var(--text-gray);
}

/* Header */
.header {
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(16, 1, 52, 1);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(247, 247, 247, 1);
  font-family: 'Syne';
  font-weight: 800;
  font-size: 22px;
  line-height: 120%;
}

.logo img {
  width: 30px;
  height: 30px;
}

.nav {
  display: flex;
  gap: 40px;
}

.nav-link {
  color: rgba(241, 242, 242, 1);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-cyan);
}

.btn-primary {
  background-color: transparent;
  color: var(--text-white);
  border: 1px solid var(--accent-cyan);
  padding: 12px 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background-color: var(--accent-cyan);
  color: var(--primary-bg);
}

.btn-secondary {
  background-color: var(--accent-cyan);
  color: var(--primary-bg);
  border: none;
  padding: 15px 40px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: #00b8e0;
  transform: translateY(-2px);
}

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.burger-menu span {
  width: 25px;
  height: 2px;
  background-color: var(--text-white);
  transition: all 0.3s ease;
}

.mobile-menu {
  position: fixed;
  top: 73px;
  left: 0;
  right: 0;
  background-color: var(--primary-bg);
  padding: 20px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  border-bottom: 1px solid var(--border-color);
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav .nav-link {
  font-size: 16px;
}

.mobile-nav .btn-primary {
  text-align: center;
}

/* Hero Section */
.hero {
  padding: 150px 0 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  gap: 60px;
  align-items: start;
}

.hero-text {
  background: url(/wp-content/themes/techfile_94jwn0mz/./images/Pattern.png) no-repeat center;
  background-size: contain;
}

.hero-text h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
  font-family: "Syne", sans-serif;
}

.gradient-text {
  background: linear-gradient(89.92deg, #016DB0 1.29%, #01EEFF 99.94%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.sparkles {
  display: inline-block;
  margin-left: 20px;
}

.sparkle {
  color: var(--accent-cyan);
  font-size: 32px;
  margin: 0 5px;
}

.welcome-box {
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid rgba(57, 53, 86, 1);
}

.welcome-box p {
  color: rgba(230, 230, 235, 1);
  font-size: 20px;
  line-height: 1.6;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-item h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 5px;

}

.stat-item p {
  color: var(--text-gray);
  font-size: 12px;
}

/* Hot Game Section */
.hot-game {
  position: relative;
  padding: 80px 0;
}

.single-game {
  position: relative;
}
.hot-game::before,
.single-game::before {
  content: '';
  display: block;
  width: 30vw;
  height: 100%;
  background: rgba(9, 6, 45, 1);
  position: absolute;
  top: 0;
  right: 0;
  border-left: 2px solid rgba(57, 53, 86, 1);
}

.hot-game .container,
.single-game .container {
  z-index: 2;
  position: relative;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 34px;
  line-height: 1.2;
  text-align: center;
  font-family: 'Syne', sans-serif;
}

.section-title.centered {
  text-align: center;
}

.hot-game-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  border: 1px solid rgba(57, 53, 86, 1);
  padding-left: 32px;
}

.hot-game-info h3 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 600;
}

.hot-game-info p {
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.game-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.tag {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  border: 1px solid var(--border-color);
}

.hot-game-image img {
  width: 100%;
  border-radius: 8px;
  height: 100%;
  object-fit: cover;
  margin-bottom: -8px;
}

/* Platform Features */
.platform-features {
  padding: 80px 0;
  position: relative;
}

.platform-features::before {
  content: '';
  display: block;
  width: 60vw;
  height: 100%;
  background: rgba(9, 6, 45, 1);
  position: absolute;
  top: 0;
  right: 0;
  border-left: 2px solid rgba(57, 53, 86, 1);
}

.platform-features .container {
  position: relative;
  z-index: 2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-card {
  background-color: rgba(16, 1, 52, 1);
  padding: 40px 30px;
  border: 1px solid rgba(107, 103, 133, 1);
  transition: all 0.3s ease;
}

.feature-card:hover {
  background-color: rgba(57, 53, 86, 1);
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 30px;
}

.feature-icon img {
  width: 100%;
  height: 100%;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--accent-cyan);
}

.feature-card p {
  color: var(--text-gray);
  font-size: 13px;
  line-height: 1.8;
}

/* How It Works */
.how-it-works {
  padding: 80px 0;
}

.section-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.section-header .section-title {
  margin-bottom: 0;
}

.scroll-down {
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-down:hover {
  transform: translateY(3px);
}

.scroll-down img {
  width: 20px;
  height: 20px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.section-header--between {
  justify-content: space-between;
}

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

.step-icon {

  margin: 0 auto 8px;

  display: flex;
  align-items: center;
  justify-content: center;
}



.step-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 600;
}

.step-card p {
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.8;
}

.centered-btn {
  display: block;
  text-align: center;
  margin: 0 auto;
  width: fit-content;
}

/* Today's Update */
.todays-update {
  padding: 80px 0;
}

.swiper-navigation {
  display: flex;
  gap: 15px;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
  background-color: transparent;
  border: 1px solid var(--accent-cyan);
  width: 50px;
  height: 50px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
  background-color: var(--accent-cyan);
}

.swiper-button-prev-custom img,
.swiper-button-next-custom img {
  width: 20px;
  height: 20px;
}

.updates-swiper {
  margin-top: 60px;
}

.update-card {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.update-card:hover {
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
}

.update-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.update-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.update-content {
  padding: 25px;
}

.update-content h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
  color: rgba(255, 114, 210, 1);
}

.update-content p {
  color: var(--text-gray);
  font-size: 13px;
  line-height: 1.7;
}

/* Rewards Section */
.rewards {
  padding: 80px 0;
}

.rewards-content {
  background: linear-gradient(rgba(0, 54, 80, 0.5), rgba(0, 54, 80, 0.5)), url(/wp-content/themes/techfile_94jwn0mz/./images/bg.jpg) no-repeat center;
  background-size: cover;
  padding: 80px 60px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.rewards-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 30px;
}

.rewards-content h2 {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Syne', sans-serif;
}

/* Footer */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-color);
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-white);
  font-size: 18px;
  font-weight: 600;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 120%;
}

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

.footer-column h4 {
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 600;
}

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

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

.footer-column ul li a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

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

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  border-color: var(--accent-cyan);
  background-color: rgba(0, 212, 255, 0.1);
}

.social-links img {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.footer-bottom p {
  color: var(--text-gray);
  font-size: 12px;
}

/* Games Page */
.games-section {
  padding: 150px 0 100px;
}

.games-intro h1 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 20px;
}

.games-intro p {
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.8;
}

.games-navigation {
  display: flex;
  gap: 15px;
}

.games-btn-prev,
.games-btn-next {
  background-color: transparent;
  border: 1px solid var(--accent-cyan);
  width: 50px;
  height: 50px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.games-btn-prev img,
.games-btn-next img {
  width: 20px;
  height: 20px;
}

.games-swiper {
  margin-top: 60px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.game-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: block;
  aspect-ratio: 4/3;
}

.game-card:hover {
  transform: translateY(-10px);
}

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

/* Single Game Page */
.single-game {
  padding: 150px 0 80px;
}

.single-game-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
  border: 1px solid rgba(57, 53, 86, 1);
}

.single-game-info h1 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 600;
}

.single-game-info p {
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.single-game-image {
  border-radius: 8px;
  overflow: hidden;
}

.single-game-image img {
  width: 100%;
  display: block;
}

.single-game-how {
  padding-top: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .hot-game-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 16px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .single-game-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .header .btn-primary {
    display: none;
  }

  .burger-menu {
    display: flex;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .section-title {
    font-size: 32px;
  }

  .hot-game-info h3 {
    font-size: 28px;
  }

  .section-header {
    flex-direction: column;
    gap: 20px;
  }

  .swiper-navigation,
  .games-navigation {
    width: 100%;
    justify-content: center;
  }


  .rewards-content {
    padding: 50px 30px;
  }

  .rewards-content h2 {
    font-size: 24px;
  }

  .cookie-content h2 {
    font-size: 32px;
  }

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

  .single-game-info h1 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .stat-item h2 {
    font-size: 36px;
  }

  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .hot-game-info h3 {
    font-size: 24px;
  }

  .feature-card {
    padding: 30px 20px;
  }

  .step-card h3 {
    font-size: 18px;
  }

  .update-content h3 {
    font-size: 16px;
  }

  .rewards-content h2 {
    font-size: 20px;
  }

  .cookie-content h2 {
    font-size: 28px;
  }

  .games-intro h1 {
    font-size: 32px;
  }
}

.policy {
  padding-top: 160px;
  padding-bottom: 40px;
}


.policy-content{
  padding-top: 20px;
}

.policy-content a {
  color: inherit;
  text-decoration: none;
}

.policy-content li {
  list-style-type: disc;
  list-style-position: inside;
}