:root {
  --primary-red: #c8102e;
  --burgundy: #8b0000;
  --dark-red: #6b0000;
  --white: #ffffff;
  --dark: #1f1f1f;
  --light-gray: #f5f5f5;
  --gradient-primary: linear-gradient(135deg, #c8102e 0%, #8b0000 100%);
  --gradient-secondary: linear-gradient(135deg, #8b0000 0%, #6b0000 100%);
  --box-shadow: 0 10px 30px rgba(200, 16, 46, 0.2);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--white);
  overflow-x: hidden;
}

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

.age-verification-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.5s ease;
}

.age-verification-modal.hidden {
  display: none;
}

.age-modal-wrapper {
  padding: 20px;
}

.age-modal-card {
  background: var(--white);
  border-radius: 20px;
  padding: 50px 40px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.6s ease;
}

.age-icon-wrapper {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  animation: pulse 2s infinite;
}

.age-icon-wrapper i {
  font-size: 50px;
  color: var(--white);
}

.age-modal-card h2 {
  font-size: 28px;
  margin-bottom: 15px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.age-notice {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.8;
}

.age-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.btn-confirm-age,
.btn-decline-age {
  flex: 1;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-confirm-age {
  background: var(--gradient-primary);
  color: var(--white);
}

.btn-confirm-age:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(200, 16, 46, 0.4);
}

.btn-decline-age {
  background: #ddd;
  color: #666;
}

.btn-decline-age:hover {
  background: #ccc;
}

.age-footer-text {
  font-size: 13px;
  color: #999;
}

.age-footer-text a {
  color: var(--primary-red);
  text-decoration: none;
}

.navbar {
  background: rgba(31, 31, 31, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  transition: var(--transition);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: var(--white) !important;
  text-decoration: none;
}

.navbar-brand i {
  background: var(--gradient-primary);
  padding: 10px;
  border-radius: 10px;
  font-size: 20px;
}

.nav-link {
  color: var(--white) !important;
  font-weight: 500;
  padding: 10px 20px !important;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-red) !important;
}

.btn-nav-login,
.btn-nav-register {
  border-radius: 50px;
  margin-left: 10px;
}

.btn-nav-login {
  background: transparent;
  border: 2px solid var(--primary-red);
}

.btn-nav-login:hover {
  background: var(--primary-red);
  color: var(--white) !important;
}

.btn-nav-register {
  background: var(--gradient-primary);
}

.btn-nav-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(200, 16, 46, 0.4);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--gradient-primary);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1579546929518-9e396f3cc809?w=1920")
    center/cover;
  opacity: 0.1;
}

.hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.shape-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease;
}

.gradient-text {
  background: linear-gradient(135deg, #ffd700 0%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.btn-hero-primary,
.btn-hero-secondary {
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-hero-primary {
  background: var(--white);
  color: var(--primary-red);
}

.btn-hero-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-hero-secondary:hover {
  background: var(--white);
  color: var(--primary-red);
}

.hero-trust-badges {
  display: flex;
  gap: 30px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.trust-badge i {
  font-size: 24px;
}

.hero-image {
  position: relative;
  z-index: 2;
  animation: fadeInRight 1s ease;
}

.hero-image img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.scroll-down-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 30px;
  animation: bounce 2s infinite;
  cursor: pointer;
}

.jackpot-alert {
  background: var(--dark);
  padding: 25px 0;
}

.jackpot-alert-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.jackpot-icon {
  font-size: 40px;
  color: var(--primary-red);
  animation: pulse 1.5s infinite;
}

.jackpot-info {
  flex: 1;
}

.jackpot-label {
  display: block;
  font-size: 14px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.jackpot-amount {
  display: block;
  font-size: 36px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-jackpot-play {
  padding: 15px 35px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.btn-jackpot-play:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(200, 16, 46, 0.4);
}

.games-section {
  padding: 100px 0;
  background: var(--light-gray);
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
}

.game-card {
  background: var(--white);
  border-radius: 25px;
  padding: 40px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 3px solid transparent;
}

.game-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
  border-color: var(--primary-red);
}

.featured-card {
  border-color: var(--primary-red);
  transform: scale(1.05);
}

.featured-card::before {
  height: 8px;
}

.game-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--gradient-secondary);
  color: var(--white);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.popular-badge {
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  animation: pulse 2s infinite;
}

.game-logo {
  width: 150px;
  height: 150px;
  margin: 0 auto 25px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.game-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-name {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.game-tagline {
  font-size: 15px;
  color: #666;
  margin-bottom: 25px;
}

.game-details {
  margin: 25px 0;
  text-align: left;
}

.game-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--light-gray);
  border-radius: 10px;
  margin-bottom: 10px;
  font-size: 14px;
}

.game-detail-item i {
  color: var(--primary-red);
  font-size: 18px;
}

.game-jackpot-display {
  background: var(--gradient-primary);
  padding: 20px;
  border-radius: 15px;
  margin: 25px 0;
}

.game-jackpot-display .jackpot-label {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.game-jackpot-display .jackpot-value {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  margin-top: 5px;
}

.btn-play-game {
  width: 100%;
  padding: 15px;
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-play-game:hover {
  background: var(--gradient-primary);
  transform: scale(1.05);
}

.btn-featured {
  background: var(--gradient-primary);
}

.btn-featured:hover {
  background: var(--dark);
}

.winners-section {
  padding: 100px 0;
  background: var(--white);
}

.winner-card {
  background: var(--light-gray);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.winner-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
}

.winner-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 50px;
}

.winner-amount {
  font-size: 32px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.winner-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}

.winner-location {
  color: #666;
  margin-bottom: 20px;
  font-size: 14px;
}

.winner-quote {
  font-style: italic;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.winner-game-badge {
  display: inline-block;
  padding: 10px 20px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

.trust-section {
  padding: 80px 0;
  background: var(--dark);
}

.trust-item {
  text-align: center;
  color: var(--white);
  padding: 30px;
  transition: var(--transition);
}

.trust-item:hover {
  transform: translateY(-10px);
}

.trust-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 36px;
}

.trust-item h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.trust-item p {
  color: #999;
  font-size: 14px;
}

.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-brand i {
  background: var(--gradient-primary);
  padding: 10px;
  border-radius: 10px;
  font-size: 20px;
}

.footer-description {
  color: #999;
  margin-bottom: 25px;
  line-height: 1.8;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gradient-primary);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-links,
.footer-contact {
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #999;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-red);
  padding-left: 5px;
}

.footer-contact li {
  color: #999;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact i {
  color: var(--primary-red);
  margin-top: 3px;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  color: #999;
  font-size: 14px;
  margin-bottom: 5px;
}

.footer-domain {
  color: var(--primary-red);
  font-weight: 600;
}

.footer-badges {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.footer-badges img {
  height: 40px;
  border-radius: 5px;
}

.responsible-gaming-notice {
  background: rgba(200, 16, 46, 0.1);
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid var(--primary-red);
  margin-top: 20px;
  text-align: center;
  color: #ccc;
}

.responsible-gaming-notice i {
  color: var(--primary-red);
}

.responsible-gaming-notice a {
  color: var(--primary-red);
  text-decoration: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

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

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

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

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

@media (max-width: 992px) {
  .hero-title {
    font-size: 42px;
  }

  .hero-cta-buttons {
    flex-direction: column;
  }

  .hero-trust-badges {
    flex-direction: column;
    gap: 15px;
  }

  .jackpot-alert-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-badges {
    justify-content: center;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

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

  .jackpot-amount {
    font-size: 28px;
  }

  .game-card {
    margin-bottom: 30px;
  }

  .featured-card {
    transform: scale(1);
  }
}

.hidden {
  display: none !important;
}
