* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
@font-face {
  font-family: "Lato";
  src: url("fonts/Lato-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Lato";
  src: url("fonts/Lato-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Playfair Display";
  src: url("fonts/PlayfairDisplay-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Playfair Display";
  src: url("fonts/PlayfairDisplay-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Playfair Display";
  src: url("fonts/PlayfairDisplay-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

body {
  background-color: var(--bg-dark);
  color: var(--secondary-color);
  line-height: 1.6;
  font-family: "Lato", sans-serif;
  font-weight: 300;
}
a {
  color: var(--gold);
  text-decoration: none;
}
h1,
h2,
h3,
.hero-3d-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
:root {
  --primary-color: #ff6f00;
  --secondary-color: #222;
  --bg-dark: #f9f9fb;
  --gold: #ffcc00;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 22px;
  text-decoration: none;
  color: #1f2937;
  gap: 8px;
}

.logo-square {
  background: linear-gradient(135deg, #ff7e00, #ff4d00);
  color: white;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 18px;
  line-height: 1;
  display: inline-block;
}

.logo-text {
  font-weight: 800;
  font-size: 22px;
}

@media (max-width: 480px) {
  .logo {
    font-size: 18px;
  }

  .logo-square {
    font-size: 16px;
    padding: 5px 10px;
  }

  .logo-text {
    font-size: 18px;
  }
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background-color: var(--bg-dark);
  position: relative;
  z-index: 1000;
  flex-wrap: nowrap;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.language-selector {
  background-color: #333;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
}

.burger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-menu ul {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  position: relative;
  color: #222;
  text-decoration: none;
  font-weight: 500;
  font-family: "Playfair Display", serif;
  transition: all 0.3s ease;
  padding: 4px 2px;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--primary-color);
  transform: scale(1.05);
}

.nav-menu a:hover::after {
  width: 100%;
}

.header-btn {
  display: flex;
  gap: 10px;
}
.btn {
  display: inline-block;
  font-weight: 700;
  padding: 12px 26px;
  font-size: 16px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(145deg, #ff7a00, #ffa500);
  color: #fff;
  box-shadow: 0 0 10px rgba(255, 115, 0, 0.6);
}

.btn-primary:hover {
  background: linear-gradient(145deg, #ffa500, #ff7a00);
  box-shadow: 0 0 15px rgba(255, 145, 0, 0.8), 0 0 10px rgba(255, 115, 0, 0.6);
  transform: translateY(-1px);
}

.btn-secondary {
  background: linear-gradient(145deg, #2c2c2c, #3f3f3f);
  color: #fff;
  border: 1px solid #555;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.05);
}

.btn-secondary:hover {
  background: linear-gradient(145deg, #3f3f3f, #2c2c2c);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }

  .header-left {
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }

  .burger {
    display: block;
    margin-left: auto;
  }

  .nav-menu {
    display: none;
    width: 100%;
    margin-top: 12px;
    background-color: var(--bg-dark);
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu.open {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    padding: 0;
  }

  .header-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
  }

  .header-btn {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }

  .btn {
    padding: 10px 20px;
    font-size: 16px;
    white-space: nowrap;
    min-width: 110px;
    text-align: center;
  }

  .language-selector {
    width: 80%;
    max-width: 280px;
    margin: 0 auto;
    padding: 8px;
    font-size: 16px;
  }
}

.hero-13win15 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 40px 20px;
  box-sizing: border-box;
  color: white;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-image: url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.55),
    rgba(255, 94, 0, 0.25)
  );
  backdrop-filter: blur(0px);
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out forwards;
}

.hero-3d-title {
  font-size: 68px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fdd537;
  text-shadow: 2px 2px 0 #ce6a00, 3px 3px 0 #f74c03,
    4px 4px 5px rgba(0, 0, 0, 0.379);
  margin-bottom: 10px;
}

.hero-3d-title span {
  color: #ffffff;
  text-shadow: 2px 2px 0 #ff8400, 3px 3px 0 #b25f00,
    4px 4px 6px rgba(0, 0, 0, 0.6);
  font-family: "Playfair Display", serif;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 26px;
  color: #fff;
  margin-bottom: 20px;
}
.hero-bonus-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 16px;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 18px;
  background: rgba(255, 138, 0, 0.15);
  border: 2px dashed #ffae00;
  box-shadow: inset 0 0 12px rgba(255, 184, 0, 0.2),
    0 0 16px rgba(255, 138, 0, 0.3);
  animation: bonusPulse 3s infinite ease-in-out;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.hero-bonus strong {
  color: #ffe600;
  font-weight: 900;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 0 0 10px #ffe600;
}
.hero-bonus {
  font-size: 20px;
  font-weight: 600;
}

@keyframes bonusPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: inset 0 0 12px rgba(255, 184, 0, 0.2),
      0 0 16px rgba(255, 138, 0, 0.3);
  }
  50% {
    transform: scale(1.02);
    box-shadow: inset 0 0 18px rgba(255, 204, 0, 0.3),
      0 0 22px rgba(255, 138, 0, 0.5);
  }
}

.hero-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.hero-btn {
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1;
  min-height: 60px;
  min-width: 180px;
  cursor: pointer;
  border: none;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #ff6a00, #ffb347);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 110, 0, 0.5);
  border: 2px solid transparent;
}

.hero-btn-primary:hover {
  background: linear-gradient(135deg, #ff8c00, #ffd580);
  box-shadow: 0 6px 16px rgba(255, 120, 0, 0.7);
  transform: translateY(-2px);
}

.hero-btn-secondary {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 25px rgba(255, 160, 0, 0.7);
  }
  50% {
    box-shadow: 0 0 35px rgba(255, 200, 0, 1);
  }
}

@keyframes glowExpand {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .hero-3d-title {
    font-size: 36px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .hero-bonus {
    font-size: 18px;
    padding: 14px 20px;
  }
  .hero-btn {
    font-size: 16px;
    padding: 14px 24px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 0 10px;
  }
  .hero-3d-title {
    font-size: 28px;
  }
  .hero-subtitle {
    font-size: 14px;
  }
  .hero-bonus-wrapper {
    padding: 10px;
  }
}

section {
  padding: 60px 40px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: var(--secondary-color);
  position: relative;
}

section h2::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    rgba(255, 138, 0, 0.5),
    var(--primary-color),
    rgba(255, 138, 0, 0.5)
  );
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}
.games-section {
  padding: 40px 20px;
  background: #f9f9fb;
  font-family: "Segoe UI", sans-serif;
  text-align: center;
}

.section-subtitle {
  font-size: 16px;
  color: #777;
  margin-bottom: 30px;
}

.game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  justify-content: center;
  align-items: stretch;
}

.game-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 20px;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.game-card:hover {
  transform: translateY(-5px);
}

.game-icon {
  font-size: 30px;
  background: #ff6a00;
  color: white;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.game-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.game-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.play-button {
  display: inline-block;
  background: #ff6a00;
  color: white;
  border-radius: 6px;
  padding: 8px 16px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.play-button:hover {
  background: #e05c00;
}
.hot-game {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0px;
  justify-content: center;
  align-items: stretch;
  justify-items: center;
}
.hot-title {
  font-size: 20px;
  font-weight: bold;
  margin: 40px 0 20px;
}

.hot-games {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.hot-game {
  border-radius: 12px;
  color: white;
  padding: 15px;
}

.hot-icon {
  font-size: 24px;
}

.hot-game h4 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}

.hot-game p {
  margin: 0;
  font-size: 14px;
}

.hot-game.yellow {
  background: linear-gradient(135deg, #fceabb, #f8b500);
}
.hot-game.pink {
  background: linear-gradient(135deg, #fc6076, #ff9a44);
}
.hot-game.blue {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}
.hot-game.green {
  background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.promo-section {
  padding: 50px 20px;
  text-align: center;
}

.promo-title {
  font-size: 36px;
  font-weight: 800;
}

.promo-subtitle {
  font-size: 16px;
  color: #555;
  margin: 10px 0 30px;
}

.promo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.promo-card {
  position: relative;
  border-radius: 16px;
  padding: 25px;
  width: 320px;
  text-align: center;
  background-clip: padding-box;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  z-index: 1;
}

.promo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, #ccc, #eee);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  z-index: -1;
}

.promo-icon {
  font-size: 36px;
  margin-bottom: 10px;
}

.percent {
  font-size: 28px;
  font-weight: bold;
  color: #111;
  margin: 5px 0;
}

.amount {
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
}

.promo-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
}

.promo-card ul li::before {
  content: "✔️ ";
  color: green;
  margin-right: 6px;
}

.promo-button {
  display: inline-block;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 12px;
  background: #ff5722;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: bold;
}

.badge.hot {
  background: #e91e63;
}

.badge.exclusive {
  background: #fbbc05;
  color: #000;
}

.promo-orange {
  background: linear-gradient(135deg, #fff8f2, #fff);
}

.promo-purple {
  background: linear-gradient(135deg, #f5f2ff, #fff);
}

.promo-gold {
  background: linear-gradient(135deg, #fffbe6, #fff);
}
.promo-orange::before {
  background: linear-gradient(135deg, #ff7e00, #ffa726);
}

.promo-purple::before {
  background: linear-gradient(135deg, #a64bf4, #f54ea2);
}

.promo-gold::before {
  background: linear-gradient(135deg, #f9d423, #ffcc00);
}
.promo-button.orange {
  background: linear-gradient(to right, #ff7e00, #ff4500);
}

.promo-button.purple {
  background: linear-gradient(to right, #a64bf4, #f54ea2);
}

.promo-button.gold {
  background: linear-gradient(to right, #f9d423, #ffcc00);
  color: #222;
}

.promo-button:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .promo-grid {
    flex-direction: column;
    align-items: center;
  }

  .promo-card {
    width: 100%;
    max-width: 340px;
  }
}
.countdown-banner {
  position: relative;
  background: url("images/offer.jpg") center center / cover no-repeat;
  border-radius: 20px;
  overflow: hidden;
  margin: 40px 20px;
  padding: 0px;
}

.countdown-overlay {
  backdrop-filter: blur(0px);
  background: linear-gradient(
    to right,
    rgba(220, 38, 38, 0.525),
    rgba(229, 231, 235, 0.463)
  );
  padding: 40px 20px;
  text-align: center;
  color: white;
}

.countdown-content h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.countdown-content p {
  font-size: 16px;
  margin-bottom: 20px;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.countdown-timer div {
  background: white;
  color: #dc2626;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  min-width: 60px;
}

.countdown-timer small {
  display: block;
  font-size: 12px;
  margin-top: 4px;
  color: #333;
}

.countdown-button {
  background: white;
  color: #dc2626;
  padding: 12px 24px;
  font-weight: bold;
  font-size: 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.countdown-button:hover {
  background: #fef2f2;
}

@media (max-width: 768px) {
  .countdown-timer {
    flex-direction: row;
    gap: 10px;
  }

  .countdown-timer div {
    font-size: 18px;
    padding: 8px 12px;
    min-width: 50px;
  }

  .countdown-content h3 {
    font-size: 18px;
  }

  .countdown-button {
    font-size: 11px;
    padding: 10px 20px;
  }
}
.about {
  padding: 60px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-title {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 10px;
  position: relative;
}

.about-divider {
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 0 auto 30px;
  border-radius: 2px;
  animation: grow 1.2s ease-out forwards;
}

.about-text {
  max-width: 800px;
  margin: 0 auto 50px;
  color: #222;
  font-size: 18px;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out forwards;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 24px;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle, rgba(255, 115, 0, 0.05), transparent 60%);
  z-index: 0;
  transition: opacity 0.4s ease;
  opacity: 0;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 138, 0, 0.4);
}

.feature-icon {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 16px;
  text-shadow: 0 0 8px rgba(255, 128, 0, 0.4);
  z-index: 1;
  position: relative;
  animation: float 3.5s ease-in-out infinite;
}

.feature-card h3 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--gold);
  font-size: 21px;
  margin-bottom: 10px;
  z-index: 1;
  position: relative;
}

.feature-card p {
  color: #333;
  font-size: 15px;
  line-height: 1.55;
  z-index: 1;
  position: relative;
}

@media (max-width: 992px) {
  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .about-features {
    grid-template-columns: 1fr;
  }
}

/* Анимации */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes grow {
  from {
    width: 0;
  }
  to {
    width: 80px;
  }
}

/* Testimonials Section */
.testimonials {
  background-color: var(--bg-dark);
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.testimonial-card {
  background-color: var(--bg-light);
  border-radius: 10px;
  padding: 25px;
  width: 320px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.testimonial-content {
  color: #222;
  font-style: italic;
  position: relative;
  padding: 0 20px;
  margin-bottom: 20px;
}

.testimonial-content::before,
.testimonial-content::after {
  content: '"';
  font-size: 50px;
  color: var(--primary-color);
  opacity: 0.3;
  position: absolute;
}

.testimonial-content::before {
  top: -20px;
  left: -10px;
}

.testimonial-content::after {
  bottom: -40px;
  right: -10px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.author-info h4 {
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.author-info p {
  color: #aaa;
  font-size: 14px;
}

/* Footer */
footer {
  background-color: var(--bg-dark);
  padding: 40px 5% 20px;
  border-top: 2px solid var(--primary-color);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin-bottom: 20px;
}

.footer-column h3 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 0;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #444;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--primary-color);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: var(--bg-light);
  border-radius: 50%;
  color: var(--secondary-color);
  text-align: center;
  line-height: 40px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #777;
  font-size: 14px;
}

.age-restriction {
  background-color: var(--primary-color);
  color: white;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  margin-top: 20px;
  letter-spacing: 1px;
  border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 15px;
  }

  .logo {
    margin-bottom: 15px;
  }

  nav ul {
    margin-bottom: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav ul li {
    margin: 5px;
  }

  .header-buttons {
    width: 100%;
    justify-content: center;
  }

  .hero {
    height: 500px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 18px;
  }
}

.casino-intro {
  background: var(--bg-dark);
  color: var(--secondary-color);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.intro-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.intro-content {
  flex: 1 1 480px;
}

.intro-content h1 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.highlight {
  color: var(--primary-color);
}

.intro-content p {
  font-size: 1.1rem;
  color: #222;
}

.cta-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.btn {
  transition: all 0.3s ease;
}

.btn.primary {
  background: var(--primary-color);
  color: var(--bg-dark);
}

.btn.secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn:hover {
  transform: scale(1.05);
}

.intro-float-icons {
  position: relative;
  flex: 1 1 300px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.float-icon {
  position: absolute;
  font-size: 3rem;
  opacity: 0.2;
  animation: float 6s ease-in-out infinite;
}

.float-slot {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}
.float-football {
  top: 50%;
  left: 70%;
  animation-delay: 2s;
}
.float-gift {
  top: 80%;
  left: 30%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.features {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-block {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.feature-block h2 {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.feature-block p {
  color: #222;
  font-size: 1rem;
  line-height: 1.5;
}

.feature-block:hover {
  transform: translateY(-8px);
}

.feature-block a {
  color: var(--primary-color);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .intro-wrapper {
    flex-direction: column;
  }

  .intro-float-icons {
    height: 120px;
  }
}
.intro-banner {
  flex: 1 1 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-banner img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease;
}

.intro-banner img:hover {
  transform: scale(1.03);
}
.partners {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
  text-align: center;
  background: none;
}

.partners::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/partner.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: blur(2px);
  transform: scale(1.05);
}

.partners::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.55),
    rgba(255, 94, 0, 0.25)
  );
  z-index: 1;
}

.partners > .container {
  position: relative;
  z-index: 2;
}

.section-title h2 {
  font-size: 36px;
  color: #fff;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.section-title h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background-color: #e53935;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.partners-subtext {
  color: white;
  font-size: 18px;
  margin-bottom: 50px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.partner-card {
  background: linear-gradient(135deg, #1e1e1e, #2b2b2b);
  padding: 1.5em 2em;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(255, 0, 80, 0.5);
  transition: all 0.3s ease;
  text-align: center;
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  z-index: 1;
  color: #fefefe;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
  font-weight: 800;
}

.partner-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, #ff8400, #ff6a00, #ff0000, #ff5100);
  background-size: 400%;
  border-radius: 14px;
  animation: pulseBorder 6s linear infinite;
}

@keyframes pulseBorder {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.partner-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 0, 80, 0.8);
  text-shadow: 0 0 6px #ff2200, 0 0 10px #ff3700;
}
.partner-card::after {
  content: "🎁 Claim Bonus!";
  position: absolute;
  bottom: -2em;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9rem;
  color: #ffc107;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.partner-card:hover::after {
  opacity: 1;
}

@keyframes slideBounce {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  60% {
    transform: translateY(-10px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
  }
}

.slide-up .partner-card {
  animation: slideBounce 0.8s ease-out forwards;
}

.partners-marquee {
  overflow: hidden;
  white-space: nowrap;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 20px 0;
  margin-top: 40px;
}

.marquee-track {
  display: inline-block;
  animation: marqueeScroll 20s linear infinite;
}

.marquee-track span {
  display: inline-block;
  color: var(--bg-dark);
  font-weight: 900;
  font-size: 18px;
  margin: 0 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 1024px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .partner-card {
    font-size: 18px;
    padding: 20px 16px;
  }

  .marquee-track span {
    font-size: 16px;
    margin: 0 20px;
  }
}
.cta-block {
  background: linear-gradient(135deg, #ff7e00, #ff5e00);
  color: white;
  padding: 50px 20px;
  text-align: center;
  border-radius: 20px;
  margin: 40px 20px;
}

.cta-container h2 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 10px;
  color: white;
}

.cta-container p {
  font-size: 21px;
  margin-bottom: 25px;
}

.cta-form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-form input {
  padding: 12px 16px;
  border-radius: 8px;
  border: none;
  outline: none;
  min-width: 260px;
  font-size: 14px;
  color: #333;
}

.cta-button {
  background: white;
  color: #ff5e00;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  border: 2px solid white;
  transition: background 0.3s, color 0.3s;
}

.cta-button:hover {
  background: #fff3e0;
  color: #e65100;
}

@media (max-width: 600px) {
  .cta-container h2 {
    font-size: 22px;
  }

  .cta-container p {
    font-size: 14px;
  }

  .cta-form {
    flex-direction: column;
  }

  .cta-button,
  .cta-form input {
    width: 100%;
    max-width: 320px;
  }
}
