/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #1a1a1a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffd700;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: #f0e68c;
}

strong {
  color: #ffd700;
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #ffd700, #ffc400);
  color: #1a1a1a;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffc400, #ffb000);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
}

.btn-secondary:hover {
  background: #ffd700;
  color: #1a1a1a;
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* Header */
.header {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo img {
  height: 50px;
  width: auto;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #f0e68c;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #ffd700;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: #ffd700;
}

.header-actions {
  display: flex;
  gap: 1rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffd700;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  position: relative;
}

.hero::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="%23FFD700" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23FFD700" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23FFD700" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffd700, #ffc400);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

/* Analysis Section */
.analysis {
  padding: 80px 0;
  background: rgba(255, 215, 0, 0.05);
}

.analysis-table {
  background: rgba(26, 26, 26, 0.8);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.table-row:last-child {
  border-bottom: none;
}

.table-cell {
  padding: 1.5rem;
  border-right: 1px solid rgba(255, 215, 0, 0.1);
}

.table-cell:last-child {
  border-right: none;
}

/* Advantages Section */
.advantages {
  padding: 80px 0;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.advantage-card {
  background: rgba(26, 26, 26, 0.8);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.advantage-icon {
  font-size: 3rem;
  color: #ffd700;
  margin-bottom: 1rem;
}

.advantage-card h3 {
  font-size: 1.2rem;
  color: #f0e68c;
}

/* Games Section */
.games {
  padding: 80px 0;
  background: rgba(255, 215, 0, 0.05);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.game-category {
  background: rgba(26, 26, 26, 0.8);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease;
}

.game-category:hover {
  transform: translateY(-5px);
}

.game-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-category h3,
.game-category p {
  padding: 0 1.5rem;
}

.game-category h3 {
  padding-top: 1.5rem;
  margin-bottom: 1rem;
}

.game-category p {
  padding-bottom: 1.5rem;
}

/* Bonus Section */
.bonus {
  padding: 80px 0;
}

.bonus-welcome {
  background: rgba(26, 26, 26, 0.8);
  padding: 3rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  margin: 3rem 0;
}

.bonus-table {
  margin-top: 2rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.bonus-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.bonus-row:last-child {
  border-bottom: none;
}

.bonus-header {
  background: rgba(255, 215, 0, 0.1);
}

.bonus-cell {
  padding: 1rem;
  text-align: center;
  border-right: 1px solid rgba(255, 215, 0, 0.1);
}

.bonus-cell:last-child {
  border-right: none;
}

.bonus-info {
  margin: 3rem 0;
}

.bonus-info h4 {
  color: #ffd700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.cta-section {
  text-align: center;
  margin-top: 3rem;
}

/* Registration Section */
.registration {
  padding: 80px 0;
  background: rgba(255, 215, 0, 0.05);
}

.registration-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.registration-steps {
  margin: 2rem 0;
}

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

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ffd700, #ffc400);
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.registration-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

/* Security Section */
.security {
  padding: 80px 0;
}

.security-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.security-features {
  margin-top: 2rem;
}

.security-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(26, 26, 26, 0.5);
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.security-feature i {
  color: #ffd700;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.security-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

/* Mobile Section */
.mobile {
  padding: 80px 0;
  background: rgba(255, 215, 0, 0.05);
}

.mobile-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mobile-features {
  margin-top: 2rem;
}

.mobile-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(26, 26, 26, 0.5);
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.mobile-feature i {
  color: #ffd700;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.mobile-image {
  text-align: center;
}

.mobile-image img {
  max-width: 300px;
  height: auto;
  border-radius: 15px;
}

/* Pros and Cons Section */
.pros-cons {
  padding: 80px 0;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.pros,
.cons {
  background: rgba(26, 26, 26, 0.8);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.pros h3,
.cons h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.pros ul,
.cons ul {
  list-style: none;
}

.pros li,
.cons li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  position: relative;
  padding-left: 2rem;
}

.pros li:last-child,
.cons li:last-child {
  border-bottom: none;
}

.pros li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffd700;
  font-weight: bold;
}

.cons li::before {
  content: "!";
  position: absolute;
  left: 0;
  color: #ffc400;
  font-weight: bold;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background: rgba(255, 215, 0, 0.05);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  background: rgba(26, 26, 26, 0.8);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
}

.faq-item h3 {
  color: #ffd700;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.faq-item p {
  color: #f0e68c;
}

/* Conclusion Section */
.conclusion {
  padding: 80px 0;
  text-align: center;
}

.conclusion-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.8);
  padding: 60px 0 20px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  color: #ffd700;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #f0e68c;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ffd700;
}

.footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.payment-method {
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.social-links a:hover {
  background: #ffd700;
  color: #1a1a1a;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.age-restriction {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.age-badge {
  background: #ffd700;
  color: #1a1a1a;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1.2rem;
}

.brazil-flag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brazil-flag img {
  border-radius: 3px;
}

/* Bonus Page Specific Styles */
.why-unique {
  padding: 80px 0;
  background: rgba(255, 215, 0, 0.05);
}

.bonus-types {
  padding: 80px 0;
}

.welcome-bonus {
  padding: 80px 0;
  background: rgba(255, 215, 0, 0.05);
}

.welcome-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.welcome-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.welcome-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.free-spins {
  padding: 80px 0;
  background: rgba(255, 215, 0, 0.05);
}

.free-spins-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3rem;
}

.free-spins-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.free-spins-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.no-deposit-bonus {
  padding: 80px 0;
}

.vip-cashback {
  padding: 80px 0;
}

.terms-conditions {
  padding: 80px 0;
  background: rgba(255, 215, 0, 0.05);
}

.promotional-codes {
  padding: 80px 0;
}

.maximizing-bonuses {
  padding: 80px 0;
  background: rgba(255, 215, 0, 0.05);
}

.detailed-examples {
  padding: 80px 0;
}

/* Enhanced List Styling for Bonus Page */
ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.8rem;
  color: #f0e68c;
  line-height: 1.6;
}

ul li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffd700;
  font-size: 1.1rem;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

ol {
  counter-reset: golden-counter;
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

ol li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.2rem;
  color: #f0e68c;
  line-height: 1.6;
  counter-increment: golden-counter;
}

ol li::before {
  content: counter(golden-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, #ffd700, #ffc400);
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

/* Specific list styling for different contexts */
.example-box ul li::before {
  content: "▶";
  color: #ffd700;
  font-size: 1rem;
  top: 0.1rem;
}

.step-card ul li::before {
  content: "•";
  color: #ffc400;
  font-size: 1.5rem;
  top: -0.1rem;
}

.conditions-list ul li::before {
  content: "●";
  color: #ffd700;
  font-size: 1rem;
  top: 0.2rem;
}

/* Bonus page specific containers */
.welcome-highlight {
  background: rgba(26, 26, 26, 0.8);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  margin: 2rem 0;
}

.practical-example {
  margin: 3rem 0;
}

.example-box {
  background: rgba(26, 26, 26, 0.8);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  margin: 1rem 0;
}

.example-box h4 {
  color: #ffd700;
  margin-bottom: 1rem;
}

.no-deposit-offers {
  margin: 3rem 0;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.offer-card {
  background: rgba(26, 26, 26, 0.8);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.offer-icon {
  font-size: 3rem;
  color: #ffd700;
  margin-bottom: 1rem;
}

.offer-card h4 {
  color: #ffd700;
  margin-bottom: 1rem;
}

.how-to-get {
  margin: 3rem 0;
}

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

.step-card {
  background: rgba(26, 26, 26, 0.8);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.step-card .step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ffd700, #ffc400);
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step-card h4 {
  color: #ffd700;
  margin-bottom: 1rem;
}

.free-spins-table {
  margin: 3rem 0;
}

.cashback-structure {
  margin: 3rem 0;
}

.vip-benefits {
  margin: 3rem 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-card {
  background: rgba(26, 26, 26, 0.8);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.benefit-icon {
  font-size: 3rem;
  color: #ffd700;
  margin-bottom: 1rem;
}

.benefit-card h4 {
  color: #ffd700;
  margin-bottom: 1rem;
}

.vip-requirements {
  margin: 3rem 0;
}

.requirements-list {
  margin-top: 2rem;
}

.requirement-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(26, 26, 26, 0.5);
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  margin-bottom: 1rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.requirement-item:hover {
  transform: translateX(5px);
  border-color: rgba(255, 215, 0, 0.3);
}

.level {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  min-width: 80px;
  text-align: center;
}

.level.bronze {
  background: linear-gradient(135deg, #cd7f32, #b8860b);
  color: #ffffff;
}

.level.silver {
  background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
  color: #1a1a1a;
}

.level.gold {
  background: linear-gradient(135deg, #ffd700, #ffc400);
  color: #1a1a1a;
}

.level.platinum {
  background: linear-gradient(135deg, #e5e4e2, #d3d3d3);
  color: #1a1a1a;
}

.level.diamond {
  background: linear-gradient(135deg, #b9f2ff, #87ceeb);
  color: #1a1a1a;
}

.promo-codes-table {
  margin: 3rem 0;
}

.how-to-use-codes {
  margin: 3rem 0;
}

.usage-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.usage-step {
  background: rgba(26, 26, 26, 0.8);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  text-align: center;
}

.usage-step .step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ffd700, #ffc400);
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.usage-step h4 {
  color: #ffd700;
  margin-bottom: 1rem;
}

.game-contribution {
  margin: 3rem 0;
}

.optimization-strategies {
  margin: 3rem 0;
}

.strategies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.strategy-card {
  background: rgba(26, 26, 26, 0.8);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.strategy-icon {
  font-size: 3rem;
  color: #ffd700;
  margin-bottom: 1rem;
}

.strategy-card h4 {
  color: #ffd700;
  margin-bottom: 1rem;
}

.promotions-calendar {
  margin: 3rem 0;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.calendar-day {
  background: rgba(26, 26, 26, 0.8);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease;
}

.calendar-day:hover {
  transform: translateY(-3px);
}

.calendar-day h4 {
  color: #ffd700;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.calendar-day p {
  font-size: 0.9rem;
  color: #f0e68c;
}

.complete-scenario {
  margin: 3rem 0;
}

.player-profile {
  background: rgba(26, 26, 26, 0.8);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  margin-bottom: 2rem;
}

.player-profile h4 {
  color: #ffd700;
  margin-bottom: 1rem;
}

.scenario-timeline {
  margin-top: 2rem;
}

.timeline-item {
  background: rgba(26, 26, 26, 0.8);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item h4 {
  color: #ffd700;
  margin-bottom: 1rem;
}

.conditions-list {
  margin: 2rem 0;
}

.conditions-list h4 {
  color: #ffd700;
  margin-bottom: 1rem;
}

/* Enhanced bonus table styling */
.bonus-total {
  background: rgba(255, 215, 0, 0.2);
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .header-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

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

  .table-row {
    grid-template-columns: 1fr;
  }

  .table-cell {
    border-right: none;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  }

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

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

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

  .bonus-cell {
    border-right: none;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    text-align: left;
  }

  .bonus-cell:last-child {
    border-bottom: none;
  }

  .registration-content,
  .security-content,
  .mobile-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pros-cons-grid {
    grid-template-columns: 1fr;
  }

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

  .conclusion-cta {
    flex-direction: column;
    align-items: center;
  }

  .footer-info {
    flex-direction: column;
    gap: 1rem;
  }

  .payment-methods {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  /* Bonus page responsive adjustments */
  .welcome-content,
  .free-spins-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .welcome-image,
  .free-spins-image {
    order: -1;
  }

  .offers-grid,
  .steps-grid,
  .benefits-grid,
  .usage-steps,
  .strategies-grid {
    grid-template-columns: 1fr;
  }

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

  ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
  }

  ol li {
    padding-left: 2.5rem;
    margin-bottom: 1rem;
  }

  ol li::before {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .btn-large {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .advantage-card,
  .game-category,
  .faq-item,
  .pros,
  .cons {
    padding: 1.5rem;
  }

  .bonus-welcome {
    padding: 2rem;
  }

  /* Bonus page mobile adjustments */
  .welcome-image img,
  .free-spins-image img {
    max-width: 100%;
  }

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

  ul li {
    padding-left: 1.2rem;
    font-size: 0.95rem;
  }

  ol li {
    padding-left: 2rem;
    font-size: 0.95rem;
  }

  ul li::before {
    font-size: 1rem;
  }

  ol li::before {
    width: 1.2rem;
    height: 1.2rem;
    font-size: 0.7rem;
  }
}

/* Loading Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero,
.analysis,
.advantages,
.games,
.bonus,
.registration,
.security,
.mobile,
.pros-cons,
.faq,
.conclusion {
  animation: fadeInUp 0.8s ease-out;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus,
a:focus {
  outline: 2px solid #ffd700;
  outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .btn-primary {
    background: #ffd700;
    color: #000000;
  }

  .btn-secondary {
    background: #000000;
    color: #ffd700;
    border: 3px solid #ffd700;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
