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

:root {
  --primary-color: #FFD700;
  --secondary-color: #0A0A0A;
  --third-color: #1A1A1A;
  --text-primary: #FFFFFF;
  --text-secondary: #CCCCCC;
  --accent-primary: #FFD700;
  --money-green: #00C853;
  --gold-dark: #D4AF37;
  --gold-light: #FFE87C;
  --coin-edge: #8B7355;
}

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

body {
  font-family: 'Ubuntu', sans-serif;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 200, 83, 0.1) 0%, transparent 50%),
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
    url(../images/background.jpg);
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--text-primary);
  line-height: 1.6;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 100px, rgba(255, 215, 0, 0.03) 100px, rgba(255, 215, 0, 0.03) 200px);
  pointer-events: none;
  z-index: 0;
}

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

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

.btn {
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  font-weight: 900;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  border-bottom: 3px solid var(--primary-color);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
  position: relative;
  z-index: 100;
}

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

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

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

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

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

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

.btn-register {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--gold-dark) 100%);
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  padding-left: 45px;
  position: relative;
  overflow: hidden;
}

.btn-register::before {
  content: '$';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.4);
}

.btn-register:hover {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--primary-color) 100%);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
  transform: translateY(-2px);
}

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

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  background: radial-gradient(circle at center, var(--gold-dark) 0%, #B8860B 40%, var(--third-color) 100%);
  padding: 60px 50px;
  top: 20px;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 
    0 0 0 6px rgba(139, 115, 85, 0.6),
    0 20px 60px rgba(0, 0, 0, 0.7),
    inset 0 0 80px rgba(255, 255, 255, 0.15),
    inset 0 -30px 60px rgba(0, 0, 0, 0.4);
  border: 12px solid var(--coin-edge);
  margin-bottom: 40px;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.6));
}

.hero::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  border-radius: 50px;
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    var(--coin-edge) 0deg 3deg,
    rgba(139, 115, 85, 0.4) 3deg 6deg
  );
  z-index: -1;
  opacity: 0.9;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
}

.hero-content h1 {
  font-size: 2rem;
  color: var(--text-primary);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.3);
  margin-bottom: 20px;
}

.hero-content p {
  margin-bottom: 30px;
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Flip Cards Section */
.bonus-cards-section {
  margin-top: 40px;
  padding: 40px;
  border-radius: 30px;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, var(--secondary-color) 70%);
  border: 8px solid var(--coin-edge);
  box-shadow: 
    0 0 0 4px rgba(139, 115, 85, 0.5),
    0 10px 40px rgba(0, 0, 0, 0.6),
    inset 0 0 50px rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.bonus-cards-section::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 30px;
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    var(--coin-edge) 0deg 2deg,
    rgba(139, 115, 85, 0.3) 2deg 4deg
  );
  z-index: -1;
  opacity: 0.7;
}

.section-intro {
  text-align: center;
  margin-bottom: 40px;
}

.section-intro h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

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

.flip-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  perspective: 1000px;
}

.flip-card {
  background-color: transparent;
  width: 100%;
  height: 400px;
  perspective: 1000px;
  cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  border: 8px solid var(--coin-edge);
  box-shadow: 
    0 0 0 4px rgba(139, 115, 85, 0.5),
    0 10px 40px rgba(0, 0, 0, 0.6),
    inset 0 0 60px rgba(255, 255, 255, 0.1),
    inset 0 -20px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.flip-card-front {
  background: radial-gradient(circle at 30% 30%, #FFE87C 0%, var(--gold-dark) 30%, #B8860B 60%, var(--gold-dark) 100%);
}

.flip-card-front::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 20px;
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    var(--coin-edge) 0deg 2deg,
    rgba(139, 115, 85, 0.3) 2deg 4deg
  );
  z-index: -1;
  opacity: 0.8;
}

.flip-card-back {
  background: radial-gradient(circle at 30% 30%, var(--third-color) 0%, rgba(255, 215, 0, 0.15) 50%, var(--third-color) 100%);
  transform: rotateY(180deg);
  justify-content: space-between;
}

.flip-card-back::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 20px;
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    var(--coin-edge) 0deg 2deg,
    rgba(139, 115, 85, 0.3) 2deg 4deg
  );
  z-index: -1;
  opacity: 0.8;
}

.coin-icon {
  font-size: 4rem;
  margin-bottom: 15px;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
}

.flip-card-front h3 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: 900;
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.3);
}

.bonus-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--secondary-color);
  margin-bottom: 10px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.flip-card-front p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.flip-hint {
  position: absolute;
  bottom: 15px;
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.flip-card-back h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 900;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.flip-card-back ul {
  list-style: none;
  padding: 0;
  text-align: left;
  flex: 1;
}

.flip-card-back ul li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
}

.flip-card-back ul li::before {
  content: '';
  position: absolute;
  left: 0;
  width: 15px;
  height: 15px;
  background: radial-gradient(circle at center, var(--primary-color) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  border: 2px solid var(--coin-edge);
  top: 50%;
  transform: translateY(-50%);
}

.btn-claim {
  display: inline-block;
  padding: 12px 30px;
  background: radial-gradient(circle at 30% 30%, #FFE87C 0%, var(--gold-dark) 30%, #B8860B 60%, var(--gold-dark) 100%);
  color: var(--secondary-color);
  border: 6px solid var(--coin-edge);
  border-radius: 30px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 
    0 0 0 2px rgba(139, 115, 85, 0.5),
    0 5px 15px rgba(0, 0, 0, 0.5);
}

.btn-claim:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 0 0 2px rgba(139, 115, 85, 0.7),
    0 8px 25px rgba(255, 215, 0, 0.5);
  border-color: var(--primary-color);
}

/* Live Stats Section */
.live-stats {
  margin-top: 40px;
  padding: 40px;
  border-radius: 30px;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, var(--secondary-color) 70%);
  border: 8px solid var(--coin-edge);
  box-shadow: 
    0 0 0 4px rgba(139, 115, 85, 0.5),
    0 10px 40px rgba(0, 0, 0, 0.6),
    inset 0 0 50px rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.live-stats::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 30px;
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    var(--coin-edge) 0deg 2deg,
    rgba(139, 115, 85, 0.3) 2deg 4deg
  );
  z-index: -1;
  opacity: 0.7;
}

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

.stat-item {
  text-align: center;
  padding: 25px;
  background: radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.15) 0%, var(--third-color) 60%);
  border-radius: 20px;
  border: 6px solid var(--coin-edge);
  box-shadow: 
    0 0 0 2px rgba(139, 115, 85, 0.4),
    0 5px 20px rgba(0, 0, 0, 0.5),
    inset 0 0 30px rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 
    0 0 0 2px rgba(139, 115, 85, 0.6),
    0 8px 30px rgba(255, 215, 0, 0.4),
    inset 0 0 40px rgba(255, 255, 255, 0.1);
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  filter: drop-shadow(0 5px 15px rgba(255, 215, 0, 0.5));
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 10px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 600;
}

/* Limited Offer Section */
.limited-offer {
  margin-top: 40px;
  padding: 50px;
  border-radius: 30px;
  background: radial-gradient(circle at center, var(--gold-dark) 0%, #B8860B 40%, var(--third-color) 100%);
  border: 8px solid var(--coin-edge);
  box-shadow: 
    0 0 0 4px rgba(139, 115, 85, 0.5),
    0 10px 40px rgba(0, 0, 0, 0.6),
    inset 0 0 50px rgba(255, 255, 255, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.limited-offer::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 30px;
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    var(--coin-edge) 0deg 2deg,
    rgba(139, 115, 85, 0.3) 2deg 4deg
  );
  z-index: -1;
  opacity: 0.8;
}

.offer-content h2 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.offer-content > p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.timer-item {
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.2) 0%, var(--third-color) 70%);
  border-radius: 15px;
  padding: 20px;
  border: 4px solid var(--coin-edge);
  min-width: 100px;
  box-shadow: 
    0 0 0 2px rgba(139, 115, 85, 0.4),
    inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.timer-value {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-color);
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.timer-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 5px;
  font-weight: 600;
}

.offer-progress {
  margin: 30px 0;
}

.progress-label {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.progress-bar {
  width: 100%;
  height: 30px;
  background: var(--third-color);
  border-radius: 15px;
  border: 3px solid var(--coin-edge);
  overflow: hidden;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--money-green) 100%);
  border-radius: 15px;
  transition: width 0.5s ease;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* Bonus Calculator Section */
.bonus-calculator {
  margin-top: 40px;
  padding: 40px;
  border-radius: 30px;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, var(--secondary-color) 70%);
  border: 8px solid var(--coin-edge);
  box-shadow: 
    0 0 0 4px rgba(139, 115, 85, 0.5),
    0 10px 40px rgba(0, 0, 0, 0.6),
    inset 0 0 50px rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.bonus-calculator::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 30px;
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    var(--coin-edge) 0deg 2deg,
    rgba(139, 115, 85, 0.3) 2deg 4deg
  );
  z-index: -1;
  opacity: 0.7;
}

.calculator-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

.calculator-input {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calculator-input label {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1rem;
}

.calculator-input input,
.calculator-input select {
  background: var(--third-color);
  border: 4px solid var(--coin-edge);
  border-radius: 15px;
  padding: 15px;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.calculator-input input:focus,
.calculator-input select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.calculator-result {
  background: radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.15) 0%, var(--third-color) 60%);
  border-radius: 20px;
  padding: 30px;
  border: 6px solid var(--coin-edge);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  border: 2px solid rgba(255, 215, 0, 0.2);
}

.result-label {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 600;
}

.result-value {
  color: var(--text-primary);
  font-size: 1.3rem;
  font-weight: 900;
}

.result-value.highlight {
  color: var(--primary-color);
  font-size: 1.5rem;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Recent Winners Section */
.recent-winners {
  margin-top: 40px;
  padding: 40px;
  border-radius: 30px;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, var(--secondary-color) 70%);
  border: 8px solid var(--coin-edge);
  box-shadow: 
    0 0 0 4px rgba(139, 115, 85, 0.5),
    0 10px 40px rgba(0, 0, 0, 0.6),
    inset 0 0 50px rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.recent-winners::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 30px;
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    var(--coin-edge) 0deg 2deg,
    rgba(139, 115, 85, 0.3) 2deg 4deg
  );
  z-index: -1;
  opacity: 0.7;
}

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

.winner-item {
  background: radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.15) 0%, var(--third-color) 60%);
  border-radius: 15px;
  padding: 20px;
  border: 4px solid var(--coin-edge);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  animation: slideIn 0.5s ease;
}

.winner-item.new-winner {
  animation: slideInNew 0.5s ease;
  background: radial-gradient(circle at 20% 20%, rgba(0, 200, 83, 0.2) 0%, var(--third-color) 60%);
}

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

@keyframes slideInNew {
  from {
    opacity: 0;
    transform: translateX(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.winner-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.winner-avatar {
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, var(--gold-dark) 0%, #B8860B 100%);
  border-radius: 50%;
  border: 4px solid var(--coin-edge);
}

.winner-info {
  flex: 1;
}

.winner-name {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.winner-bonus {
  color: var(--text-primary);
  font-size: 0.95rem;
  margin-bottom: 5px;
}

.winner-time {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.winner-amount {
  color: var(--money-green);
  font-weight: 900;
  font-size: 1.3rem;
  text-shadow: 0 0 10px rgba(0, 200, 83, 0.5);
}

/* Bonus Comparison Table */
.bonus-comparison {
  margin-top: 40px;
  padding: 40px;
  border-radius: 30px;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, var(--secondary-color) 70%);
  border: 8px solid var(--coin-edge);
  box-shadow: 
    0 0 0 4px rgba(139, 115, 85, 0.5),
    0 10px 40px rgba(0, 0, 0, 0.6),
    inset 0 0 50px rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.bonus-comparison::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 30px;
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    var(--coin-edge) 0deg 2deg,
    rgba(139, 115, 85, 0.3) 2deg 4deg
  );
  z-index: -1;
  opacity: 0.7;
}

.comparison-table {
  margin-top: 30px;
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, var(--third-color) 60%);
  border-radius: 15px;
  overflow: hidden;
}

.comparison-table th {
  background: radial-gradient(circle at center, var(--gold-dark) 0%, #B8860B 100%);
  color: var(--secondary-color);
  padding: 20px;
  text-align: left;
  font-weight: 900;
  font-size: 1rem;
  border: 2px solid var(--coin-edge);
}

.comparison-table td {
  padding: 20px;
  color: var(--text-primary);
  border-bottom: 2px solid rgba(255, 215, 0, 0.2);
  font-weight: 600;
}

.comparison-table tr:hover {
  background: rgba(255, 215, 0, 0.1);
}

.table-btn {
  display: inline-block;
  padding: 8px 20px;
  background: radial-gradient(circle at 30% 30%, #FFE87C 0%, var(--gold-dark) 30%, #B8860B 60%, var(--gold-dark) 100%);
  color: var(--secondary-color);
  border: 3px solid var(--coin-edge);
  border-radius: 20px;
  font-weight: 900;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.table-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

/* Testimonials Section */
.testimonials {
  margin-top: 40px;
  padding: 40px;
  border-radius: 30px;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, var(--secondary-color) 70%);
  border: 8px solid var(--coin-edge);
  box-shadow: 
    0 0 0 4px rgba(139, 115, 85, 0.5),
    0 10px 40px rgba(0, 0, 0, 0.6),
    inset 0 0 50px rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 30px;
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    var(--coin-edge) 0deg 2deg,
    rgba(139, 115, 85, 0.3) 2deg 4deg
  );
  z-index: -1;
  opacity: 0.7;
}

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

.testimonial-card {
  background: radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.15) 0%, var(--third-color) 60%);
  border-radius: 20px;
  padding: 30px;
  border: 6px solid var(--coin-edge);
  box-shadow: 
    0 0 0 2px rgba(139, 115, 85, 0.4),
    0 5px 20px rgba(0, 0, 0, 0.5),
    inset 0 0 30px rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 0 0 2px rgba(139, 115, 85, 0.6),
    0 8px 30px rgba(255, 215, 0, 0.4),
    inset 0 0 40px rgba(255, 255, 255, 0.1);
}

.testimonial-rating {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.testimonial-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: radial-gradient(circle at center, var(--gold-dark) 0%, #B8860B 100%);
  border-radius: 50%;
  border: 3px solid var(--coin-edge);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.author-name {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1rem;
}

.author-badge {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* Why Choose Section */
.why-choose {
  margin-top: 40px;
  padding: 40px;
  border-radius: 30px;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, var(--secondary-color) 70%);
  border: 8px solid var(--coin-edge);
  box-shadow: 
    0 0 0 4px rgba(139, 115, 85, 0.5),
    0 10px 40px rgba(0, 0, 0, 0.6),
    inset 0 0 50px rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.why-choose::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 30px;
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    var(--coin-edge) 0deg 2deg,
    rgba(139, 115, 85, 0.3) 2deg 4deg
  );
  z-index: -1;
  opacity: 0.7;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.why-choose-card {
  background: radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.15) 0%, var(--third-color) 60%);
  border-radius: 20px;
  padding: 30px;
  border: 6px solid var(--coin-edge);
  box-shadow: 
    0 0 0 2px rgba(139, 115, 85, 0.4),
    0 5px 20px rgba(0, 0, 0, 0.5),
    inset 0 0 30px rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.why-choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 0 0 2px rgba(139, 115, 85, 0.6),
    0 8px 30px rgba(255, 215, 0, 0.4),
    inset 0 0 40px rgba(255, 255, 255, 0.1);
}

.why-choose-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: block;
  text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}

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

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

/* Bonus Terms Section */
.bonus-terms {
  margin-top: 40px;
  padding: 40px;
  border-radius: 30px;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, var(--secondary-color) 70%);
  border: 8px solid var(--coin-edge);
  box-shadow: 
    0 0 0 4px rgba(139, 115, 85, 0.5),
    0 10px 40px rgba(0, 0, 0, 0.6),
    inset 0 0 50px rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.bonus-terms::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 30px;
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    var(--coin-edge) 0deg 2deg,
    rgba(139, 115, 85, 0.3) 2deg 4deg
  );
  z-index: -1;
  opacity: 0.7;
}

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

.term-item {
  background: radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.15) 0%, var(--third-color) 60%);
  border-radius: 20px;
  padding: 25px;
  border: 6px solid var(--coin-edge);
  box-shadow: 
    0 0 0 2px rgba(139, 115, 85, 0.4),
    0 5px 20px rgba(0, 0, 0, 0.5),
    inset 0 0 30px rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.term-item:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 0 0 2px rgba(139, 115, 85, 0.6),
    0 8px 30px rgba(255, 215, 0, 0.4),
    inset 0 0 40px rgba(255, 255, 255, 0.1);
}

.term-item h4 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 700;
}

.term-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* FAQ Section */
.faq {
  margin-top: 40px;
  padding: 40px;
  border-radius: 30px;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, var(--secondary-color) 70%);
  border: 8px solid var(--coin-edge);
  box-shadow: 
    0 0 0 4px rgba(139, 115, 85, 0.5),
    0 10px 40px rgba(0, 0, 0, 0.6),
    inset 0 0 50px rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 30px;
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    var(--coin-edge) 0deg 2deg,
    rgba(139, 115, 85, 0.3) 2deg 4deg
  );
  z-index: -1;
  opacity: 0.7;
}

.faq h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.faq-item {
  background: radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.15) 0%, var(--third-color) 60%);
  border-radius: 15px;
  padding: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid rgba(255, 215, 0, 0.3);
  position: relative;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--primary-color);
  border-radius: 15px 0 0 15px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  transform: translateX(5px);
}

.faq-item:hover::before {
  width: 8px;
  background: var(--money-green);
}

.faq-item.active {
  border-color: var(--primary-color);
  background: radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.2) 0%, var(--third-color) 60%);
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
}

.faq-item.active::before {
  width: 8px;
  background: var(--money-green);
}

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

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

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

/* Footer */
.footer {
  background: linear-gradient(180deg, var(--secondary-color) 0%, rgba(26, 26, 26, 0.95) 100%);
  padding: 40px 20px;
  margin-top: 40px;
  border-top: 3px solid var(--primary-color);
  box-shadow: 0 -4px 20px rgba(255, 215, 0, 0.2);
  position: relative;
}

.footer::before {
  content: '💰💎💵';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  opacity: 0.2;
  letter-spacing: 20px;
}

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

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

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

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

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

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

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

  .flip-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

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

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

  .hero {
    padding: 30px;
  }

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

  .bonus-cards-section,
  .why-choose,
  .bonus-terms,
  .faq,
  .live-stats,
  .limited-offer,
  .bonus-calculator,
  .recent-winners,
  .bonus-comparison,
  .testimonials {
    padding: 20px;
  }

  .flip-cards-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-grid,
  .terms-content,
  .stats-container,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .countdown-timer {
    flex-wrap: wrap;
    gap: 10px;
  }

  .timer-item {
    min-width: 80px;
    padding: 15px;
  }

  .timer-value {
    font-size: 2rem;
  }

  .calculator-container {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    overflow-x: scroll;
  }

  .comparison-table table {
    min-width: 600px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 20px;
  }

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

  .flip-card {
    height: 350px;
  }

  .section-intro h2 {
    font-size: 1.5rem;
  }
}
