/*===== GOOGLE FONTS =====*/
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

/*===== CSS VARIABLES =====*/
:root {
  /* Colors */
  --primary-color: #0d0d0d;        /* Elegant Black */
  --accent-color: #FFD700;         /* Gold */
  --secondary-color: #8B0000;      /* Maroon */
  --white-color: #FFFFFF;
  --text-color: #f5f5f5;
  --text-color-light: #cccccc;
  --border-color: rgba(255, 215, 0, 0.3);
  --overlay-color: rgba(0, 0, 0, 0.7);
  
  /* Gradients */
  --gold-gradient: linear-gradient(135deg, #FFD700, #FFA500, #FFD700);
  --dark-gradient: linear-gradient(135deg, #0d0d0d, #1a1a1a, #0d0d0d);
  --hero-gradient: linear-gradient(135deg, rgba(13, 13, 13, 0.8), rgba(139, 0, 0, 0.6));
  
  /* Typography */
  --title-font: 'Cinzel', serif;
  --body-font: 'Inter', sans-serif;
  
  /* Font Sizes */
  --biggest-font-size: 3.5rem;
  --h1-font-size: 2.5rem;
  --h2-font-size: 2rem;
  --h3-font-size: 1.5rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.75rem;
  
  /* Font Weights */
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;
  
  /* Spacing */
  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-25: 1.25rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;
  
  /* Z-index */
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
  
  /* Shadows */
  --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.2);
  --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-gold: 0 4px 20px rgba(255, 215, 0, 0.3);
  
  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;
}

/*===== RESPONSIVE TYPOGRAPHY =====*/
@media screen and (max-width: 992px) {
  :root {
    --biggest-font-size: 2.5rem;
    --h1-font-size: 2rem;
    --h2-font-size: 1.75rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 0.938rem;
    --small-font-size: 0.813rem;
    --smaller-font-size: 0.75rem;
  }
}

/*===== BASE STYLES =====*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--primary-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
  font-family: var(--title-font);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/*===== REUSABLE CSS CLASSES =====*/
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--mb-1-5);
  padding-right: var(--mb-1-5);
}

.section {
  padding: 6rem 0 4rem;
  position: relative;
}

.section__title {
  font-size: var(--h1-font-size);
  color: var(--white-color);
  text-align: center;
  margin-bottom: var(--mb-1);
  font-family: var(--title-font);
  font-weight: var(--font-bold);
  position: relative;
}

.section__title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

.section__subtitle {
  text-align: center;
  color: var(--text-color-light);
  margin-bottom: var(--mb-3);
  font-size: var(--normal-font-size);
}

/*===== BUTTONS =====*/
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  color: var(--primary-color);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: var(--font-semi-bold);
  transition: var(--transition-fast);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: var(--small-font-size);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: var(--transition-medium);
}

.button:hover::before {
  left: 100%;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.button--secondary {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.button--secondary:hover {
  background: var(--accent-color);
  color: var(--primary-color);
}

.button--promotion {
  background: var(--dark-gradient);
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
}

.button--support {
  background: var(--secondary-color);
  color: var(--white-color);
  font-size: var(--smaller-font-size);
  padding: 0.75rem 1.5rem;
}

.button__icon {
  margin-left: var(--mb-0-5);
  transition: var(--transition-fast);
}

.button:hover .button__icon {
  transform: translateX(3px);
}

/*===== HEADER & NAVIGATION =====*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: transparent;
  transition: var(--transition-medium);
}

.header.scroll-header {
  background-color: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-medium);
}

.nav {
  height: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo h1 {
  font-family: var(--title-font);
  font-size: var(--h3-font-size);
  font-weight: var(--font-bold);
  color: var(--accent-color);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav__list {
  display: flex;
  column-gap: 2rem;
  align-items: center;
}

.nav__link {
  color: var(--text-color);
  font-weight: var(--font-medium);
  transition: var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition-fast);
}

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

.nav__link:hover::after,
.nav__link.active-link::after {
  width: 100%;
}

.nav__toggle,
.nav__close {
  display: none;
}

/*===== HERO SECTION =====*/
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--primary-color);
}

.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
}

.hero__video-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1616594039964-e69fd62d388e?fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--hero-gradient);
  z-index: 1;
}

.hero__floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  font-size: 2.5rem;
  color: rgba(255, 215, 0, 0.15);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  animation: floatAnimation 6s ease-in-out infinite;
}

.floating-element--1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 8s;
}

.floating-element--2 {
  top: 30%;
  right: 15%;
  animation-delay: 1s;
  animation-duration: 7s;
}

.floating-element--3 {
  top: 60%;
  left: 20%;
  animation-delay: 2s;
  animation-duration: 9s;
}

.floating-element--4 {
  top: 70%;
  right: 25%;
  animation-delay: 3s;
  animation-duration: 6s;
}

.floating-element--5 {
  top: 15%;
  left: 70%;
  animation-delay: 1.5s;
  animation-duration: 8.5s;
}

.floating-element--6 {
  top: 80%;
  left: 60%;
  animation-delay: 2.5s;
  animation-duration: 7.5s;
}

.floating-element--7 {
  top: 40%;
  left: 5%;
  animation-delay: 0.5s;
  animation-duration: 9.5s;
}

.floating-element--8 {
  top: 50%;
  right: 5%;
  animation-delay: 3.5s;
  animation-duration: 6.5s;
}

.hero__container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero__title {
  font-size: var(--biggest-font-size);
  color: var(--white-color);
  margin-bottom: var(--mb-1);
  font-family: var(--title-font);
  font-weight: var(--font-bold);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero__subtitle {
  font-size: var(--h3-font-size);
  color: var(--accent-color);
  margin-bottom: var(--mb-2-5);
  font-weight: var(--font-medium);
}

.hero__buttons {
  display: flex;
  gap: var(--mb-1);
  justify-content: center;
  flex-wrap: wrap;
}

/* Enhanced Hero Animations */
.animate-title {
  animation: fadeInUp 1.2s ease-out, pulse 3s ease-in-out 2s infinite;
}

.animate-subtitle {
  animation: fadeInUp 1.2s ease-out 0.4s both, shimmer 2s ease-in-out 3s infinite;
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--white-color) 50%, var(--accent-color) 100%);
  background-size: 200px 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.animate-buttons {
  animation: fadeInUp 1.2s ease-out 0.8s both;
}

.animate-buttons .button {
  transition: all 0.3s ease;
}

.animate-buttons .button:hover {
  animation: pulse 0.6s ease-in-out;
}

/*===== GAMES SECTION =====*/
.games {
  background: var(--dark-gradient);
  position: relative;
}

.games::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 0, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.games__tabs {
  display: flex;
  justify-content: center;
  gap: var(--mb-1);
  margin-bottom: var(--mb-3);
  flex-wrap: wrap;
}

.games__tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--mb-0-5);
  padding: var(--mb-1) var(--mb-1-5);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  cursor: pointer;
  transition: var(--transition-fast);
  min-width: 120px;
}

.games__tab i {
  font-size: var(--h3-font-size);
  color: var(--text-color-light);
  transition: var(--transition-fast);
}

.games__tab span {
  font-weight: var(--font-medium);
  color: var(--text-color);
  transition: var(--transition-fast);
}

.games__tab:hover,
.games__tab.active-tab {
  background: rgba(255, 215, 0, 0.1);
  border-color: var(--accent-color);
  transform: translateY(-5px);
}

.games__tab:hover i,
.games__tab.active-tab i {
  color: var(--accent-color);
  transform: scale(1.1);
}

.games__tab:hover span,
.games__tab.active-tab span {
  color: var(--accent-color);
}

.games__content {
  position: relative;
  min-height: 400px;
}

.games__tabcontent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(50px);
  transition: var(--transition-medium);
}

.games__tabcontent.active-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.game__card {
  background: rgba(255, 255, 255, 0.05);
  padding: var(--mb-3);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  text-align: center;
  backdrop-filter: blur(10px);
  max-width: 600px;
  margin: 0 auto;
}

.game__icon {
  font-size: 4rem;
  margin-bottom: var(--mb-1);
  animation: float 3s ease-in-out infinite;
}

.game__card h3 {
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-1);
  color: var(--accent-color);
}

.game__card p {
  margin-bottom: var(--mb-2);
  color: var(--text-color-light);
  line-height: 1.8;
}

.game__features {
  display: flex;
  justify-content: center;
  gap: var(--mb-1);
  flex-wrap: wrap;
}

.feature {
  background: var(--gold-gradient);
  color: var(--primary-color);
  padding: var(--mb-0-5) var(--mb-1);
  border-radius: 20px;
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}

/*===== PROMOTIONS SECTION =====*/
.promotions {
  background: var(--primary-color);
  position: relative;
}

.promotions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--mb-2);
  margin-top: var(--mb-3);
}

.promotion__card {
  background: var(--dark-gradient);
  padding: var(--mb-2-5);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.promotion__card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, var(--accent-color), transparent);
  opacity: 0;
  transition: var(--transition-medium);
  animation: rotate 4s linear infinite;
}

.promotion__card:hover::before {
  opacity: 0.1;
}

.promotion__card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-gold);
  border-color: var(--accent-color);
}

.promotion__icon {
  width: 80px;
  height: 80px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--mb-1);
  position: relative;
  z-index: 2;
}

.promotion__icon i {
  font-size: var(--h2-font-size);
  color: var(--primary-color);
}

.promotion__card h3 {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-5);
  position: relative;
  z-index: 2;
}

.promotion__value {
  font-size: var(--h2-font-size);
  color: var(--accent-color);
  font-weight: var(--font-bold);
  margin-bottom: var(--mb-1);
  font-family: var(--title-font);
  position: relative;
  z-index: 2;
}

.promotion__card p {
  color: var(--text-color-light);
  margin-bottom: var(--mb-1-5);
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.promotion__features {
  display: flex;
  flex-direction: column;
  gap: var(--mb-0-5);
  margin-bottom: var(--mb-2);
  position: relative;
  z-index: 2;
}

.promotion__features span {
  color: var(--text-color);
  font-size: var(--small-font-size);
}

/*===== VIP SECTION =====*/
.vip {
  background: var(--dark-gradient);
  position: relative;
}

.vip__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--mb-3);
  align-items: center;
}

.vip__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--mb-0-5);
  background: var(--gold-gradient);
  color: var(--primary-color);
  padding: var(--mb-0-5) var(--mb-1-5);
  border-radius: 50px;
  font-weight: var(--font-semi-bold);
  font-size: var(--small-font-size);
  margin-bottom: var(--mb-1);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vip__benefits {
  margin: var(--mb-2) 0;
}

.vip__benefit {
  display: flex;
  gap: var(--mb-1);
  margin-bottom: var(--mb-2);
  align-items: flex-start;
}

.benefit__icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit__icon i {
  color: var(--accent-color);
  font-size: var(--normal-font-size);
}

.benefit__content h4 {
  color: var(--accent-color);
  margin-bottom: var(--mb-0-5);
  font-size: var(--normal-font-size);
}

.benefit__content p {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
  line-height: 1.6;
}

.vip__button {
  margin-top: var(--mb-2);
}

.vip__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.vip__card {
  width: 300px;
  height: 200px;
  background: var(--dark-gradient);
  border: 2px solid var(--accent-color);
  border-radius: 20px;
  padding: var(--mb-1-5);
  position: relative;
  overflow: hidden;
  transform: perspective(1000px) rotateY(-15deg);
  transition: var(--transition-medium);
}

.vip__card:hover {
  transform: perspective(1000px) rotateY(0deg) translateY(-10px);
}

.vip__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-gradient);
  opacity: 0.1;
  z-index: 1;
}

.card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--mb-1);
  position: relative;
  z-index: 2;
}

.card__top h3 {
  font-size: var(--small-font-size);
  color: var(--accent-color);
  font-weight: var(--font-bold);
  letter-spacing: 2px;
}

.card__top i {
  color: var(--accent-color);
  font-size: var(--h3-font-size);
}

.card__middle {
  text-align: center;
  margin-bottom: var(--mb-2);
  position: relative;
  z-index: 2;
}

.card__middle h4 {
  font-size: var(--h3-font-size);
  color: var(--white-color);
  font-family: var(--title-font);
  margin-bottom: var(--mb-0-25);
}

.card__middle p {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
}

.card__bottom {
  position: absolute;
  bottom: var(--mb-1);
  right: var(--mb-1-5);
  z-index: 2;
}

.card__bottom span {
  color: var(--accent-color);
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}

/*===== SUPPORT SECTION =====*/
.support {
  background: var(--primary-color);
}

.support__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--mb-3);
  align-items: start;
}

.support__options {
  display: flex;
  flex-direction: column;
  gap: var(--mb-2);
}

.support__option {
  background: rgba(255, 255, 255, 0.05);
  padding: var(--mb-2);
  border-radius: 15px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition-fast);
}

.support__option:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  background: rgba(255, 215, 0, 0.05);
}

.option__icon {
  width: 60px;
  height: 60px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--mb-1);
}

.option__icon i {
  font-size: var(--h3-font-size);
  color: var(--primary-color);
}

.support__option h4 {
  margin-bottom: var(--mb-0-75);
  color: var(--accent-color);
}

.support__option p {
  color: var(--text-color-light);
  margin-bottom: var(--mb-1-5);
  font-size: var(--small-font-size);
}

.contact__form {
  background: var(--dark-gradient);
  padding: var(--mb-3);
  border-radius: 20px;
  border: 1px solid var(--border-color);
}

.contact__form h3 {
  text-align: center;
  margin-bottom: var(--mb-2);
  color: var(--accent-color);
}

.form__group {
  position: relative;
  margin-bottom: var(--mb-2);
}

.form__input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: var(--mb-1) var(--mb-1-25);
  color: var(--text-color);
  font-size: var(--normal-font-size);
  transition: var(--transition-fast);
  font-family: var(--body-font);
}

.form__input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form__input:focus + .form__label,
.form__input:valid + .form__label {
  top: -8px;
  left: 12px;
  font-size: var(--small-font-size);
  color: var(--accent-color);
  background: var(--primary-color);
  padding: 0 8px;
}

.form__label {
  position: absolute;
  top: 50%;
  left: var(--mb-1-25);
  transform: translateY(-50%);
  color: var(--text-color-light);
  font-size: var(--normal-font-size);
  transition: var(--transition-fast);
  pointer-events: none;
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__textarea + .form__label {
  top: var(--mb-1);
  transform: none;
}

.form__error {
  display: block;
  color: #ff4444;
  font-size: var(--small-font-size);
  margin-top: var(--mb-0-25);
  opacity: 0;
  transition: var(--transition-fast);
}

.form__error.show {
  opacity: 1;
}

.form__submit {
  width: 100%;
  margin-top: var(--mb-1);
}

/*===== FOOTER =====*/
.footer {
  background: var(--dark-gradient);
  padding: var(--mb-3) 0 var(--mb-2);
  border-top: 1px solid var(--border-color);
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--mb-2);
  margin-bottom: var(--mb-2);
}

.footer__logo {
  color: var(--accent-color);
  font-family: var(--title-font);
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1);
}

.footer__description {
  color: var(--text-color-light);
  margin-bottom: var(--mb-1-5);
  line-height: 1.7;
}

.footer__social {
  display: flex;
  gap: var(--mb-0-75);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  transition: var(--transition-fast);
}

.footer__social-link:hover {
  background: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.footer__title {
  color: var(--accent-color);
  margin-bottom: var(--mb-1);
  font-size: var(--normal-font-size);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--mb-0-5);
}

.footer__links a {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
  transition: var(--transition-fast);
}

.footer__links a:hover {
  color: var(--accent-color);
  padding-left: var(--mb-0-5);
}

.footer__bottom {
  padding-top: var(--mb-2);
  text-align: center;
}

.footer__border {
  width: 100%;
  height: 1px;
  background: var(--gold-gradient);
  margin-bottom: var(--mb-1-5);
}

.footer__copyright {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
  margin-bottom: var(--mb-0-5);
}

.footer__disclaimer {
  color: var(--text-color-light);
  font-size: var(--smaller-font-size);
  font-style: italic;
}

/*===== ANIMATIONS =====*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatAnimation {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.1;
  }
  25% {
    transform: translateY(-20px) rotate(90deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-40px) rotate(180deg);
    opacity: 0.15;
  }
  75% {
    transform: translateY(-20px) rotate(270deg);
    opacity: 0.25;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/*===== SCROLL ANIMATIONS =====*/
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: var(--transition-slow);
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

/*===== RESPONSIVE DESIGN =====*/
@media screen and (max-width: 1024px) {
  .vip__content {
    grid-template-columns: 1fr;
    gap: var(--mb-2);
    text-align: center;
  }
  
  .support__content {
    grid-template-columns: 1fr;
    gap: var(--mb-2);
  }
}

@media screen and (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition-medium);
    padding: 6rem 2rem 2rem;
  }
  
  .nav__menu.show-menu {
    right: 0;
  }
  
  .nav__list {
    flex-direction: column;
    row-gap: 2rem;
  }
  
  .nav__close,
  .nav__toggle {
    display: block;
    color: var(--accent-color);
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  .nav__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
  }
  
  .hero__title {
    font-size: var(--h1-font-size);
  }
  
  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .games__tabs {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--mb-0-75);
  }
  
  .games__tab {
    min-width: auto;
    padding: var(--mb-0-75) var(--mb-1);
  }
  
  .promotions__grid {
    grid-template-columns: 1fr;
  }
  
  .vip__card {
    width: 280px;
    height: 180px;
  }
  
  .support__options {
    gap: var(--mb-1-5);
  }
  
  .footer__content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .container {
    padding-left: var(--mb-1);
    padding-right: var(--mb-1);
  }
  
  .section {
    padding: 4rem 0 3rem;
  }
  
  .hero__title {
    font-size: 2rem;
  }
  
  .hero__subtitle {
    font-size: var(--normal-font-size);
  }
  
  .games__tabs {
    grid-template-columns: 1fr;
  }
  
  .game__card {
    padding: var(--mb-2);
  }
  
  .promotion__card {
    padding: var(--mb-2);
  }
  
  .vip__card {
    width: 250px;
    height: 160px;
  }
  
  .contact__form {
    padding: var(--mb-2);
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --text-color: #ffffff;
    --text-color-light: #e0e0e0;
    --border-color: #ffffff;
  }
}
