@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css');

:root {
  --primary-color: #C50102;
  --secondary-color: #000000;
  --third-color: #111111;
  --text-primary: #FFFFFF;
  --text-secondary: #AAAAAA;
  --accent-primary: #FF0000;
  --gold-color: #FFD700;
  --dark-gold: #B8860B;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
  --light-bg: #1a1a1a;
  --border-color: #333333;
}

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

/* Breadcrumb Navigation */
.breadcrumb {
  background: rgba(0, 0, 0, 0.8);
  padding: 10px 0;
  margin-top: 0;
}

.breadcrumb-list {
  list-style: none;
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
  content: "›";
  margin: 0 10px;
  color: var(--gold-color);
  font-weight: bold;
}

.breadcrumb-item a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--gold-color);
}

.breadcrumb-item:last-child span {
  color: var(--gold-color);
  font-weight: 600;
}

body {
  font-family: 'Ubuntu', sans-serif;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../images/background.png);
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--text-primary);
  line-height: 1.6;
}


a {
  text-decoration: none;
  color: var(--accent-primary);
}

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

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  transition: background 0.3s ease;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.navbar {
  background-color: var(--secondary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
}

.navbar .logo img {
  height: 50px;
  align-items: center;
}

.navbar-menu {
  display: flex;
  gap: 20px;
  list-style: none;
}

.navbar-menu li a {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.3s ease, color 0.3s ease;
}

.navbar-menu li a:hover {
  color: var(--primary-color);
}

.navbar .auth-buttons {
  display: flex;
  gap: 10px;
}

.btn-login {
  background-color: var(--text-primary);
  color: var(--secondary-color);
  border: 2px solid var(--text-primary);
}

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

.btn-login:hover {
  background-color: transparent;
  color: var(--text-primary);
}

.btn-register:hover {
  background-color: var(--text-primary);
  color: var(--secondary-color);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-primary) 100%);
  color: var(--text-primary);
  border: 2px solid var(--primary-color);
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(197, 1, 2, 0.3);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--primary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 1, 2, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 2px solid var(--gold-color);
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--gold-color);
  color: var(--secondary-color);
  transform: translateY(-2px);
}

.btn-large {
  padding: 15px 40px;
  font-size: 1.2rem;
}

.btn-play {
  background: linear-gradient(135deg, var(--gold-color) 0%, var(--dark-gold) 100%);
  color: var(--secondary-color);
  border: none;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 10px;
}

.btn-play:hover {
  background: linear-gradient(135deg, var(--dark-gold) 0%, var(--gold-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

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

.hero {
  position: relative;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--third-color) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 80px 50px;
  margin-top: 20px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  color: var(--text-primary);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  letter-spacing: -0.02em;
}

.hero-image {
  margin: 30px 0;
  text-align: center;
}

.hero-image img {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  margin-bottom: 40px;
  color: var(--text-primary);
  font-size: 1.25rem;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Welcome Bonus Section */
.welcome-bonus {
  margin: 60px 0;
  padding: 60px 0;
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--third-color) 100%);
  border-radius: 15px;
}

.welcome-bonus h2 {
  text-align: center;
  font-size: 2.2rem;
  color: var(--text-primary);
  margin-bottom: 30px;
  font-weight: 700;
}

.bonus-banner {
  text-align: center;
  margin: 30px 0 40px 0;
}

.bonus-banner img {
  max-width: 60%;
  width: 60%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  display: block;
  margin: 0 auto;
  text-align: center;
}

.bonus-highlight {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: center;
  background: var(--secondary-color);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  margin-bottom: 40px;
}

.bonus-amount {
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--gold-color) 100%);
  padding: 40px;
  border-radius: 15px;
  color: var(--text-primary);
}

.bonus-amount .currency {
  font-size: 3rem;
  font-weight: 700;
  vertical-align: top;
}

.bonus-amount .amount {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
}

.bonus-amount .bonus-text {
  display: block;
  font-size: 1.2rem;
  margin-top: 10px;
  font-weight: 600;
}

.bonus-details h3 {
  font-size: 1.5rem;
  color: var(--gold-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.bonus-details ul {
  list-style: none;
  padding: 0;
}

.bonus-details li {
  color: var(--text-secondary);
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.bonus-details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-color);
  font-weight: bold;
}

.bonus-cta {
  text-align: center;
}

.terms-note {
  margin-top: 15px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Bonus Carousel Section */
/* Bonus Promotions Section */
.bonus-promotions {
  margin: 60px 0;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--third-color) 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.bonus-promotions::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="promo-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23FFD700" opacity="0.1"/><circle cx="10" cy="10" r="1" fill="%23FFD700" opacity="0.05"/><circle cx="40" cy="40" r="1.5" fill="%23FFD700" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23promo-pattern)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.bonus-promotions .container {
  position: relative;
  z-index: 2;
}

.bonus-promotions h2 {
  text-align: center;
  font-size: 2.8rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.bonus-promotions .section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.2rem;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.promotion-card {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(17, 17, 17, 0.8) 100%);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.4s ease;
  position: relative;
}

.promotion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: var(--gold-color);
}

.promotion-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.1);
}

.promotion-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease;
  max-width: 100%;
  max-height: 100%;
}

.promotion-card:hover .promotion-image img {
  transform: scale(1.05);
}

.promotion-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-primary) 100%);
  color: var(--text-primary);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(197, 1, 2, 0.4);
}

.promotion-content {
  padding: 25px;
  text-align: center;
}

.promotion-content h3 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.promotion-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.promotions-cta {
  text-align: center;
  margin: 50px 0 40px 0;
}

.promotions-cta .btn {
  font-size: 1.2rem;
  padding: 15px 40px;
  border-radius: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(197, 1, 2, 0.4);
  transition: all 0.3s ease;
}

.promotions-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(197, 1, 2, 0.6);
}

/* Bonus Types Section */
.bonus-types {
  margin: 60px 0;
  padding: 60px 0;
  background: linear-gradient(135deg, var(--third-color) 0%, var(--light-bg) 100%);
  border-radius: 15px;
}

.bonus-types h2 {
  text-align: center;
  font-size: 2.2rem;
  color: var(--text-primary);
  margin-bottom: 50px;
  font-weight: 700;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.bonus-type-card {
  background: var(--secondary-color);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bonus-type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--gold-color) 100%);
}

.bonus-type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.bonus-icon {
  margin-bottom: 20px;
}

.bonus-icon i {
  font-size: 3rem;
  color: var(--gold-color);
}

.bonus-type-card h3 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.bonus-type-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.bonus-type-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.bonus-type-card li {
  color: var(--text-secondary);
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  font-size: 0.95rem;
}

.bonus-type-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold-color);
  font-weight: bold;
}

/* Bonus Games Section */
.bonus-games {
  margin: 60px 0;
  padding: 60px 0;
  background: var(--light-bg);
  border-radius: 15px;
}

.bonus-games h2 {
  text-align: center;
  font-size: 2.2rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-weight: 700;
}

.bonus-games p {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.game-card {
  background: var(--secondary-color);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.game-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.game-card h4 {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.game-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.games-cta {
  text-align: center;
  margin: 50px 0 40px 0;
}

.games-cta .btn {
  font-size: 1.2rem;
  padding: 15px 40px;
  border-radius: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(197, 1, 2, 0.4);
  transition: all 0.3s ease;
}

.games-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(197, 1, 2, 0.6);
}

/* Bonus Terms Section */
.bonus-terms {
  margin: 60px 0;
  padding: 60px 0;
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--third-color) 100%);
  border-radius: 15px;
}

.bonus-terms h2 {
  text-align: center;
  font-size: 2.2rem;
  color: var(--text-primary);
  margin-bottom: 50px;
  font-weight: 700;
}

.terms-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.terms-section {
  background: var(--secondary-color);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid var(--border-color);
}

.terms-section h3 {
  font-size: 1.3rem;
  color: var(--gold-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.terms-section ul {
  list-style: none;
  padding: 0;
}

.terms-section li {
  color: var(--text-secondary);
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.terms-section li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold-color);
  font-weight: bold;
}

.terms-note {
  background: var(--secondary-color);
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid var(--warning-color);
  text-align: center;
}

.terms-note p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.terms-note a {
  color: var(--gold-color);
  text-decoration: underline;
}

.terms-note a:hover {
  color: var(--dark-gold);
}

/* FAQ Section */
.faq {
  margin: 60px 0;
  padding: 60px 0;
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--third-color) 100%);
  border-radius: 15px;
}

.faq h2 {
  text-align: center;
  font-size: 2.2rem;
  color: var(--text-primary);
  margin-bottom: 50px;
  font-weight: 700;
}

.faq-item {
  background: var(--secondary-color);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.faq-item h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  padding-right: 30px;
}

.faq-item h3::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  color: var(--gold-color);
  transition: transform 0.3s ease;
}

.faq-item.active h3::after {
  transform: rotate(45deg);
}

.faq-item p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.faq-item.active p {
  max-height: 500px;
  opacity: 1;
  margin-top: 15px;
}

.final-thoughts {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 40px;
}

.final-thoughts-banner {
  flex: 1;
  max-width: 50%;
  overflow: hidden;
}

.final-thoughts-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 0 0 10px;
}

.final-thoughts-intro {
  flex: 1;
  max-width: 50%;
  padding: 30px;
  background-color: var(--secondary-color);
  border-radius: 0 10px 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.final-thoughts-intro h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.final-thoughts-intro p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.why-choose {
  display: block;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.why-choose-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
}

.why-choose-intro h2 {
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.why-choose-intro p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.why-choose-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.why-choose-card {
  flex: 1;
  min-width: 200px;
  background-color: var(--third-color);
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  transition: transform 0.3s ease;
}

.why-choose-card:hover {
  transform: translateY(-5px);
}

.why-choose-card h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.why-choose-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.why-choose-card i {
  display: block;
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--accent-primary);
}

.games {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px;
  border-radius: 10px;
  background-color: var(--secondary-color);
}

.games-intro h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.games-intro p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

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

.game-card {
  background-color: var(--third-color);
  border-radius: 10px;
  overflow: hidden;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.btn-play {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 20px;
  background-color: var(--accent-primary);
  color: var(--text-primary);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-play:hover {
  background-color: var(--primary-color)
}

.faq {
  margin-top: 20px;
  padding: 30px;
  border-radius: 10px;
  background-color: var(--secondary-color);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.faq-item {
  background-color: var(--third-color);
  border-radius: 10px;
  padding: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-item h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 10px;
  position: relative;
}

.faq-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.faq-item.active p {
  max-height: 500px;
  opacity: 1;
}

.footer {
  background-color: var(--secondary-color);
  padding: 40px 20px;
  margin-top: 40px;
  border-top: 1px solid var(--);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer-logo img {
  height: 50px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-primary);
}

.footer-copy p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
}

@media (max-width: 1024px) {
  .navbar {
    padding: 20px 40px;
    flex-wrap: wrap;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-image img {
    max-width: 450px;
  }

  .bonus-banner img {
    max-width: 100%;
  }

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

  .promotion-card {
    padding: 20px;
  }

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

  .promotion-content {
    padding: 20px;
  }

  .promotion-content h3 {
    font-size: 1.2rem;
  }

  .promotion-image {
    height: 150px;
  }

  .promotion-image {
    height: 120px;
  }

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

  .bonus-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

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

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

  .final-thoughts {
    flex-direction: column;
  }

  .final-thoughts-banner,
  .final-thoughts-intro {
    max-width: 100%;
    border-radius: 10px;
  }

  .final-thoughts-intro {
    padding: 20px;
  }

  .why-choose-grid {
    flex-direction: column;
  }

  .games {
    padding: 20px;
  }

  .faq {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .navbar .auth-buttons {
    margin-top: 10px;
    width: 100%;
    gap: 20px;
    justify-content: center;
  }

  .navbar-menu {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }

  .hero {
    padding: 40px 20px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-image img {
    max-width: 350px;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

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

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

  .bonus-amount .amount {
    font-size: 4rem;
  }

  .bonus-amount .currency {
    font-size: 2.5rem;
  }

  .final-thoughts-intro h3,
  .why-choose-intro h2,
  .games-intro h3,
  .faq h2 {
    font-size: 1.3rem;
  }

  .footer-container {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 15px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .navbar-menu {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-bottom: 10px;
  }

  .navbar .auth-buttons {
    justify-content: center;
    width: 100%;
  }

  .hero {
    padding: 30px 15px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-image img {
    max-width: 280px;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .bonus-amount .amount {
    font-size: 3rem;
  }

  .bonus-amount .currency {
    font-size: 2rem;
  }

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

  .final-thoughts-intro {
    padding: 15px;
  }

  .why-choose-details {
    padding: 20px;
  }

  .games {
    padding: 15px;
  }

  .faq {
    padding: 15px;
  }

  .footer {
    padding: 30px 15px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .container {
    padding: 0 15px;
  }

  .bonus-type-card,
  .terms-section {
    padding: 20px;
  }
}

/* Hero Badge */
.hero-badge {
  text-align: center;
  margin-bottom: 20px;
}

.badge-text {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: pulse 2s infinite;
}

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

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.stat-highlight {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 500;
  margin-top: 5px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 30px;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-guarantee {
  text-align: center;
  margin-top: 20px;
}

.hero-guarantee p {
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.9;
}

/* Urgency Banner */
.urgency-banner {
  background: linear-gradient(135deg, #ff0000, #ff6b35);
  padding: 15px 0;
  margin: 20px 0;
  border-radius: 10px;
  animation: urgencyPulse 3s infinite;
}

@keyframes urgencyPulse {
  0%, 100% { background: linear-gradient(135deg, #ff0000, #ff6b35); }
  50% { background: linear-gradient(135deg, #ff6b35, #ff0000); }
}

.urgency-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.urgency-text {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}

.urgency-icon {
  font-size: 1.3rem;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.3; }
}

#countdown {
  color: #ffd700;
  font-weight: 800;
  font-size: 1.2rem;
}

.btn-urgency {
  background: white;
  color: #ff0000;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.btn-urgency:hover {
  background: transparent;
  color: white;
  transform: scale(1.05);
}

/* Mid-Content CTA */
.mid-cta {
  background: linear-gradient(135deg, rgba(197, 1, 2, 0.9), rgba(255, 0, 0, 0.9));
  padding: 40px;
  border-radius: 15px;
  margin: 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mid-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23FFD700" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
  opacity: 0.5;
  z-index: 1;
}

.mid-cta .cta-content {
  position: relative;
  z-index: 2;
}

.mid-cta h3 {
  font-size: 2rem;
  color: white;
  margin-bottom: 10px;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.mid-cta p {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

/* Final CTA Section */
.final-cta-section {
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--third-color) 100%);
  padding: 80px 0;
  margin: 60px 0;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="final-cta-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%23FFD700" opacity="0.1"/><circle cx="5" cy="5" r="1" fill="%23FFD700" opacity="0.05"/><circle cx="35" cy="35" r="1.5" fill="%23FFD700" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23final-cta-pattern)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.final-cta-section .container {
  position: relative;
  z-index: 2;
}

.final-cta-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.final-cta-section p {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cta-features .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
}

.cta-features .feature-item i {
  color: var(--gold-color);
  font-size: 1.2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.urgency-text {
  text-align: center;
  color: var(--accent-primary);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Mobile Responsiveness for Bonus Page */
@media (max-width: 768px) {
  .hero-stats {
    gap: 20px;
  }
  
  .stat-highlight {
    padding: 12px 16px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .urgency-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .mid-cta {
    padding: 30px 20px;
  }
  
  .mid-cta h3 {
    font-size: 1.5rem;
  }
  
  .final-cta-section h2 {
    font-size: 2rem;
  }
  
  .cta-features {
    flex-direction: column;
    gap: 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Live Winners Feed for Bonus Page */
.live-winners-feed {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  padding: 60px 0;
  margin: 40px 0;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.live-winners-feed::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="winners-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23FFD700" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23winners-pattern)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.live-winners-feed .container {
  position: relative;
  z-index: 2;
}

.winners-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.winners-header h2 {
  color: white;
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 0, 0, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid #ff0000;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #ff0000;
  border-radius: 50%;
  animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.live-text {
  color: #ff0000;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.winners-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px 25px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--gold-color);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 5px;
}

.stat-label {
  display: block;
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.9;
}

.winners-feed {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 30px;
  max-height: 400px;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.winner-notification {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border-left: 4px solid var(--gold-color);
  transition: all 0.3s ease;
  animation: slideInRight 0.5s ease-out;
}

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

.winner-notification:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
  border-left-color: #ff6b35;
}

.winner-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--gold-color);
}

.winner-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.winner-details {
  flex: 1;
  min-width: 0;
}

.winner-name {
  color: white;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2px;
}

.winner-location {
  color: #ccc;
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.winner-game {
  color: var(--gold-color);
  font-size: 0.8rem;
  font-weight: 600;
}

.winner-amount {
  color: #00ff88;
  font-weight: 800;
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  margin-right: 10px;
}

.winner-time {
  color: #999;
  font-size: 0.8rem;
  white-space: nowrap;
}

.live-activity {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: white;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.5s ease-out;
}

.activity-item:last-child {
  border-bottom: none;
}

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

.activity-icon {
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.activity-text {
  flex: 1;
  color: #e0e0e0;
}

.activity-time {
  color: #999;
  font-size: 0.8rem;
  white-space: nowrap;
}

.winners-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 0, 0, 0.2));
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.3);
}

.winners-cta h3 {
  color: white;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.winners-cta p {
  color: #e0e0e0;
  font-size: 1.1rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

/* Mobile Responsiveness for Live Winners Feed on Bonus Page */
@media (max-width: 768px) {
  .winners-header {
    flex-direction: column;
    text-align: center;
  }
  
  .winners-header h2 {
    font-size: 1.8rem;
  }
  
  .winners-stats {
    gap: 20px;
  }
  
  .stat-item {
    padding: 15px 20px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .winner-notification {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .winner-details {
    order: 2;
  }
  
  .winner-amount {
    order: 1;
    font-size: 1.5rem;
    margin-right: 0;
    margin-bottom: 5px;
  }
  
  .winner-time {
    order: 3;
  }
  
  .activity-item {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
  
  .activity-text {
    order: 1;
  }
  
  .activity-time {
    order: 2;
  }
}

/* Bonus Wheel Section */
.bonus-wheel-section {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  padding: 80px 0;
  margin: 60px 0;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.bonus-wheel-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="wheel-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23FFD700" opacity="0.1"/><circle cx="5" cy="5" r="1" fill="%23FFD700" opacity="0.05"/><circle cx="25" cy="25" r="1.5" fill="%23FFD700" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23wheel-pattern)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.bonus-wheel-section .container {
  position: relative;
  z-index: 2;
}

.wheel-header {
  text-align: center;
  margin-bottom: 50px;
}

.wheel-header h2 {
  color: white;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.wheel-subtitle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.wheel-timer {
  color: #ffd700;
  font-weight: 700;
  font-size: 1.1rem;
  background: rgba(255, 215, 0, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

#wheelCountdown {
  color: #ff6b35;
  font-weight: 800;
  font-size: 1.2rem;
}

.wheel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.wheel-wrapper {
  position: relative;
  width: 300px;
  height: 300px;
}

.wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border: 8px solid #ffd700;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  transition: transform 4s cubic-bezier(0.23, 1, 0.32, 1);
}

.wheel-segment {
  position: absolute;
  width: 50%;
  height: 50%;
  transform-origin: 100% 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.wheel-segment:nth-child(1) {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  transform: rotate(0deg);
}

.wheel-segment:nth-child(2) {
  background: linear-gradient(135deg, #00d4aa, #00a085);
  transform: rotate(60deg);
}

.wheel-segment:nth-child(3) {
  background: linear-gradient(135deg, #e91e63, #c2185b);
  transform: rotate(120deg);
}

.wheel-segment:nth-child(4) {
  background: linear-gradient(135deg, #673ab7, #512da8);
  transform: rotate(180deg);
}

.wheel-segment:nth-child(5) {
  background: linear-gradient(135deg, #ff9800, #f57c00);
  transform: rotate(240deg);
}

.wheel-segment:nth-child(6) {
  background: linear-gradient(135deg, #4caf50, #388e3c);
  transform: rotate(300deg);
}

.prize-amount {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.prize-label {
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.9;
}

.wheel-pointer {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 25px solid #ffd700;
  z-index: 10;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.wheel-controls {
  text-align: center;
}

.spin-button {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  border: none;
  padding: 20px 40px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 20px;
  position: relative;
  overflow: hidden;
}

.spin-button:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.spin-button:disabled {
  background: #666;
  cursor: not-allowed;
  opacity: 0.6;
}

.spin-button:disabled:hover {
  transform: none;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.spin-icon {
  font-size: 1.5rem;
  animation: spin 2s linear infinite;
}

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

.spin-requirements {
  color: #ccc;
  font-size: 0.9rem;
  max-width: 250px;
  margin: 0 auto;
}

.recent-winners {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.recent-winners h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.winners-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.winner-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border-left: 4px solid var(--gold-color);
  transition: all 0.3s ease;
  animation: slideInRight 0.5s ease-out;
}

.winner-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.winner-avatar {
  width: 40px;
  height: 40px;
  background: var(--gold-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.winner-info {
  flex: 1;
}

.winner-name {
  color: white;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2px;
}

.winner-prize {
  color: #00ff88;
  font-size: 0.9rem;
  font-weight: 600;
}

.winner-time {
  color: #999;
  font-size: 0.8rem;
  white-space: nowrap;
}

.wheel-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 0, 0, 0.2));
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.3);
}

.wheel-cta h3 {
  color: white;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.wheel-cta p {
  color: #e0e0e0;
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.wheel-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.wheel-features .feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.wheel-features .feature-item i {
  color: var(--gold-color);
  font-size: 1.1rem;
}

/* Mobile Responsiveness for Bonus Wheel */
@media (max-width: 768px) {
  .wheel-header h2 {
    font-size: 2rem;
  }
  
  .wheel-subtitle {
    flex-direction: column;
    gap: 15px;
  }
  
  .wheel-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .wheel-wrapper {
    width: 250px;
    height: 250px;
  }
  
  .prize-amount {
    font-size: 1rem;
  }
  
  .prize-label {
    font-size: 0.7rem;
  }
  
  .spin-button {
    padding: 15px 30px;
    font-size: 1rem;
  }
  
  .wheel-cta h3 {
    font-size: 1.5rem;
  }
  
  .wheel-features {
    flex-direction: column;
    gap: 20px;
  }
  
  .winner-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .winner-info {
    order: 1;
  }
  
  .winner-time {
    order: 2;
  }
}
