/* Forum Page Specific Styles */
.main-content {
  margin-top: 80px;
  padding-bottom: 2rem;
}

/* Hero Section */
.hero {
  background: 
    linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1)),
    radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
  padding: 3rem 0;
  text-align: center;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-gold);
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-text {
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Comparison Table */
.comparison-table {
  padding: 4rem 0;
  background: rgba(10, 10, 26, 0.3);
}

.table-container {
  overflow-x: auto;
  border-radius: 20px;
  background: var(--card-bg);
  border: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow: var(--shadow-glow);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.compare-table th,
.compare-table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.compare-table th {
  background: rgba(139, 92, 246, 0.1);
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 10;
}

.casino-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}

.casino-header img {
  width: auto;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.casino-header span {
  font-weight: 700;
  font-size: 1rem;
}

.casino-header.petir108 span {
  color: var(--text-gold);
}

.winner-badge {
  background: var(--gradient-gold);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  animation: pulse 2s infinite;
}

.winner-column {
  background: rgba(245, 158, 11, 0.1);
  border-left: 3px solid var(--primary-gold);
  border-right: 3px solid var(--primary-gold);
}

.feature-name {
  font-weight: 600;
  text-align: left;
  color: var(--text-light);
  background: rgba(139, 92, 246, 0.05);
}

.winner-cell {
  background: rgba(245, 158, 11, 0.1);
  position: relative;
  font-weight: 600;
}

.value-highlight {
  color: var(--primary-gold);
  font-weight: 700;
}

.winner-icon {
  position: absolute;
  top: 5px;
  right: 5px;
  color: var(--primary-gold);
  font-size: 0.8rem;
  animation: bounce 2s infinite;
}

.compare-table tr:hover {
  background: rgba(139, 92, 246, 0.05);
}

/* Dominance Section */
.dominance-section {
  padding: 4rem 0;
}

.dominance-grid {
  gap: 2rem;
}

.dominance-card {
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(139, 92, 246, 0.2);
  position: relative;
}

.dominance-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.dominance-card:hover::before {
  transform: scaleX(1);
}

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

.dominance-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.dominance-content {
  padding: 2rem;
  position: relative;
}

.dominance-icon {
  position: absolute;
  top: -30px;
  left: 2rem;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
}

.dominance-icon i {
  font-size: 1.5rem;
  color: white;
}

.dominance-content h3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: var(--text-gold);
}

.dominance-content p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
  line-height: 1.6;
}

.stat-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(139, 92, 246, 0.1);
  padding: 1rem;
  border-radius: 15px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-gold);
  font-family: 'Orbitron', monospace;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Perks Section */
.perks-section {
  padding: 4rem 0;
  background: rgba(10, 10, 26, 0.3);
}

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

.perk-item {
  background: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.perk-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.perk-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.perk-content {
  padding: 1.5rem;
}

.perk-content h3 {
  color: var(--text-gold);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.perk-content p {
  opacity: 0.9;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Migration Stories */
.migration-stories {
  padding: 4rem 0;
}

.migration-grid {
  gap: 2rem;
}

.migration-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(139, 92, 246, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.migration-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-purple);
  opacity: 0.3;
}

.migration-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.migration-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.player-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.player-info strong {
  display: block;
  color: var(--text-gold);
  font-size: 1.1rem;
}

.player-info span {
  opacity: 0.7;
  font-size: 0.9rem;
}

.migration-card p {
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.6;
}

.migration-stats {
  display: flex;
  justify-content: center;
}

.stat {
  text-align: center;
  background: rgba(139, 92, 246, 0.1);
  padding: 1rem;
  border-radius: 15px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  font-family: 'Orbitron', monospace;
}

.stat-label {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Security Section */
.security-section {
  padding: 4rem 0;
  background: 
    linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
}

.security-content h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.security-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.security-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.security-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(139, 92, 246, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  transition: all 0.3s ease;
  min-width: 150px;
}

.security-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.security-item i {
  font-size: 2rem;
  color: var(--primary-purple);
}

.security-item span {
  font-weight: 600;
  text-align: center;
}

/* Fixed Action Buttons */
.fixed-actions {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.fixed-btn {
  padding: 12px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 120px;
  justify-content: center;
}

.register-btn {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-glow);
}

.login-btn {
  background: var(--gradient-secondary);
  color: white;
  box-shadow: var(--shadow-blue);
}

.bonus-btn {
  background: var(--gradient-gold);
  color: white;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

.fixed-btn:hover {
  transform: translateX(-5px) scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-content {
    margin-top: 100px;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .comparison-table,
  .dominance-section,
  .perks-section,
  .migration-stories,
  .security-section {
    padding: 2rem 0;
  }
  
  .compare-table {
    font-size: 0.8rem;
  }
  
  .compare-table th,
  .compare-table td {
    padding: 0.5rem;
  }
  
  .casino-header img {
    width: 30px;
    height: 30px;
  }
  
  .dominance-grid {
    grid-template-columns: 1fr;
  }
  
  .perks-grid {
    grid-template-columns: 1fr;
  }
  
  .migration-grid {
    grid-template-columns: 1fr;
  }
  
  .security-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .fixed-actions {
    right: 10px;
    gap: 8px;
  }
  
  .fixed-btn {
    padding: 10px 12px;
    font-size: 0.8rem;
    min-width: 100px;
  }
}

@media (max-width: 480px) {
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-text {
    font-size: 0.9rem;
  }
  
  .table-container {
    border-radius: 10px;
  }
  
  .compare-table {
    font-size: 0.7rem;
  }
  
  .compare-table th,
  .compare-table td {
    padding: 0.3rem;
  }
  
  .casino-header {
    gap: 4px;
  }
  
  .casino-header img {
    width: 25px;
    height: 25px;
  }
  
  .casino-header span {
    font-size: 0.8rem;
  }
  
  .winner-badge {
    font-size: 0.6rem;
    padding: 2px 6px;
  }
  
  .dominance-content {
    padding: 1.5rem;
  }
  
  .dominance-icon {
    width: 50px;
    height: 50px;
    top: -25px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .migration-card {
    padding: 1.5rem;
  }
  
  .security-features {
    grid-template-columns: 1fr;
  }
  
  .security-item {
    padding: 1rem;
    min-width: auto;
  }
  
  .fixed-actions {
    position: fixed;
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
    flex-direction: row;
    top: auto;
  }
  
  .fixed-btn {
    padding: 8px 12px;
    font-size: 0.7rem;
    min-width: 80px;
  }
}