/* CSS Variables */
:root {
  /* Brand Colors */
  --brand-primary: #FFD700;
  --brand-secondary: #FF6B35;
  --brand-dark: #1A1A2E;
  
  /* Backgrounds */
  --bg-body: #0F0F23;
  --bg-header: #1A1A2E;
  --bg-footer: #16213E;
  --bg-card: #252547;
  --bg-modal: rgba(26, 26, 46, 0.95);
  
  /* Text */
  --text-white: #FFFFFF;
  --text-gray: #B8B8CC;
  --text-gold: #FFD700;
  --text-orange: #FF6B35;
  
  /* Interactive Elements */
  --btn-login: #FFD700;
  --btn-login-hover: #FFA500;
  --btn-play: #FF6B35;
  --btn-play-hover: #E55A2B;
  --btn-bonus: #00FF88;
  --btn-bonus-hover: #00CC6A;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  --gradient-secondary: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
  --gradient-bg: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: var(--bg-body);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: var(--bg-header);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 60px;
  width: auto;
}

.header-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.btn-login {
  background: var(--btn-login);
  color: var(--brand-dark);
}

.btn-login:hover {
  background: var(--btn-login-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.btn-primary {
  background: var(--gradient-secondary);
  color: var(--text-white);
}

.btn-primary:hover {
  background: var(--btn-play-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.btn-play-small {
  background: var(--gradient-secondary);
  color: var(--text-white);
  padding: 8px 16px;
  font-size: 12px;
}

.btn-play-small:hover {
  background: var(--btn-play-hover);
  transform: translateY(-1px);
}

.btn-mega {
  background: var(--gradient-primary);
  color: var(--brand-dark);
  padding: 18px 36px;
  font-size: 18px;
  font-weight: 900;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-mega:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

/* Hero Section */
.hero {
  padding: 60px 0;
  background: var(--gradient-bg);
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--text-gold);
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-text h2 {
  color: var(--text-gold);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.hero-text p {
  color: var(--text-gray);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

/* Leaderboard Section */
.leaderboard {
  padding: 60px 0;
  background: var(--bg-card);
}

.leaderboard h2 {
  text-align: center;
  color: var(--text-gold);
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.table-responsive {
  overflow-x: auto;
}

.slots-table {
  width: 100%;
  background: var(--bg-header);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slots-table th {
  background: var(--gradient-primary);
  color: var(--brand-dark);
  padding: 15px;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
}

.slots-table td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.slots-table tr:hover {
  background: rgba(255, 215, 0, 0.1);
}

.rank {
  background: var(--gradient-primary);
  color: var(--brand-dark);
  font-weight: bold;
  font-size: 1.2rem;
}

.rtp {
  color: var(--btn-bonus);
  font-weight: bold;
}

.volatility.high {
  color: var(--text-orange);
  font-weight: bold;
}

.volatility.medium {
  color: var(--text-gold);
  font-weight: bold;
}

.volatility.low {
  color: var(--btn-bonus);
  font-weight: bold;
}

.max-win {
  color: var(--text-gold);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Slots Grid */
.slots-grid {
  padding: 60px 0;
  background: var(--bg-body);
}

.slots-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.slot-card {
  background: var(--bg-card);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.slot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.slot-image {
  position: relative;
  overflow: hidden;
}

.slot-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.slot-card:hover .slot-image img {
  transform: scale(1.05);
}

.slot-info {
  padding: 20px;
}

.slot-info h3 {
  color: var(--text-gold);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.provider {
  color: var(--text-orange);
  font-size: 0.9rem;
  font-weight: normal;
}

.slot-info p {
  color: var(--text-gray);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Section Content Layout */
.section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.section-content.reverse {
  grid-template-columns: 1fr;
}

.section-content.reverse .section-image {
  order: 2;
}

.section-content.reverse .section-text {
  order: 1;
}

/* Mobile Section */
.mobile-section {
  padding: 80px 0;
  background: var(--bg-card);
}

.mobile-section h2 {
  color: var(--text-gold);
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.mobile-section p {
  color: var(--text-gray);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.section-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background: var(--bg-body);
}

.features-section h2 {
  color: var(--text-gold);
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.features-list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;

}

.feature {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border-left: 4px solid var(--brand-primary);
}

.feature i {
  color: var(--text-gold);
  font-size: 1.5rem;
  margin-top: 5px;
  flex-shrink: 0;
}

.feature h4 {
  color: var(--text-gold);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.feature p {
  color: var(--text-gray);
  line-height: 1.6;
}

/* Play Now Section */
.play-now-section {
  padding: 80px 0;
  background: var(--gradient-bg);
}

.play-now-section h2 {
  color: var(--text-gold);
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.play-now-section p {
  color: var(--text-gray);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.benefits-list h3 {
  color: var(--text-gold);
  margin: 30px 0 20px 0;
  font-size: 1.4rem;
}

.benefits-list ul {
  list-style: none;
  margin-bottom: 30px;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  color: var(--text-gray);
  font-size: 1.1rem;
}

.benefits-list i {
  color: var(--text-gold);
  font-size: 1.2rem;
}

.tagline {
  font-size: 1.3rem;
  color: var(--text-gold);
  margin: 30px 0;
  text-align: center;
}

/* Tips Section */
.tips-section {
  padding: 80px 0;
  background: var(--bg-card);
}

.tips-section h2 {
  color: var(--text-gold);
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.tips-list {
  margin-top: 30px;
}

.tip {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: var(--bg-body);
  border-radius: 10px;
  border: 2px solid var(--btn-bonus);
}

.tip-icon {
  flex-shrink: 0;
}

.tip-icon i {
  color: var(--btn-bonus);
  font-size: 1.5rem;
}

.tip-content h4 {
  color: var(--text-gold);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.tip-content p {
  color: var(--text-gray);
  line-height: 1.6;
}

/* Final CTA */
.final-cta {
  padding: 80px 0;
  background: var(--bg-body);
  text-align: center;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.cta-content img {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-text h2 {
  color: var(--text-gold);
  font-size: 2rem;
  margin-bottom: 30px;
  max-width: 800px;
}

/* Footer */
.footer {
  background: var(--bg-footer);
  padding: 30px 0;
  text-align: center;
  border-top: 2px solid var(--brand-primary);
}

.footer p {
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  .header-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .section-content,
  .section-content.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .section-content.reverse .section-image,
  .section-content.reverse .section-text {
    order: unset;
  }
  
  .slots-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .slots-table {
    font-size: 0.9rem;
  }
  
  .slots-table th,
  .slots-table td {
    padding: 10px 5px;
  }
  
  .feature {
    flex-direction: column;
    text-align: center;
  }
  
  .tip {
    flex-direction: column;
    text-align: center;
  }
  
  .btn-mega {
    padding: 15px 30px;
    font-size: 16px;
  }
  
  .hero-text h2,
  .mobile-section h2,
  .features-section h2,
  .play-now-section h2,
  .tips-section h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  
  .header-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 12px;
  }
  
  .btn-mega {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .slot-info h3 {
    font-size: 1.1rem;
  }
  
  .cta-text h2 {
    font-size: 1.5rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slot-card,
.feature,
.tip {
  animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.btn:hover {
  transform: translateY(-2px);
}

.slot-card:hover {
  transform: translateY(-5px);
}

/* Text Highlights */
strong {
  color: var(--text-gold);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-body);
}

::-webkit-scrollbar-thumb {
  background: var(--brand-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--btn-login-hover);
} 