/* FUCKSPIN Casino - Authentic Casino Website Style */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');

:root {
  /* Casino Color Palette */
  --primary-red: #DC143C;
  --dark-red: #8B0000;
  --gold: #FFD700;
  --dark-gold: #B8860B;
  --black: #000000;
  --dark-gray: #1A1A1A;
  --medium-gray: #333333;
  --light-gray: #666666;
  --white: #FFFFFF;
  --green: #00AA00;
  --blue: #0066CC;
  
  /* Background Gradients */
  --bg-gradient: linear-gradient(135deg, #1A1A1A 0%, #333333 50%, #1A1A1A 100%);
  --red-gradient: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
  --gold-gradient: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
}

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

body {
  font-family: 'Roboto', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.4;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Top Header */
.top-header {
  background: var(--red-gradient);
  padding: 8px 0;
  border-bottom: 2px solid var(--gold);
}

.top-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 40px;
  width: auto;
}

.brand-text {
  font-size: 24px;
  font-weight: 900;
  color: var(--gold);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hot-banner {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--gold-gradient);
  padding: 8px 15px;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.hot-text {
  font-weight: 700;
  color: var(--black);
  font-size: 14px;
}

.btn-hot {
  background: var(--black);
  color: var(--gold);
  padding: 6px 12px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  transition: all 0.3s ease;
}

.btn-hot:hover {
  background: var(--white);
  color: var(--black);
  transform: scale(1.05);
}

/* Main Navigation */
.main-nav {
  background: var(--dark-gray);
  border-bottom: 1px solid var(--primary-red);
  padding: 12px 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  justify-content: center;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 8px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.nav-link:hover,
.nav-link.active {
  background: var(--primary-red);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(220, 20, 60, 0.4);
}

/* Tagline Banner */
.tagline-banner {
  background: var(--bg-gradient);
  padding: 15px 0;
  text-align: center;
  border-bottom: 2px solid var(--primary-red);
}

.tagline-banner h1 {
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  text-transform: uppercase;
}

/* Main Content Layout */
.main-content {
  background: var(--black);
  min-height: 100vh;
  padding: 20px 0;
}

.content-layout {
  display: grid;
  grid-template-columns: 250px 1fr 250px;
  gap: 20px;
  align-items: start;
}

/* Sidebars */
.left-sidebar,
.right-sidebar {
  background: var(--dark-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 15px;
}

.sidebar-section {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--medium-gray);
}

.sidebar-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.sidebar-section h3 {
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* Payment Methods */
.payment-methods p {
  color: var(--white);
  font-size: 12px;
  margin-bottom: 10px;
}

.bank-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 10px;
}

.bank-logo {
  background: var(--white);
  color: var(--black);
  padding: 5px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}

.service-badge {
  background: var(--green);
  color: var(--white);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  display: inline-block;
}

/* Live Transactions */
.live-indicator {
  background: var(--green);
  color: var(--white);
  padding: 2px 6px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 700;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.transaction-list {
  max-height: 200px;
  overflow-y: auto;
}

.transaction-item {
  background: linear-gradient(135deg, var(--medium-gray), #2a2a2a);
  margin-bottom: 8px;
  padding: 10px 8px;
  border-radius: 6px;
  border-left: 3px solid var(--primary-red);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  animation: slideIn 0.5s ease;
}

.transaction-item.withdraw {
  border-left-color: var(--green);
}

.transaction-type {
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.transaction-details {
  font-size: 11px;
  color: var(--white);
}

.account {
  font-weight: 700;
}

.amount {
  color: var(--green);
  font-weight: 600;
  font-size: 8px;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.1px;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
}

.game {
  color: var(--light-gray);
  font-size: 10px;
}

/* VIP Partnership */
.vip-partnership {
  text-align: center;
}

.partnership-content {
  background: var(--medium-gray);
  padding: 15px;
  border-radius: 8px;
  border: 1px solid var(--gold);
}

.handshake-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.partnership-content p {
  color: var(--white);
  font-size: 12px;
  line-height: 1.4;
}

/* Share Bonus */
.share-bonus {
  text-align: center;
}

.bonus-content {
  background: var(--medium-gray);
  padding: 15px;
  border-radius: 8px;
  border: 1px solid var(--primary-red);
}

.rabbit-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.bonus-content p {
  color: var(--white);
  font-size: 12px;
  line-height: 1.4;
}

/* Center Content */
.center-content {
  background: var(--dark-gray);
  border-radius: 8px;
  padding: 20px;
  border: 1px solid var(--primary-red);
}

/* Promotional Banners */
.promo-banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 25px;
}

.promo-banner {
  background: var(--red-gradient);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-banner::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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.3;
}

.banner-content {
  position: relative;
  z-index: 1;
}

.character {
  font-size: 40px;
  margin-bottom: 10px;
}

.promo-banner h2 {
  color: var(--gold);
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 5px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.promo-banner p {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

/* Games Section */
.games-section h2 {
  color: var(--gold);
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

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

.game-card {
  background: var(--medium-gray);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--primary-red);
  transition: all 0.3s ease;
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(220, 20, 60, 0.3);
  border-color: var(--gold);
}

.game-thumbnail {
  position: relative;
  width: 100%;
  height: 120px;
  overflow: hidden;
}

.game-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-card:hover .game-thumbnail img {
  transform: scale(1.1);
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.play-btn {
  background: var(--gold-gradient);
  color: var(--black);
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.play-btn:hover {
  background: var(--white);
  transform: scale(1.1);
}

.game-card h3 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 10px 5px;
  text-align: center;
  text-transform: uppercase;
}

.game-card p {
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  padding: 0 10px 10px;
  text-align: center;
}

/* Right Sidebar */
.account-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-login,
.btn-register {
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-login {
  background: var(--medium-gray);
  color: var(--white);
  border: 2px solid var(--primary-red);
}

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

.btn-register {
  background: var(--red-gradient);
  color: var(--white);
  border: 2px solid var(--gold);
}

.btn-register:hover {
  background: var(--gold-gradient);
  color: var(--black);
}

/* Balance Info */
.balance-info {
  margin-bottom: 15px;
}

.balance-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  padding: 5px 0;
  border-bottom: 1px solid var(--medium-gray);
}

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

.label {
  color: var(--light-gray);
  font-size: 12px;
}

.value {
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
}

.balance-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.btn-action {
  background: var(--primary-red);
  color: var(--white);
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 11px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.btn-action:hover {
  background: var(--gold);
  color: var(--black);
}

/* Leaderboard */
.leaderboard-content {
  display: flex;
  justify-content: space-around;
  background: var(--medium-gray);
  padding: 15px;
  border-radius: 8px;
  border: 1px solid var(--gold);
}

.rank {
  background: var(--gold-gradient);
  color: var(--black);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
}

/* Footer */
.footer {
  background: var(--dark-gray);
  border-top: 2px solid var(--primary-red);
  padding: 20px 0;
  margin-top: 30px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  height: 30px;
  width: auto;
}

.footer-logo span {
  color: var(--gold);
  font-weight: 900;
  font-size: 18px;
}

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

.footer-links a {
  color: var(--light-gray);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s ease;
}

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

.footer-text {
  color: var(--light-gray);
  font-size: 11px;
  text-align: center;
  width: 100%;
  margin-top: 10px;
}

/* Animations */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .content-layout {
    grid-template-columns: 200px 1fr 200px;
    gap: 15px;
  }
}

@media (max-width: 992px) {
  .content-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .left-sidebar,
  .right-sidebar {
    order: 2;
  }
  
  .center-content {
    order: 1;
  }
  
  .games-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-menu {
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .nav-link {
    font-size: 14px;
    padding: 6px 12px;
  }
  
  .tagline-banner h1 {
    font-size: 16px;
  }
  
  .promo-banners {
    grid-template-columns: 1fr;
  }
  
  .games-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
  
  .top-header-content {
    flex-direction: column;
    gap: 10px;
  }
  
  .nav-menu {
    flex-direction: column;
    gap: 10px;
  }
  
  .games-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
  
  .game-card h3 {
    font-size: 12px;
  }
  
  .game-card p {
    font-size: 10px;
  }
}

/* Expandable Section */
.expandable-section {
  background: var(--medium-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  margin-top: 20px;
  overflow: hidden;
}

.expandable-header {
  background: var(--red-gradient);
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  user-select: none;
}

.expandable-header:hover {
  background: linear-gradient(135deg, #FF6B35 0%, #DC143C 100%);
  box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}

.expandable-header.expanded {
  background: var(--gold-gradient);
  color: var(--black);
}

.expandable-header h3 {
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.expandable-header.expanded h3 {
  color: var(--black);
  text-shadow: none;
}

.expand-icon {
  color: var(--white);
  font-size: 20px;
  transition: transform 0.3s ease;
}

.expandable-header.expanded .expand-icon {
  color: var(--black);
}

.expandable-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--dark-gray);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 25px;
}

.info-card {
  background: var(--medium-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(220, 20, 60, 0.3);
  border-color: var(--gold);
}

.info-icon {
  font-size: 40px;
  margin-bottom: 15px;
  display: block;
}

.info-card h4 {
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.info-card p {
  color: var(--white);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.additional-info {
  background: var(--medium-gray);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 25px;
  margin: 0 25px 25px;
}

.additional-info h4 {
  color: var(--gold);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
  text-transform: uppercase;
}

.additional-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.additional-info li {
  color: var(--white);
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--dark-gray);
  display: flex;
  align-items: center;
  gap: 10px;
}

.additional-info li:last-child {
  border-bottom: none;
}

.additional-info li::before {
  content: '✅';
  font-size: 16px;
  flex-shrink: 0;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark-gray);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-red);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* Testimonials Section */
.testimonials-section {
  background: var(--medium-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 25px;
  margin-top: 20px;
}

.testimonials-section h2 {
  color: var(--gold);
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
}

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

.testimonial-card {
  background: var(--dark-gray);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 20px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.stars {
  font-size: 18px;
  margin-bottom: 15px;
  text-align: center;
}

.testimonial-content p {
  color: var(--white);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial-author {
  text-align: center;
}

.testimonial-author strong {
  color: var(--gold);
  font-size: 16px;
  display: block;
  margin-bottom: 5px;
}

.testimonial-author span {
  color: var(--light-gray);
  font-size: 12px;
}

/* Payment Methods Section */
.payment-section {
  background: var(--medium-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 25px;
  margin-top: 20px;
}

.payment-section h2 {
  color: var(--gold);
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
}

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

.payment-method {
  background: var(--dark-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.payment-method:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 8px 20px rgba(220, 20, 60, 0.3);
}

.payment-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.payment-method h3 {
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.payment-method p {
  color: var(--white);
  font-size: 14px;
  margin: 0;
}

.payment-info {
  background: var(--dark-gray);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 15px;
  text-align: center;
}

.payment-info p {
  color: var(--white);
  font-size: 14px;
  margin: 5px 0;
}

/* How to Play Section */
.how-to-play-section {
  background: var(--medium-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 25px;
  margin-top: 20px;
}

.how-to-play-section h2 {
  color: var(--gold);
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
}

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

.step-card {
  background: var(--dark-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 8px 20px rgba(220, 20, 60, 0.3);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: var(--black);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  border: 3px solid var(--dark-gray);
}

.step-card h3 {
  color: var(--gold);
  font-size: 18px;
  font-weight: 700;
  margin: 20px 0 15px;
  text-transform: uppercase;
}

.step-card p {
  color: var(--white);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Terms Section */
.terms-section {
  background: var(--medium-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  margin-top: 20px;
  overflow: hidden;
}

.terms-header {
  background: var(--red-gradient);
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  user-select: none;
}

.terms-header:hover {
  background: linear-gradient(135deg, #FF6B35 0%, #DC143C 100%);
  box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}

.terms-header.expanded {
  background: var(--gold-gradient);
  color: var(--black);
}

.terms-header h2 {
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.terms-header.expanded h2 {
  color: var(--black);
  text-shadow: none;
}

.terms-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--dark-gray);
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 25px;
}

.terms-card {
  background: var(--medium-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 20px;
}

.terms-card h3 {
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

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

.terms-card li {
  color: var(--white);
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--dark-gray);
  position: relative;
  padding-left: 20px;
}

.terms-card li:last-child {
  border-bottom: none;
}

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

/* Contact Section */
.contact-section {
  background: var(--medium-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 25px;
  margin-top: 20px;
}

.contact-section h2 {
  color: var(--gold);
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
}

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

.contact-method {
  background: var(--dark-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 8px 20px rgba(220, 20, 60, 0.3);
}

.contact-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.contact-method h3 {
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.contact-method p {
  color: var(--white);
  font-size: 14px;
  margin-bottom: 15px;
}

.contact-btn {
  background: var(--red-gradient);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
}

.contact-btn:hover {
  background: var(--gold-gradient);
  color: var(--black);
  transform: scale(1.05);
}

/* News Section */
.news-section {
  background: var(--medium-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 25px;
  margin-top: 20px;
}

.news-section h2 {
  color: var(--gold);
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
}

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

.news-card {
  background: var(--dark-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 20px;
  transition: all 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 8px 20px rgba(220, 20, 60, 0.3);
}

.news-date {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.news-card h3 {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-card p {
  color: var(--light-gray);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.news-link {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: color 0.3s ease;
}

.news-link:hover {
  color: var(--gold);
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .testimonials-grid,
  .payment-grid,
  .steps-grid,
  .terms-grid,
  .contact-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-section,
  .payment-section,
  .how-to-play-section,
  .terms-section,
  .contact-section,
  .news-section {
    padding: 20px;
  }
  
  .step-card {
    padding: 20px;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

/* Mini Slot Game for Sidebar */
.mini-slot-game {
  background: var(--dark-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 15px;
}

.mini-slot-game h3 {
  color: var(--gold);
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 15px;
  text-align: center;
  text-transform: uppercase;
}

.mini-slot-machine {
  background: var(--medium-gray);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 15px;
}

.mini-slot-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--primary-red);
}

.mini-game-title {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.mini-balance {
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
}

.mini-slot-reels {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 15px;
  padding: 10px;
  background: var(--black);
  border-radius: 6px;
  border: 1px solid var(--primary-red);
}

.mini-reel {
  width: 40px;
  height: 60px;
  background: var(--white);
  border: 1px solid var(--gold);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.mini-symbol {
  width: 100%;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-bottom: 1px solid var(--light-gray);
  background: var(--white);
}

.mini-symbol:last-child {
  border-bottom: none;
}

.mini-reel.spinning .mini-symbol {
  animation: miniSpin 0.1s linear infinite;
}

@keyframes miniSpin {
  0% { transform: translateY(0); }
  100% { transform: translateY(-20px); }
}

.mini-bet-controls {
  margin-bottom: 12px;
}

.mini-bet-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.mini-bet-btn {
  background: var(--dark-gray);
  color: var(--white);
  border: 1px solid var(--primary-red);
  padding: 6px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.mini-bet-btn:hover {
  background: var(--primary-red);
  color: var(--white);
  transform: scale(1.05);
}

.mini-bet-btn.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.mini-spin-controls {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.mini-spin-btn {
  flex: 2;
  background: var(--red-gradient);
  color: var(--white);
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 900;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.mini-spin-btn:hover {
  background: var(--gold-gradient);
  color: var(--black);
  transform: translateY(-1px);
}

.mini-spin-btn:disabled {
  background: var(--light-gray);
  color: var(--dark-gray);
  cursor: not-allowed;
  transform: none;
}

.mini-max-btn {
  flex: 1;
  background: var(--gold-gradient);
  color: var(--black);
  border: none;
  padding: 8px 6px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.mini-max-btn:hover {
  background: var(--white);
  transform: translateY(-1px);
}

.mini-win-info {
  text-align: center;
}

.mini-win {
  color: var(--gold);
  font-weight: 700;
  font-size: 11px;
}

/* Voucher Section */
.voucher-section {
  background: var(--dark-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 15px;
}

.voucher-section h3 {
  color: var(--gold);
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 15px;
  text-align: center;
  text-transform: uppercase;
}

.voucher-timer {
  text-align: center;
  margin-bottom: 15px;
  padding: 10px;
  background: var(--black);
  border-radius: 6px;
  border: 1px solid var(--gold);
}

.timer-display {
  color: var(--gold);
  font-size: 18px;
  font-weight: 900;
  font-family: 'Courier New', monospace;
}

.voucher-timer p {
  color: var(--white);
  font-size: 11px;
  margin: 5px 0 0;
}

.voucher-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}

.voucher-btn {
  background: var(--medium-gray);
  border: 1px solid var(--primary-red);
  border-radius: 6px;
  padding: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.voucher-btn:hover {
  background: var(--primary-red);
  transform: translateX(3px);
}

.voucher-icon {
  font-size: 16px;
}

.voucher-text {
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  flex: 1;
}

.voucher-status {
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.voucher-info p {
  color: var(--light-gray);
  font-size: 10px;
  text-align: center;
  margin: 0;
}

/* Live Chat Widget */
.live-chat-widget {
  background: var(--dark-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 15px;
}

.live-chat-widget h3 {
  color: var(--gold);
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 15px;
  text-align: center;
  text-transform: uppercase;
}

.chat-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 8px;
  background: var(--black);
  border-radius: 6px;
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}

.status-indicator.online {
  background: var(--green);
}

.chat-status span {
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
}

.chat-messages {
  max-height: 120px;
  overflow-y: auto;
  margin-bottom: 10px;
  padding: 8px;
  background: var(--black);
  border-radius: 6px;
}

.chat-message {
  margin-bottom: 8px;
  padding: 6px;
  border-radius: 4px;
}

.chat-message.support {
  background: var(--primary-red);
}

.message-text {
  color: var(--white);
  font-size: 11px;
  display: block;
  margin-bottom: 2px;
}

.message-time {
  color: var(--light-gray);
  font-size: 9px;
}

.chat-input-area {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.chat-input-area input {
  flex: 1;
  background: var(--black);
  border: 1px solid var(--primary-red);
  border-radius: 4px;
  padding: 6px 8px;
  color: var(--white);
  font-size: 11px;
}

.chat-input-area input::placeholder {
  color: var(--light-gray);
}

.send-btn {
  background: var(--primary-red);
  color: var(--white);
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.send-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.chat-actions {
  display: flex;
  gap: 6px;
}

.chat-action-btn {
  flex: 1;
  background: var(--medium-gray);
  color: var(--white);
  border: 1px solid var(--primary-red);
  border-radius: 4px;
  padding: 6px 8px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

/* Lucky Wheel */
.lucky-wheel-section {
  background: var(--dark-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 15px;
}

.lucky-wheel-section h3 {
  color: var(--gold);
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 15px;
  text-align: center;
  text-transform: uppercase;
}

.wheel-container {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 15px;
}

.wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border: 3px solid var(--gold);
  transition: transform 3s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

.wheel-segment {
  position: absolute;
  width: 50%;
  height: 50%;
  transform-origin: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--black);
  text-align: center;
}

.wheel-segment:nth-child(1) { background: var(--primary-red); transform: rotate(0deg); }
.wheel-segment:nth-child(2) { background: var(--gold); transform: rotate(60deg); }
.wheel-segment:nth-child(3) { background: var(--primary-red); transform: rotate(120deg); }
.wheel-segment:nth-child(4) { background: var(--gold); transform: rotate(180deg); }
.wheel-segment:nth-child(5) { background: var(--primary-red); transform: rotate(240deg); }
.wheel-segment:nth-child(6) { background: var(--gold); transform: rotate(300deg); }

.wheel-pointer {
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 15px solid var(--gold);
  z-index: 10;
}

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

.spin-wheel-btn {
  background: var(--red-gradient);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.spin-wheel-btn:hover {
  background: var(--gold-gradient);
  color: var(--black);
  transform: scale(1.05);
}

.spin-wheel-btn:disabled {
  background: var(--light-gray);
  color: var(--dark-gray);
  cursor: not-allowed;
  transform: none;
}

.wheel-info p {
  color: var(--white);
  font-size: 11px;
  margin: 0;
}

/* Jackpot Display */
.jackpot-display {
  background: var(--dark-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 15px;
}

.jackpot-display h3 {
  color: var(--gold);
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 15px;
  text-align: center;
  text-transform: uppercase;
}

.jackpot-amount {
  text-align: center;
  margin-bottom: 10px;
  padding: 8px;
  background: var(--black);
  border-radius: 6px;
  border: 1px solid var(--gold);
}

.jackpot-number {
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
  letter-spacing: 0.5px;
  line-height: 1.2;
  word-break: break-all;
}

.jackpot-timer {
  text-align: center;
  margin-bottom: 10px;
}

.timer-label {
  color: var(--white);
  font-size: 11px;
  display: block;
  margin-bottom: 4px;
}

.timer-value {
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  font-family: 'Courier New', monospace;
}

.jackpot-info p {
  color: var(--light-gray);
  font-size: 10px;
  text-align: center;
  margin: 0;
}

/* Hot Games */
.hot-games-section {
  background: var(--dark-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 15px;
}

.hot-games-section h3 {
  color: var(--gold);
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 15px;
  text-align: center;
  text-transform: uppercase;
}

.hot-games-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hot-game-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: var(--medium-gray);
  border-radius: 6px;
  border: 1px solid var(--primary-red);
  transition: all 0.3s ease;
}

.hot-game-item:hover {
  background: var(--primary-red);
  transform: translateX(3px);
}

.game-icon {
  font-size: 16px;
}

.game-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.game-name {
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  display: block;
}

.game-players {
  color: var(--light-gray);
  font-size: 9px;
}

.hot-indicator {
  background: var(--red-gradient);
  color: var(--white);
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

/* Quick Deposit */
.quick-deposit-section {
  background: var(--dark-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 15px;
}

.quick-deposit-section h3 {
  color: var(--gold);
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 15px;
  text-align: center;
  text-transform: uppercase;
}

.deposit-amounts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 10px;
}

.deposit-btn {
  background: var(--medium-gray);
  color: var(--white);
  border: 1px solid var(--primary-red);
  border-radius: 4px;
  padding: 8px 6px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.deposit-btn:hover {
  background: var(--primary-red);
  color: var(--white);
  transform: scale(1.05);
}

.deposit-methods {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
}

.method-btn {
  flex: 1;
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 6px 4px;
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.method-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.deposit-info p {
  color: var(--light-gray);
  font-size: 9px;
  text-align: center;
  margin: 0;
}

/* Bonus Page Section */
.bonus-page-section {
  background: var(--dark-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 15px;
}

.bonus-page-section h3 {
  color: var(--gold);
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 15px;
  text-align: center;
  text-transform: uppercase;
}

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

.bonus-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  padding: 12px;
  background: var(--black);
  border-radius: 8px;
  border: 1px solid var(--gold);
}

.bonus-icon {
  font-size: 24px;
  animation: bounce 2s infinite;
}

.bonus-text {
  flex: 1;
  text-align: left;
}

.bonus-title {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  display: block;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.bonus-subtitle {
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  display: block;
}

.bonus-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 15px;
}

.bonus-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: var(--medium-gray);
  border-radius: 6px;
  border: 1px solid var(--primary-red);
  transition: all 0.3s ease;
}

.bonus-feature:hover {
  background: var(--primary-red);
  transform: translateX(3px);
}

.feature-icon {
  font-size: 14px;
}

.feature-text {
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  flex: 1;
  text-align: left;
}

.bonus-page-btn {
  width: 100%;
  background: var(--red-gradient);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}

.bonus-page-btn:hover {
  background: var(--gold-gradient);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

.bonus-page-btn:active {
  transform: translateY(0);
}

.btn-icon {
  font-size: 16px;
}

.btn-text {
  flex: 1;
}

.btn-arrow {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.bonus-page-btn:hover .btn-arrow {
  transform: translateX(3px);
}

.bonus-timer {
  padding: 8px;
  background: var(--black);
  border-radius: 6px;
  border: 1px solid var(--gold);
}

.timer-text {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  animation: pulse 2s infinite;
}

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

/* Bonus Page Specific Styles */
.bonus-hero-banner {
  background: var(--red-gradient);
  padding: 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bonus-hero-banner::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.bonus-hero-content {
  position: relative;
  z-index: 2;
}

.bonus-hero-content h1 {
  color: var(--white);
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.bonus-hero-content p {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.bonus-highlights {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.2);
  padding: 15px 25px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.highlight-icon {
  font-size: 24px;
}

.highlight-text {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}

/* Quick Bonus Section */
.quick-bonus-section {
  background: var(--dark-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 15px;
}

.quick-bonus-section h3 {
  color: var(--gold);
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 15px;
  text-align: center;
  text-transform: uppercase;
}

.bonus-timer {
  text-align: center;
  margin-bottom: 15px;
  padding: 10px;
  background: var(--black);
  border-radius: 6px;
  border: 1px solid var(--gold);
}

.timer-display {
  color: var(--gold);
  font-size: 18px;
  font-weight: 900;
  font-family: 'Courier New', monospace;
}

.bonus-timer p {
  color: var(--white);
  font-size: 11px;
  margin: 5px 0 0;
}

.claim-bonus-btn {
  width: 100%;
  background: var(--red-gradient);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}

.claim-bonus-btn:hover {
  background: var(--gold-gradient);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

.bonus-info p {
  color: var(--light-gray);
  font-size: 10px;
  text-align: center;
  margin: 0;
}

/* Daily Bonus Section */
.daily-bonus-section {
  background: var(--dark-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 15px;
}

.daily-bonus-section h3 {
  color: var(--gold);
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 15px;
  text-align: center;
  text-transform: uppercase;
}

.daily-bonus-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.daily-bonus-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: var(--medium-gray);
  border-radius: 6px;
  border: 1px solid var(--primary-red);
  transition: all 0.3s ease;
}

.daily-bonus-item:hover {
  background: var(--primary-red);
  transform: translateX(3px);
}

.bonus-icon {
  font-size: 20px;
}

.bonus-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bonus-name {
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  display: block;
}

.bonus-amount {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
}

.claim-btn {
  background: var(--gold-gradient);
  color: var(--black);
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.claim-btn:hover {
  background: var(--white);
  transform: scale(1.05);
}

/* VIP Status Section */
.vip-status-section {
  background: var(--dark-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 15px;
}

.vip-status-section h3 {
  color: var(--gold);
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 15px;
  text-align: center;
  text-transform: uppercase;
}

.vip-level {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  padding: 10px;
  background: var(--black);
  border-radius: 6px;
  border: 1px solid var(--gold);
}

.vip-badge {
  background: var(--gold-gradient);
  color: var(--black);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.vip-level-text {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.vip-progress {
  margin-bottom: 15px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--black);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 5px;
}

.progress-fill {
  height: 100%;
  background: var(--gold-gradient);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.progress-text {
  color: var(--light-gray);
  font-size: 10px;
}

.vip-benefits p {
  color: var(--white);
  font-size: 10px;
  margin: 2px 0;
}

/* Welcome Bonus Section */
.welcome-bonus-section {
  background: var(--medium-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
}

.welcome-bonus-section h2 {
  color: var(--gold);
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 25px;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.bonus-package {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: center;
}

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

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

.currency {
  color: var(--gold);
  font-size: 24px;
  font-weight: 700;
}

.amount {
  color: var(--white);
  font-size: 48px;
  font-weight: 900;
  font-family: 'Courier New', monospace;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.bonus-text {
  color: var(--gold);
  font-size: 18px;
  font-weight: 700;
  display: block;
  margin-top: 10px;
}

.bonus-details h3 {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

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

.bonus-details li {
  color: var(--white);
  font-size: 14px;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.bonus-details li::before {
  content: '✅';
  position: absolute;
  left: 0;
  top: 0;
}

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

.claim-welcome-btn {
  background: var(--red-gradient);
  color: var(--white);
  border: none;
  border-radius: 12px;
  padding: 20px 40px;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 15px;
  box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.claim-welcome-btn:hover {
  background: var(--gold-gradient);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.bonus-terms p {
  color: var(--light-gray);
  font-size: 12px;
  margin: 0;
}

/* Promotions Section */
.promotions-section {
  background: var(--medium-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
}

.promotions-section h2 {
  color: var(--gold);
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 25px;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

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

.promotion-card {
  background: var(--dark-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
}

.promo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.promo-icon {
  font-size: 32px;
}

.promo-badge {
  background: var(--red-gradient);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.promotion-card h3 {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.promotion-card p {
  color: var(--light-gray);
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.promo-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.promo-amount {
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
}

.promo-max {
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.promo-btn {
  width: 100%;
  background: var(--gold-gradient);
  color: var(--black);
  border: none;
  border-radius: 6px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.promo-btn:hover {
  background: var(--white);
  transform: scale(1.02);
}

/* Leaderboard Section */
.leaderboard-section {
  background: var(--medium-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
}

.leaderboard-section h2 {
  color: var(--gold);
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 25px;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.leaderboard-table {
  background: var(--dark-gray);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--primary-red);
}

.table-header {
  display: grid;
  grid-template-columns: 80px 1fr 150px 120px 100px;
  background: var(--primary-red);
  padding: 15px 20px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
}

.table-cell {
  color: var(--white);
  display: flex;
  align-items: center;
}

.table-body {
  display: flex;
  flex-direction: column;
}

.table-row {
  display: grid;
  grid-template-columns: 80px 1fr 150px 120px 100px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--primary-red);
  transition: all 0.3s ease;
}

.table-row:hover {
  background: var(--black);
}

.table-row.winner {
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.1), transparent);
  border-left: 4px solid var(--gold);
}

.rank-number {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin-right: 8px;
}

.rank-icon {
  font-size: 20px;
}

.player-info {
  display: flex;
  flex-direction: column;
}

.player-name {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}

.player-location {
  color: var(--light-gray);
  font-size: 12px;
}

.bonus-amount {
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  font-family: 'Courier New', monospace;
}

.games-count {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.status-badge {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.status-badge.online {
  background: var(--green);
  color: var(--white);
}

.status-badge.offline {
  background: var(--light-gray);
  color: var(--black);
}

.leaderboard-info {
  text-align: center;
  margin-top: 20px;
  padding: 15px;
  background: var(--black);
  border-radius: 6px;
  border: 1px solid var(--gold);
}

.leaderboard-info p {
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

/* Bonus Terms Section */
.bonus-terms-section {
  background: var(--medium-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
}

.bonus-terms-section h2 {
  color: var(--gold);
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 25px;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

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

.terms-card {
  background: var(--dark-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 20px;
}

.terms-card h3 {
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

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

.terms-card li {
  color: var(--white);
  font-size: 14px;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

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

/* Bonus Balance Section */
.bonus-balance-section {
  background: var(--dark-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 15px;
}

.bonus-balance-section h3 {
  color: var(--gold);
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 15px;
  text-align: center;
  text-transform: uppercase;
}

.balance-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.balance-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: var(--black);
  border-radius: 6px;
  border: 1px solid var(--primary-red);
}

.balance-item .label {
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.balance-item .value {
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  font-family: 'Courier New', monospace;
}

/* Responsive Design for Bonus Page */
@media (max-width: 768px) {
  .bonus-hero-content h1 {
    font-size: 32px;
  }
  
  .bonus-hero-content p {
    font-size: 16px;
  }
  
  .bonus-highlights {
    gap: 20px;
  }
  
  .highlight-item {
    padding: 10px 15px;
  }
  
  .bonus-package {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .amount {
    font-size: 48px;
  }
  
  .promotions-grid {
    grid-template-columns: 1fr;
  }
  
  .table-header,
  .table-row {
    grid-template-columns: 60px 1fr 120px 80px 80px;
    padding: 10px 15px;
    font-size: 12px;
  }
  
  .terms-grid {
    grid-template-columns: 1fr;
  }
}

/* Tournament Section */
.tournament-section {
  background: var(--medium-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
}

.tournament-section h2 {
  color: var(--gold);
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 25px;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.tournament-highlight {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
  padding: 25px;
  background: var(--dark-gray);
  border-radius: 8px;
  border: 1px solid var(--gold);
}

.tournament-prize {
  text-align: center;
}

.prize-amount {
  color: var(--gold);
  font-size: 36px;
  font-weight: 900;
  font-family: 'Courier New', monospace;
  display: block;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.prize-text {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.tournament-info h3 {
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.tournament-info p {
  color: var(--light-gray);
  font-size: 16px;
  margin: 0;
}

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

.tournament-card {
  background: var(--dark-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.tournament-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
}

.tournament-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.tournament-card h4 {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.tournament-card p {
  color: var(--light-gray);
  font-size: 14px;
  margin-bottom: 15px;
}

.tournament-prizes {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 20px;
}

.prize {
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
}

.tournament-btn {
  width: 100%;
  background: var(--red-gradient);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.tournament-btn:hover {
  background: var(--gold-gradient);
  color: var(--black);
  transform: scale(1.02);
}

/* Cashback Section */
.cashback-section {
  background: var(--medium-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
}

.cashback-section h2 {
  color: var(--gold);
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 25px;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.cashback-highlight {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
  padding: 25px;
  background: var(--dark-gray);
  border-radius: 8px;
  border: 1px solid var(--gold);
}

.cashback-amount {
  text-align: center;
}

.percentage {
  color: var(--gold);
  font-size: 48px;
  font-weight: 900;
  font-family: 'Courier New', monospace;
  display: block;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.cashback-text {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.cashback-info h3 {
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.cashback-info p {
  color: var(--light-gray);
  font-size: 16px;
  margin: 0;
}

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

.tier-card {
  background: var(--dark-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.tier-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(220, 20, 60, 0.2);
}

.tier-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: inline-block;
}

.tier-badge.bronze {
  background: #cd7f32;
  color: var(--white);
}

.tier-badge.silver {
  background: #c0c0c0;
  color: var(--black);
}

.tier-badge.gold {
  background: var(--gold-gradient);
  color: var(--black);
}

.tier-badge.platinum {
  background: linear-gradient(45deg, #e5e4e2, #b8b8b8);
  color: var(--black);
}

.tier-card h4 {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.tier-card p {
  color: var(--light-gray);
  font-size: 14px;
  margin-bottom: 10px;
}

.tier-requirements span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

/* Referral Section */
.referral-section {
  background: var(--medium-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
}

.referral-section h2 {
  color: var(--gold);
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 25px;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.referral-highlight {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
  padding: 25px;
  background: var(--dark-gray);
  border-radius: 8px;
  border: 1px solid var(--gold);
}

.referral-reward {
  text-align: center;
}

.reward-amount {
  color: var(--gold);
  font-size: 36px;
  font-weight: 900;
  font-family: 'Courier New', monospace;
  display: block;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.reward-text {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.referral-info h3 {
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.referral-info p {
  color: var(--light-gray);
  font-size: 16px;
  margin: 0;
}

.referral-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: var(--dark-gray);
  border-radius: 8px;
  border: 1px solid var(--primary-red);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--gold-gradient);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  flex-shrink: 0;
}

.step-content h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.step-content p {
  color: var(--light-gray);
  font-size: 14px;
  margin: 0;
}

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

.stat-item {
  text-align: center;
}

.stat-number {
  color: var(--gold);
  font-size: 24px;
  font-weight: 900;
  font-family: 'Courier New', monospace;
  display: block;
  margin-bottom: 5px;
}

.stat-label {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.referral-btn {
  width: 100%;
  background: var(--red-gradient);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.referral-btn:hover {
  background: var(--gold-gradient);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Mobile App Section */
.mobile-app-section {
  background: var(--medium-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
}

.mobile-app-section h2 {
  color: var(--gold);
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 25px;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.mobile-highlight {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--dark-gray);
  border-radius: 8px;
  border: 1px solid var(--gold);
}

.mobile-icon {
  font-size: 48px;
}

.mobile-info h3 {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.mobile-info p {
  color: var(--light-gray);
  font-size: 14px;
  margin: 0;
}

.mobile-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.feature-card {
  background: var(--dark-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(220, 20, 60, 0.2);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 15px;
}

.feature-card h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--light-gray);
  font-size: 14px;
  margin-bottom: 15px;
}

.feature-btn {
  background: var(--gold-gradient);
  color: var(--black);
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.feature-btn:hover {
  background: var(--white);
  transform: scale(1.05);
}

.app-stores {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--dark-gray);
  color: var(--white);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 15px 25px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.store-btn:hover {
  background: var(--primary-red);
  transform: translateY(-2px);
}

.store-icon {
  font-size: 20px;
}

/* Loyalty Points Section */
.loyalty-section {
  background: var(--medium-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
}

.loyalty-section h2 {
  color: var(--gold);
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 25px;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.loyalty-highlight {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
  padding: 25px;
  background: var(--dark-gray);
  border-radius: 8px;
  border: 1px solid var(--gold);
}

.points-display {
  text-align: center;
}

.points-amount {
  color: var(--gold);
  font-size: 36px;
  font-weight: 900;
  font-family: 'Courier New', monospace;
  display: block;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.points-text {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.loyalty-info h3 {
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.loyalty-info p {
  color: var(--light-gray);
  font-size: 16px;
  margin: 0;
}

.points-earning {
  margin-bottom: 30px;
}

.points-earning h4 {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

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

.method-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: var(--dark-gray);
  border-radius: 6px;
  border: 1px solid var(--primary-red);
}

.method-icon {
  font-size: 20px;
}

.method-text {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.points-rewards h4 {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.reward-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.reward-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--dark-gray);
  border-radius: 6px;
  border: 1px solid var(--primary-red);
}

.reward-cost {
  color: var(--light-gray);
  font-size: 12px;
  font-weight: 700;
  min-width: 80px;
}

.reward-value {
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  flex: 1;
}

.redeem-btn {
  background: var(--gold-gradient);
  color: var(--black);
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.redeem-btn:hover {
  background: var(--white);
  transform: scale(1.05);
}

/* Special Events Section */
.events-section {
  background: var(--medium-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
}

.events-section h2 {
  color: var(--gold);
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 25px;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.events-highlight {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--dark-gray);
  border-radius: 8px;
  border: 1px solid var(--gold);
}

.event-badge {
  background: var(--red-gradient);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  animation: pulse 2s infinite;
}

.event-info h3 {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.event-info p {
  color: var(--light-gray);
  font-size: 14px;
  margin: 0;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.event-card {
  background: var(--dark-gray);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  padding: 20px;
  transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(220, 20, 60, 0.2);
}

.event-date {
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.event-card h4 {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.event-card p {
  color: var(--light-gray);
  font-size: 14px;
  margin-bottom: 15px;
}

.event-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.event-bonus {
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
}

.event-max {
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.event-btn {
  width: 100%;
  background: var(--gold-gradient);
  color: var(--black);
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.event-btn:hover {
  background: var(--white);
  transform: scale(1.02);
}

.events-calendar {
  background: var(--dark-gray);
  border-radius: 8px;
  border: 1px solid var(--primary-red);
  padding: 20px;
}

.events-calendar h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.calendar-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calendar-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: var(--black);
  border-radius: 6px;
  border: 1px solid var(--primary-red);
}

.cal-date {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  min-width: 60px;
}

.cal-event {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  flex: 1;
  text-align: center;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .tournament-highlight,
  .cashback-highlight,
  .referral-highlight,
  .loyalty-highlight {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .tournament-grid,
  .cashback-tiers,
  .referral-steps,
  .mobile-features,
  .earning-methods,
  .reward-options,
  .events-grid {
    grid-template-columns: 1fr;
  }
  
  .referral-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .app-stores {
    flex-direction: column;
    align-items: center;
  }
  
  .calendar-item {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }
}