/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  background-color: #111;
  color: #fff;
  line-height: 1.6;
}
a {
  color: var(--gold);
  text-decoration: none;
}
:root {
  --primary-color: #ff8a00;
  --secondary-color: #ffffff;
  --bg-dark: #000000;
  --bg-light: #1a1a1a;
  --gold: #ffcc00;
}

.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: wrap;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
  text-decoration: none;
}

.logo span {
  color: var(--gold);
}

.nav-menu ul {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
}

.language-selector {
  background-color: #333;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  margin-left: 20px;
}

.burger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
}

/* Адаптивность */
@media (max-width: 768px) {
  .burger {
    display: block;
  }

  .nav-menu {
    display: none;
    width: 100%;
    margin-top: 15px;
  }

  .nav-menu.open {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .header-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 15px;
  }
}

.hero-13win15 {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  overflow: hidden;
}

@media (max-width: 992px) {
  .hero-13win15 {
    height: 500px;
  }
}
@media (max-width: 600px) {
  .hero-13win15 {
    height: 400px;
  }
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary-color) 0%, transparent 100%);
  opacity: 0.4;
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-3d-title {
  font-size: 60px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
  color: #ffcc00;
  text-shadow: 1px 1px 0 #c45d00, 2px 2px 0 #b44700, 3px 3px 0 #992f00,
    4px 4px 4px rgba(0, 0, 0, 0.6);
  animation: popIn 1s ease-out forwards;
}

.hero-3d-title span {
  color: #ffffff;
  text-shadow: 1px 1px 0 #ffa500, 2px 2px 0 #e68a00, 3px 3px 0 #cc6c00,
    4px 4px 4px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
  color: white;
  text-align: center;
  margin-top: 10px;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.4s forwards;
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.85) translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle,
.hero-bonus {
  font-size: 24px;
  margin-bottom: 15px;
}
.hero-bonus {
  font-size: 20px;
  color: var(--secondary-color);
  background: radial-gradient(
    circle at center,
    rgba(255, 138, 0, 0.3),
    transparent 70%
  );
  padding: 12px 24px;
  border: 2px solid var(--primary-color);
  border-radius: 10px;
  max-width: fit-content;
  margin: 20px auto 0;
  box-shadow: 0 0 12px rgba(255, 138, 0, 0.4);
  animation: pulseGlow 2.5s ease-in-out infinite;
}

.hero-bonus strong {
  color: var(--gold);
  font-weight: 800;
  text-shadow: 1px 1px 2px #000, 0 0 8px var(--gold);
}

.hero-btn {
  background: var(--primary-color);
  color: var(--secondary-color);
  font-weight: bold;
  padding: 16px 30px;
  border-radius: 40px;
  font-size: 24px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  text-decoration: none;
  margin-top: 30px;
}

.hero-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-20deg);
  transition: left 0.5s;
}

.hero-btn:hover::after {
  left: 130%;
}

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-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.game-card {
  background-color: var(--bg-light);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.game-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 20px rgba(255, 138, 0, 0.2);
}

.game-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.game-info {
  padding: 15px;
  text-align: center;
}

.game-info h3 {
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.game-info p {
  color: #ccc;
  margin-bottom: 15px;
  font-size: 14px;
}

.bonuses {
  background: linear-gradient(135deg, #ff8a00, #1a1a1a, #ff6f00);
  background-size: 400% 400%;
  animation: gradientFlow 10s ease infinite;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.bonuses-title {
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.bonus-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.bonus-card {
  background-color: var(--bg-light);
  border-radius: 15px;
  padding: 25px;
  width: 300px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bonus-card:hover {
  transform: translateY(-5px) scale(1.03);
  border-color: var(--primary-color);
  box-shadow: 0 12px 25px rgba(255, 138, 0, 0.4);
}

.bonus-card h3 {
  color: var(--primary-color);
  font-size: 22px;
  margin: 15px 0 10px;
}

.bonus-card p {
  color: #eee;
  margin: 10px 0 20px;
  font-size: 15px;
}

.bonus-card .value {
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  text-shadow: 1px 1px 0 #c45d00, 2px 2px 0 #b44700,
    3px 3px 6px rgba(0, 0, 0, 0.4);
  margin: 15px 0;
}

.bonus-card .bonus-amount {
  color: var(--primary-color);
  font-weight: bold;
}

.emoji-icon {
  font-size: 40px;
  margin-bottom: 10px;
  animation: floatUp 2s ease-in-out infinite;
}

@keyframes floatUp {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background: #ffa600;
}

/* Адаптив */
@media (max-width: 992px) {
  .bonus-card {
    width: 260px;
  }
}

@media (max-width: 600px) {
  .bonus-cards {
    flex-direction: column;
    align-items: center;
  }

  .bonus-card {
    width: 90%;
  }
}

.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: #ddd;
  font-size: 18px;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out forwards;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-card {
  background-color: #111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, border-color 0.3s ease;
  text-align: center;
  animation: floatIn 0.5s ease-out forwards;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.feature-icon {
  font-size: 42px;
  margin-bottom: 15px;
  color: var(--primary-color);
  animation: float 3s ease-in-out infinite;
}

.feature-card h3 {
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-card p {
  color: #ccc;
  font-size: 15px;
  line-height: 1.5;
}

/* Адаптив */
@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: #ddd;
  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: #bbb;
  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: #ccc;
}

.cta-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  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: #ccc;
  font-size: 1rem;
  line-height: 1.5;
}

.feature-block:hover {
  transform: translateY(-8px);
  background: #222;
}

.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/partners.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: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(10, 10, 10, 0.95) 100%
  );
  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: 10px;
}

.section-title h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background-color: #e53935;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.partners-subtext {
  color: #ccc;
  font-size: 16px;
  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: 1px solid #333;
  border-bottom: 1px solid #333;
  padding: 20px 0;
  margin-top: 40px;
}

.marquee-track {
  display: inline-block;
  animation: marqueeScroll 20s linear infinite;
}

.marquee-track span {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 700;
  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;
  }
}
