/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Amita", cursive;
  background: linear-gradient(135deg, #0a1428 0%, #1e3a5f 50%, #2c5282 100%);
  color: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background: rgba(10, 20, 40, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 2px solid #00bfff;
}

.navbar {
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #00bfff;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #00bfff;
}

.nav-menu a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #00bfff;
}

.play-now-btn {
  background: linear-gradient(45deg, #00bfff, #1e90ff);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-family: "Amita", cursive;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 191, 255, 0.3);
}

.play-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 191, 255, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #00bfff;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 120px 200px;
  background: url("/photo/images/hero-bg.png") center/cover;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 20, 40, 0.7);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #00bfff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 15px 30px;
  border-radius: 30px;
  font-family: "Amita", cursive;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(45deg, #00bfff, #1e90ff);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 191, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 191, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #00bfff;
  border: 2px solid #00bfff;
}

.btn-secondary:hover {
  background: #00bfff;
  color: white;
  transform: translateY(-3px);
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Features Grid */
.features-grid {
  padding: 80px 0;
  text-align: center;
}

.features-grid h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #00bfff;
}

.features-grid > p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.8;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(0, 191, 255, 0.3);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 191, 255, 0.2);
  border-color: #00bfff;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #00bfff;
}

.feature-card p {
  opacity: 0.8;
}

/* Circular Features */
.circular-features {
  padding: 80px 0;
  text-align: center;
}

.circular-features h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #00bfff;
}

.circle-container {
  position: relative;
  width: 600px;
  height: 600px;
  margin: 0 auto;
}

.center-ship {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.center-ship img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 3px solid #00bfff;
  box-shadow: 0 0 30px rgba(0, 191, 255, 0.5);
}

.feature-circle {
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  border: 2px solid #00bfff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 191, 255, 0.3);
}

.feature-circle[data-position="top"] {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.feature-circle[data-position="top-right"] {
  top: 15%;
  right: 0;
}

.feature-circle[data-position="bottom-right"] {
  bottom: 15%;
  right: 0;
}

.feature-circle[data-position="bottom"] {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.feature-circle[data-position="bottom-left"] {
  bottom: 15%;
  left: 0;
}

.feature-circle[data-position="top-left"] {
  top: 15%;
  left: 0;
}

.circle-content {
  text-align: center;
  padding: 1rem;
}

.circle-content h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #00bfff;
}

.circle-content p {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Games Showcase */
.games-showcase {
  padding: 80px 0;
  text-align: center;
}

.games-showcase h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #00bfff;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.game-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 191, 255, 0.3);
}

.game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.game-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2rem;
  color: white;
}

.game-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #ffd700;
}

/* Getting Started */
.getting-started {
  padding: 80px 0;
  text-align: center;
}

.getting-started h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #00bfff;
}

.steps-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.parrot-mascot img {
  width: 150px;
  height: auto;
}

.steps {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.step {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(0, 191, 255, 0.3);
  max-width: 250px;
}

.step-number {
  background: linear-gradient(45deg, #00bfff, #1e90ff);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.step-content h3 {
  color: #00bfff;
  margin-bottom: 0.5rem;
}

.step-arrow {
  font-size: 2rem;
  color: #00bfff;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: rgba(10, 20, 40, 0.95);
  padding: 3rem 0 1rem;
  border-top: 2px solid #00bfff;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: #00bfff;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #00bfff;
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.2);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 191, 255, 0.3);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-badges span {
  background: rgba(0, 191, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(10, 20, 40, 0.95);
  backdrop-filter: blur(10px);
  border: 2px solid #00bfff;
  border-radius: 15px;
  padding: 1.5rem;
  max-width: 400px;
  z-index: 1001;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cookie-content p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.hamburger {
  display: none;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    flex-direction: column;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(10, 20, 40, 0.98);
    backdrop-filter: blur(10px);
    padding-top: 2rem;
    align-items: center;
    justify-content: flex-start;
    transition: left 0.3s ease;
    z-index: 1000;
  }

  .nav-menu.active {
    left: 0;
  }
}

.responsive-img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Tournament Page Styles */
.tournaments-page {
  padding-top: 100px;
  min-height: 100vh;
}

.page-header {
  text-align: center;
  padding: 2rem 0 3rem;
}

.page-header h1 {
  font-size: 3rem;
  color: #00bfff;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #00bfff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Tournament Hero Section */
.tournament-hero {
  margin-bottom: 4rem;
}

.tournament-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid #00bfff;
  box-shadow: 0 10px 30px rgba(0, 191, 255, 0.2);
}

.tournament-featured img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
}

.tournament-info h2 {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tournament-info p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.tournament-prize {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.prize-amount {
  display: block;
  font-size: 2rem;
  font-weight: 700;
}

.prize-label {
  font-size: 1rem;
  opacity: 0.8;
}

.tournament-timer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.countdown {
  display: flex;
  gap: 0.5rem;
  font-family: "Courier New", monospace;
  font-weight: 700;
  color: #00bfff;
}

.countdown span {
  background: rgba(0, 191, 255, 0.2);
  padding: 0.5rem;
  border-radius: 5px;
  min-width: 40px;
  text-align: center;
}

/* Tournaments Grid */
.tournaments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.tournament-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(0, 191, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.tournament-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 191, 255, 0.3);
  border-color: #00bfff;
}

.tournament-card.active {
  border-color: #ffd700;
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.tournament-status {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(45deg, #ff4444, #ff6b6b);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 2;
}

.tournament-card.active .tournament-status {
  background: linear-gradient(45deg, #00ff00, #32cd32);
  animation: pulse 2s infinite;
}

.tournament-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.tournament-details {
  padding: 1.5rem;
}

.tournament-details h3 {
  font-size: 1.5rem;
  color: #00bfff;
  margin-bottom: 0.5rem;
}

.tournament-details p {
  opacity: 0.8;
  margin-bottom: 1rem;
}

.tournament-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat {
  text-align: center;
  background: rgba(0, 191, 255, 0.1);
  padding: 1rem;
  border-radius: 10px;
}

.stat-value {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #00bfff;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.7;
}

.tournament-btn {
  width: 100%;
  background: linear-gradient(45deg, #00bfff, #1e90ff);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-family: "Amita", cursive;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.tournament-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 191, 255, 0.4);
}

/* Leaderboard Section */
.leaderboard-section {
  margin-bottom: 4rem;
}

.leaderboard-section h2 {
  font-size: 2.5rem;
  color: #ffd700;
  text-align: center;
  margin-bottom: 2rem;
}

.leaderboard {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(0, 191, 255, 0.3);
}

.leaderboard-item {
  display: grid;
  grid-template-columns: 60px 1fr auto auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.leaderboard-item:last-child {
  border-bottom: none;
}

.leaderboard-item:hover {
  background: rgba(0, 191, 255, 0.1);
  border-radius: 10px;
}

.rank {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}

.rank-1 {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000;
  border-radius: 10px;
  margin-bottom: 0.5rem;
}

.rank-2 {
  background: linear-gradient(45deg, #c0c0c0, #e8e8e8);
  color: #000;
  border-radius: 10px;
  margin-bottom: 0.5rem;
}

.rank-3 {
  background: linear-gradient(45deg, #cd7f32, #daa520);
  color: #fff;
  border-radius: 10px;
  margin-bottom: 0.5rem;
}

.player-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.player-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #00bfff;
}

.player-info h4 {
  color: #00bfff;
  margin-bottom: 0.2rem;
}

.player-info p {
  opacity: 0.7;
  font-size: 0.9rem;
}

.score {
  font-weight: 700;
  color: #ffd700;
  font-size: 1.1rem;
}

.prize {
  background: linear-gradient(45deg, #00ff00, #32cd32);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
}

/* Tournament Rules */
.tournament-rules {
  margin-bottom: 4rem;
}

.tournament-rules h2 {
  font-size: 2.5rem;
  color: #00bfff;
  text-align: center;
  margin-bottom: 2rem;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.rule-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(0, 191, 255, 0.3);
  transition: all 0.3s ease;
}

.rule-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 191, 255, 0.2);
  border-color: #00bfff;
}

.rule-card h3 {
  color: #ffd700;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.rule-card ul {
  list-style: none;
  padding: 0;
}

.rule-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  padding-left: 1.5rem;
}

.rule-card li:last-child {
  border-bottom: none;
}

.rule-card li::before {
  content: "⚓";
  position: absolute;
  left: 0;
  color: #00bfff;
}

/* Animations */
@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

/* Responsive Design for Tournament Page */
@media (max-width: 768px) {
  .tournaments-page {
    padding-top: 80px;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .tournament-featured {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }

  .tournament-info h2 {
    font-size: 2rem;
  }

  .tournaments-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .tournament-stats {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .leaderboard-item {
    grid-template-columns: 50px 1fr;
    gap: 0.5rem;
  }

  .score,
  .prize {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 0.5rem;
  }

  .rules-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .tournament-timer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .countdown {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .tournament-featured {
    padding: 1rem;
  }

  .tournament-details {
    padding: 1rem;
  }

  .leaderboard {
    padding: 1rem;
  }

  .rule-card {
    padding: 1.5rem;
  }

  .prize-amount {
    font-size: 1.5rem;
  }

  .tournament-info h2 {
    font-size: 1.5rem;
  }
}

/* Additional Tournament Page Specific Styles */
.tournament-card[data-status="live"] .tournament-status {
  background: linear-gradient(45deg, #ff4444, #ff6b6b);
  animation: pulse 2s infinite;
}

.tournament-card[data-status="soon"] .tournament-status {
  background: linear-gradient(45deg, #ffa500, #ffb347);
}

.tournament-card[data-status="special"] .tournament-status {
  background: linear-gradient(45deg, #9932cc, #ba55d3);
}

.tournament-card[data-status="pvp"] .tournament-status {
  background: linear-gradient(45deg, #dc143c, #ff1493);
}

/* Success Page Styles */
.success-page {
  padding-top: 100px;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-content {
  text-align: center;
  max-width: 600px;
  padding: 2rem;
}

.success-animation img {
  width: 200px;
  height: 200px;
  margin-bottom: 2rem;
  animation: bounce 2s infinite;
}

.success-content h1 {
  font-size: 2.5rem;
  color: #00bfff;
  margin-bottom: 1rem;
}

.success-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.success-bonus {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  border: 2px solid #ffd700;
  margin-top: 2rem;
}

.bonus-card h3 {
  color: #ffd700;
  margin-bottom: 1rem;
}

.bonus-code {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000;
  padding: 1rem;
  border-radius: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1rem 0;
  letter-spacing: 2px;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

/* Bonuses Page Styles */
.bonuses-page {
  padding-top: 100px;
  min-height: 100vh;
}

/* Welcome Bonus Section */
.welcome-bonus {
  margin-bottom: 4rem;
}

.bonus-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.2),
    rgba(0, 191, 255, 0.2)
  );
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  border: 2px solid #ffd700;
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.bonus-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

.bonus-hero img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.bonus-content {
  position: relative;
  z-index: 2;
}

.bonus-content h2 {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: glow 2s ease-in-out infinite alternate;
}

.bonus-amount {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  text-align: center;
  animation: shimmer 3s ease-in-out infinite;
}

.bonus-features {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.bonus-features li {
  padding: 0.5rem 0;
  font-size: 1.1rem;
  position: relative;
  padding-left: 2rem;
}

.bonus-features li::before {
  content: attr(data-icon);
  position: absolute;
  left: 0;
  color: #00bfff;
  font-size: 1.2rem;
}

.bonus-terms {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 1rem;
  font-style: italic;
}

/* Daily Bonuses Calendar */
.daily-bonuses {
  margin-bottom: 4rem;
  text-align: center;
}

.daily-bonuses h2 {
  font-size: 2.5rem;
  color: #00bfff;
  margin-bottom: 2rem;
}

.daily-calendar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.day-bonus {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 1.5rem;
  border: 2px solid rgba(0, 191, 255, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.day-bonus:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 191, 255, 0.3);
}

.day-bonus.current {
  border-color: #ffd700;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  animation: pulse-gold 2s infinite;
}

.day-bonus.claimed {
  opacity: 0.6;
  border-color: #32cd32;
}

.day-bonus.special {
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.2),
    rgba(255, 140, 0, 0.2)
  );
  border-color: #ffd700;
}

.day-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: #00bfff;
  margin-bottom: 0.5rem;
}

.bonus-icon {
  font-size: 2rem;
  margin: 0.5rem 0;
}

.bonus-reward {
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.status {
  font-size: 0.9rem;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-weight: 600;
}

.status.claimed {
  background: rgba(50, 205, 50, 0.3);
  color: #32cd32;
}

.status.available {
  background: rgba(255, 215, 0, 0.3);
  color: #ffd700;
  animation: blink 1.5s infinite;
}

.status.locked {
  background: rgba(128, 128, 128, 0.3);
  color: #888;
}

/* Bonus Categories Grid */
.bonus-categories {
  margin-bottom: 4rem;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.bonus-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(0, 191, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.bonus-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 191, 255, 0.3);
  border-color: #00bfff;
}

.bonus-header {
  position: relative;
  padding: 1rem;
  background: linear-gradient(
    135deg,
    rgba(0, 191, 255, 0.2),
    rgba(30, 144, 255, 0.2)
  );
}

.bonus-header h3 {
  color: #00bfff;
  margin-bottom: 0;
  font-size: 1.3rem;
}

.bonus-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(45deg, #ff4444, #ff6b6b);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.bonus-badge[data-icon="POPULAR"] {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000;
}

.bonus-badge[data-icon="HOT"] {
  background: linear-gradient(45deg, #ff4444, #ff6b6b);
  animation: pulse 2s infinite;
}

.bonus-badge[data-icon="EXCLUSIVE"] {
  background: linear-gradient(45deg, #9932cc, #ba55d3);
}

.bonus-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.bonus-details {
  padding: 1.5rem;
}

.bonus-details p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.bonus-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd700;
  text-align: center;
  margin: 1rem 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.bonus-details ul {
  list-style: none;
  margin-bottom: 1.5rem;
  padding: 0;
}

.bonus-details li {
  padding: 0.3rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.bonus-details li::before {
  position: absolute;
  left: 0;
  color: #00bfff;
}

.bonus-btn {
  width: 100%;
  background: linear-gradient(45deg, #00bfff, #1e90ff);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-family: "Amita", cursive;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.bonus-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 191, 255, 0.4);
}

/* Seasonal Bonuses */
.seasonal-bonuses {
  margin-bottom: 4rem;
}

.seasonal-bonuses h2 {
  font-size: 2.5rem;
  color: #ffd700;
  text-align: center;
  margin-bottom: 2rem;
}

.seasonal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.seasonal-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid rgba(0, 191, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.seasonal-card.active {
  border-color: #ffd700;
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.seasonal-card:hover {
  transform: translateY(-5px);
}

.seasonal-timer {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.8);
  color: #ffd700;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  z-index: 2;
}

.seasonal-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.seasonal-content {
  padding: 1.5rem;
}

.seasonal-content h3 {
  color: #ffd700;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.seasonal-rewards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.reward {
  background: rgba(0, 191, 255, 0.2);
  color: #00bfff;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
}

.seasonal-btn {
  width: 100%;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-family: "Amita", cursive;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.seasonal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.seasonal-btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background: #666;
  color: #ccc;
}

/* Bonus Calculator */
.bonus-calculator {
  margin-bottom: 4rem;
}

.bonus-calculator h2 {
  font-size: 2.5rem;
  color: #00bfff;
  text-align: center;
  margin-bottom: 2rem;
}

.calculator-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(0, 191, 255, 0.3);
}

.calculator-input {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.calculator-input label {
  color: #00bfff;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.calculator-input input,
.calculator-input select {
  padding: 12px;
  border: 2px solid #00bfff;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-family: "Amita", cursive;
  font-size: 1rem;
}

.calculator-input input:focus,
.calculator-input select:focus {
  outline: none;
  border-color: #ffd700;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.result-display {
  background: rgba(0, 191, 255, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid #00bfff;
}

.result-display h3 {
  color: #ffd700;
  margin-bottom: 1rem;
  text-align: center;
}

.result-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-item:last-child {
  border-bottom: none;
}

.result-total {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-top: 2px solid #ffd700;
  margin-top: 1rem;
  font-weight: 700;
  font-size: 1.2rem;
  color: #ffd700;
}

/* Bonus Terms Accordion */
.bonus-terms {
  margin-bottom: 4rem;
}

.bonus-terms h2 {
  font-size: 2.5rem;
  color: #00bfff;
  text-align: center;
  margin-bottom: 2rem;
}

.terms-accordion {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(0, 191, 255, 0.3);
}

.term-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.term-item:last-child {
  border-bottom: none;
}

.term-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.term-header:hover {
  background: rgba(0, 191, 255, 0.1);
}

.term-header h3 {
  color: #ffd700;
  margin: 0;
}

.accordion-icon {
  font-size: 1.5rem;
  color: #00bfff;
  transition: transform 0.3s ease;
}

.term-item.active .accordion-icon {
  transform: rotate(45deg);
}

.term-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
}

.term-content ul {
  list-style: none;
  padding: 1.5rem;
  margin: 0;
}

.term-content li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.term-content li::before {
  content: "⚠️";
  position: absolute;
  left: 0;
}

/* Animations */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes glow {
  from {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  to {
    text-shadow: 2px 2px 20px rgba(255, 215, 0, 0.8);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes pulse-gold {
  0% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
  }
  100% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  }
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0.5;
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Responsive Design for Bonuses Page */
@media (max-width: 768px) {
  .bonuses-page {
    padding-top: 80px;
  }

  .bonus-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .bonus-content h2 {
    font-size: 2rem;
  }

  .bonus-amount {
    font-size: 2rem;
  }

  .daily-calendar {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .day-bonus {
    padding: 1rem;
  }

  .bonus-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .seasonal-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .calculator-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .bonus-hero {
    padding: 1.5rem;
  }

  .bonus-content h2 {
    font-size: 1.5rem;
  }

  .bonus-amount {
    font-size: 1.5rem;
  }

  .daily-calendar {
    grid-template-columns: repeat(2, 1fr);
  }

  .day-bonus {
    padding: 0.8rem;
  }

  .bonus-details {
    padding: 1rem;
  }

  .seasonal-content {
    padding: 1rem;
  }

  .calculator-container {
    padding: 1rem;
  }
}

/* Games Page Styles */
.games-page {
  padding-top: 100px;
  min-height: 100vh;
}

/* Games Filter */
.games-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(0, 191, 255, 0.3);
  padding: 12px 24px;
  border-radius: 25px;
  font-family: "Amita", cursive;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.filter-btn:hover {
  border-color: #00bfff;
  background: rgba(0, 191, 255, 0.2);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: linear-gradient(45deg, #00bfff, #1e90ff);
  border-color: #00bfff;
  box-shadow: 0 5px 15px rgba(0, 191, 255, 0.4);
  transform: translateY(-2px);
}

/* Games Grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.game-item {
  transition: all 0.3s ease;
}

.game-item[style*="display: none"] {
  display: none !important;
}

.game-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(0, 191, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 191, 255, 0.3);
  border-color: #00bfff;
}

.game-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(0, 191, 255, 0.1),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.game-card:hover::before {
  opacity: 1;
}

.game-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-card:hover img {
  transform: scale(1.05);
}

.game-info {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.game-info h3 {
  font-size: 1.5rem;
  color: #00bfff;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.game-info p {
  opacity: 0.8;
  margin-bottom: 1rem;
  flex-grow: 1;
  line-height: 1.5;
}

.game-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.jackpot {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
  animation: jackpot-glow 2s ease-in-out infinite alternate;
}

.rating {
  color: #ffd700;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.play-btn {
  width: 100%;
  background: linear-gradient(45deg, #00bfff, #1e90ff);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-family: "Amita", cursive;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.play-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.play-btn:hover::before {
  left: 100%;
}

.play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 191, 255, 0.4);
}

.play-btn:active {
  transform: translateY(0);
}

/* Game Categories Styling */
.game-item[data-category*="jackpot"] .game-card {
  border-color: rgba(255, 215, 0, 0.5);
}

.game-item[data-category*="jackpot"] .game-card:hover {
  border-color: #ffd700;
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

.game-item[data-category*="adventure"] .game-card {
  border-color: rgba(255, 140, 0, 0.5);
}

.game-item[data-category*="adventure"] .game-card:hover {
  border-color: #ff8c00;
  box-shadow: 0 15px 30px rgba(255, 140, 0, 0.3);
}

.game-item[data-category*="classic"] .game-card {
  border-color: rgba(128, 0, 128, 0.5);
}

.game-item[data-category*="classic"] .game-card:hover {
  border-color: #800080;
  box-shadow: 0 15px 30px rgba(128, 0, 128, 0.3);
}

/* Games CTA Section */
.games-cta {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  border: 2px solid #00bfff;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.games-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(0, 191, 255, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 15s linear infinite;
}

.games-cta h2 {
  font-size: 2.5rem;
  color: #00bfff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.games-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.games-cta .btn-primary,
.games-cta .btn-secondary {
  margin: 0 0.5rem;
  position: relative;
  z-index: 2;
}

/* Game Loading Animation */
.game-loading {
  display: none;
  text-align: center;
  padding: 2rem;
  color: #00bfff;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(0, 191, 255, 0.3);
  border-top: 4px solid #00bfff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

/* Game Categories Icons */
.filter-btn[data-filter="slots"]::before {
  content: "🎰 ";
}

.filter-btn[data-filter="jackpot"]::before {
  content: "💰 ";
}

.filter-btn[data-filter="adventure"]::before {
  content: "🗺️ ";
}

.filter-btn[data-filter="classic"]::before {
  content: "⚓ ";
}

.filter-btn[data-filter="all"]::before {
  content: "🎮 ";
}

/* Game Hover Effects */
.game-card {
  position: relative;
}

.game-card::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: rgba(0, 191, 255, 0.8);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.game-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

/* Special Game Badges */
.game-card[data-featured="true"]::before {
  content: "⭐ FEATURED";
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 3;
}

.game-card[data-new="true"]::before {
  content: "🆕 NEW";
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(45deg, #32cd32, #90ee90);
  color: #000;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 3;
}

.game-card[data-hot="true"]::before {
  content: "🔥 HOT";
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(45deg, #ff4444, #ff6b6b);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 3;
  animation: pulse 2s infinite;
}

/* Game Search (if needed) */
.game-search {
  max-width: 400px;
  margin: 0 auto 2rem;
  position: relative;
}

.game-search input {
  width: 100%;
  padding: 12px 20px 12px 50px;
  border: 2px solid rgba(0, 191, 255, 0.3);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  font-family: "Amita", cursive;
  font-size: 1rem;
}

.game-search input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.game-search input:focus {
  outline: none;
  border-color: #00bfff;
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.3);
}

.game-search::before {
  content: "🔍";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  z-index: 2;
}

/* No Results Message */
.no-results {
  text-align: center;
  padding: 3rem;
  color: #00bfff;
  display: none;
}

.no-results.show {
  display: block;
}

.no-results h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.no-results p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

/* Animations */
@keyframes jackpot-glow {
  from {
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
  }
  to {
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.6);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Game Card Entrance Animation */
.game-item {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.game-item:nth-child(1) {
  animation-delay: 0.1s;
}
.game-item:nth-child(2) {
  animation-delay: 0.2s;
}
.game-item:nth-child(3) {
  animation-delay: 0.3s;
}
.game-item:nth-child(4) {
  animation-delay: 0.4s;
}
.game-item:nth-child(5) {
  animation-delay: 0.5s;
}
.game-item:nth-child(6) {
  animation-delay: 0.6s;
}
.game-item:nth-child(7) {
  animation-delay: 0.7s;
}
.game-item:nth-child(8) {
  animation-delay: 0.8s;
}

/* Responsive Design for Games Page */
@media (max-width: 768px) {
  .games-page {
    padding-top: 80px;
  }

  .games-filter {
    gap: 0.5rem;
    margin-bottom: 2rem;
  }

  .filter-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .games-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .game-card img {
    height: 200px;
  }

  .game-info {
    padding: 1rem;
  }

  .game-info h3 {
    font-size: 1.3rem;
  }

  .game-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .games-cta {
    padding: 2rem;
  }

  .games-cta h2 {
    font-size: 2rem;
  }

  .games-cta .btn-primary,
  .games-cta .btn-secondary {
    display: block;
    margin: 0.5rem 0;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .games-filter {
    flex-direction: column;
    align-items: center;
  }

  .filter-btn {
    width: 200px;
    text-align: center;
  }

  .game-info {
    padding: 0.8rem;
  }

  .game-info h3 {
    font-size: 1.2rem;
  }

  .jackpot {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .games-cta {
    padding: 1.5rem;
  }

  .games-cta h2 {
    font-size: 1.8rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }
}

/* Special Effects for Premium Games */
.game-card.premium {
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.1),
    rgba(255, 140, 0, 0.1)
  );
  border: 2px solid #ffd700;
}

.game-card.premium::before {
  background: linear-gradient(
    45deg,
    rgba(255, 215, 0, 0.2),
    rgba(255, 140, 0, 0.2)
  );
}

.game-card.premium:hover {
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
  transform: translateY(-15px);
}

/* Game Categories Color Coding */
.filter-btn[data-filter="slots"].active {
  background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
}

.filter-btn[data-filter="jackpot"].active {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000;
}

.filter-btn[data-filter="adventure"].active {
  background: linear-gradient(45deg, #ff8c00, #ffa500);
}

.filter-btn[data-filter="classic"].active {
  background: linear-gradient(45deg, #9932cc, #ba55d3);
}

/* About Page Styles */
.about-page {
  padding-top: 100px;
  min-height: 100vh;
}

/* About Hero Section */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
  padding: 2rem 0;
}

.hero-content h1 {
  font-size: 3rem;
  color: #00bfff;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #00bfff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 191, 255, 0.3);
}

/* Story Section */
.story-section {
  margin-bottom: 5rem;
}

.story-section h2 {
  font-size: 2.5rem;
  color: #ffd700;
  text-align: center;
  margin-bottom: 3rem;
}

.story-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.story-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(0, 191, 255, 0.3);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 191, 255, 0.2);
  border-color: #00bfff;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #00bfff;
  font-weight: 600;
}

/* Crew Section */
.crew-section {
  margin-bottom: 5rem;
}

.crew-section h2 {
  font-size: 2.5rem;
  color: #00bfff;
  text-align: center;
  margin-bottom: 3rem;
}

.crew-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.crew-member {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(0, 191, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.crew-member::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(0, 191, 255, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.crew-member:hover::before {
  opacity: 1;
  animation: rotate 10s linear infinite;
}

.crew-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 191, 255, 0.3);
  border-color: #00bfff;
}

.crew-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 3px solid #00bfff;
  position: relative;
  z-index: 2;
}

.crew-member h3 {
  color: #ffd700;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  position: relative;
  z-index: 2;
}

.crew-role {
  color: #00bfff;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.crew-member p {
  opacity: 0.8;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

/* Values Section */
.values-section {
  margin-bottom: 5rem;
}

.values-section h2 {
  font-size: 2.5rem;
  color: #ffd700;
  text-align: center;
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(0, 191, 255, 0.3);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 191, 255, 0.2);
  border-color: #00bfff;
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  color: #00bfff;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.value-card p {
  opacity: 0.8;
  line-height: 1.5;
}

/* Achievements Timeline */
.achievements-section {
  margin-bottom: 5rem;
}

.achievements-section h2 {
  font-size: 2.5rem;
  color: #00bfff;
  text-align: center;
  margin-bottom: 3rem;
}

.achievements-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.achievements-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #00bfff, #ffd700);
  transform: translateX(-50%);
}

.achievement-item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.achievement-item:nth-child(odd) {
  flex-direction: row;
}

.achievement-item:nth-child(even) {
  flex-direction: row-reverse;
}

.achievement-year {
  background: linear-gradient(45deg, #00bfff, #1e90ff);
  color: white;
  padding: 1rem;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
  min-width: 80px;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 191, 255, 0.3);
}

.achievement-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(0, 191, 255, 0.3);
  margin: 0 2rem;
  flex: 1;
  transition: all 0.3s ease;
}

.achievement-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 191, 255, 0.2);
  border-color: #00bfff;
}

.achievement-content h3 {
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.achievement-content p {
  opacity: 0.8;
}

/* Mission Section */
.mission-section {
  margin-bottom: 5rem;
}

.mission-section h2 {
  font-size: 2.5rem;
  color: #ffd700;
  text-align: center;
  margin-bottom: 3rem;
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mission-card,
.vision-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(0, 191, 255, 0.3);
  transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 191, 255, 0.2);
  border-color: #00bfff;
}

.mission-card h3,
.vision-card h3 {
  color: #00bfff;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.mission-card p,
.vision-card p {
  opacity: 0.9;
  line-height: 1.6;
}

/* Join Crew Section */
.join-crew-section {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  border: 2px solid #ffd700;
  margin-bottom: 4rem;
}

.join-crew-section h2 {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 2rem;
}

.join-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.join-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Contact Page Styles */
.contact-page {
  padding-top: 100px;
  min-height: 100vh;
}

/* Contact Methods Grid */
.contact-methods {
  margin-bottom: 4rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(0, 191, 255, 0.3);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 191, 255, 0.3);
  border-color: #00bfff;
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #00bfff;
}

.contact-card h3 {
  color: #ffd700;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.contact-card p {
  opacity: 0.8;
  margin-bottom: 1rem;
}

.contact-info {
  margin-top: 1rem;
}

.contact-info strong {
  color: #00bfff;
  font-size: 1.1rem;
}

.chat-btn {
  background: linear-gradient(45deg, #32cd32, #90ee90);
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-family: "Amita", cursive;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.chat-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(50, 205, 50, 0.4);
}

.social-links a {
  display: inline-block;
  margin: 0 0.5rem;
  color: #00bfff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.2);
  color: #ffd700;
}

/* Contact Form Section */
.contact-form-section {
  margin-bottom: 4rem;
}

.contact-form-section h2 {
  font-size: 2.5rem;
  color: #00bfff;
  text-align: center;
  margin-bottom: 3rem;
}

.form-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(0, 191, 255, 0.3);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #00bfff;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 2px solid rgba(0, 191, 255, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-family: "Amita", cursive;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00bfff;
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
  margin-right: 0.5rem;
  width: auto;
}

.checkbox-label a {
  color: #00bfff;
  text-decoration: none;
}

.checkbox-label a:hover {
  color: #ffd700;
}

/* Form Sidebar */
.form-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.help-card,
.faq-card,
.hours-card {
  background: rgba(0, 191, 255, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(0, 191, 255, 0.3);
}

.help-card h3,
.faq-card h3,
.hours-card h3 {
  color: #ffd700;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.help-card p,
.faq-card p {
  opacity: 0.8;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.help-btn {
  background: linear-gradient(45deg, #00bfff, #1e90ff);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-family: "Amita", cursive;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.help-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 191, 255, 0.4);
}

.faq-card ul {
  list-style: none;
  padding: 0;
}

.faq-card li {
  margin-bottom: 0.5rem;
}

.faq-card a {
  color: #00bfff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.faq-card a:hover {
  color: #ffd700;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.hours-item span:first-child {
  color: #00bfff;
}

.hours-item span:last-child {
  color: #ffd700;
  font-weight: 600;
}

/* FAQ Section */
.faq-section {
  margin-bottom: 4rem;
}

.faq-section h2 {
  font-size: 2.5rem;
  color: #ffd700;
  text-align: center;
  margin-bottom: 3rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(0, 191, 255, 0.3);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #00bfff;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(0, 191, 255, 0.1);
}

.faq-question h3 {
  color: #00bfff;
  margin: 0;
  font-size: 1.2rem;
}

.faq-toggle {
  font-size: 1.5rem;
  color: #ffd700;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
  padding: 1.5rem;
  margin: 0;
  opacity: 0.9;
  line-height: 1.6;
}

/* Emergency Contact */
.emergency-contact {
  text-align: center;
  margin-bottom: 4rem;
}

.emergency-card {
  background: linear-gradient(
    135deg,
    rgba(255, 68, 68, 0.2),
    rgba(255, 107, 107, 0.2)
  );
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid #ff4444;
  max-width: 600px;
  margin: 0 auto;
}

.emergency-card h2 {
  color: #ff4444;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.emergency-card p {
  opacity: 0.9;
  margin-bottom: 2rem;
}

.emergency-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.emergency-btn {
  background: linear-gradient(45deg, #ff4444, #ff6b6b);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-family: "Amita", cursive;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.emergency-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 68, 68, 0.4);
}

/* Responsive Design for About and Contact Pages */
@media (max-width: 768px) {
  .about-page,
  .contact-page {
    padding-top: 80px;
  }

  .about-hero,
  .story-content,
  .mission-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .crew-grid,
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .achievements-timeline::before {
    left: 30px;
  }

  .achievement-item {
    flex-direction: row !important;
    padding-left: 60px;
  }

  .achievement-year {
    position: absolute;
    left: 0;
    min-width: 60px;
    font-size: 1rem;
    padding: 0.8rem;
  }

  .achievement-content {
    margin: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .form-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .join-actions,
  .emergency-actions {
    flex-direction: column;
    align-items: center;
  }

  .join-actions .btn-primary,
  .join-actions .btn-secondary {
    width: 200px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .story-stats {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2rem;
  }

  .crew-member {
    padding: 1.5rem;
  }

  .crew-member img {
    width: 120px;
    height: 120px;
  }

  .value-card,
  .contact-card {
    padding: 1.5rem;
  }

  .form-container {
    padding: 1rem;
  }

  .emergency-card {
    padding: 1.5rem;
  }

  .emergency-card h2 {
    font-size: 1.5rem;
  }
}

/* Form Validation Styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ff4444;
  box-shadow: 0 0 5px rgba(255, 68, 68, 0.3);
}

.error-message {
  color: #ff4444;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Success States */
.form-group input.success,
.form-group select.success,
.form-group textarea.success {
  border-color: #32cd32;
  box-shadow: 0 0 5px rgba(50, 205, 50, 0.3);
}

/* Policy Page Styles */
.policy-page {
  padding-top: 100px;
  min-height: 100vh;
}

.policy-page .page-header {
  text-align: center;
  margin-bottom: 3rem;
}

.policy-page .page-header h1 {
  font-size: 3rem;
  color: #00bfff;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #00bfff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Policy Navigation Tabs */
.policy-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1rem;
  border-radius: 15px;
  border: 1px solid rgba(0, 191, 255, 0.3);
}

.policy-tab {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(0, 191, 255, 0.3);
  padding: 12px 20px;
  border-radius: 25px;
  font-family: "Amita", cursive;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  white-space: nowrap;
}

.policy-tab:hover {
  border-color: #00bfff;
  background: rgba(0, 191, 255, 0.2);
  transform: translateY(-2px);
}

.policy-tab.active {
  background: linear-gradient(45deg, #00bfff, #1e90ff);
  border-color: #00bfff;
  box-shadow: 0 5px 15px rgba(0, 191, 255, 0.4);
  transform: translateY(-2px);
}

/* Policy Content */
.policy-content {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(0, 191, 255, 0.3);
  margin-bottom: 2rem;
  animation: fadeIn 0.5s ease-out;
}

.policy-content.active {
  display: block;
}

.policy-content h2 {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 1rem;
  border-bottom: 2px solid #ffd700;
  padding-bottom: 0.5rem;
}

.policy-content h3 {
  font-size: 1.8rem;
  color: #00bfff;
  margin: 2rem 0 1rem 0;
  position: relative;
  padding-left: 2rem;
}

.policy-content h3::before {
  content: "⚓";
  position: absolute;
  left: 0;
  color: #ffd700;
}

.policy-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.policy-content p strong {
  color: #00bfff;
  font-weight: 700;
}

.policy-content ul {
  margin: 1rem 0 1.5rem 2rem;
  list-style: none;
}

.policy-content li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 2rem;
  line-height: 1.6;
}

.policy-content li::before {
  content: "🏴‍☠️";
  position: absolute;
  left: 0;
  top: 0;
}

.policy-content a {
  color: #00bfff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.policy-content a:hover {
  color: #ffd700;
  text-decoration: underline;
}

/* Special Policy Sections */
.policy-content#gdpr {
  border-color: rgba(255, 215, 0, 0.5);
}

.policy-content#gdpr h2 {
  color: #ffd700;
}

.policy-content#gdpr h3 {
  color: #ffd700;
}

.policy-content#gdpr h3::before {
  content: "🇪🇺";
}

.policy-content#cookies {
  border-color: rgba(255, 140, 0, 0.5);
}

.policy-content#cookies h3::before {
  content: "🍪";
}

.policy-content#responsible {
  border-color: rgba(255, 68, 68, 0.5);
}

.policy-content#responsible h2 {
  color: #ff6b6b;
}

.policy-content#responsible h3 {
  color: #ff6b6b;
}

.policy-content#responsible h3::before {
  content: "🎯";
}

/* Policy Highlights */
.policy-highlight {
  background: rgba(255, 215, 0, 0.2);
  border-left: 4px solid #ffd700;
  padding: 1rem;
  margin: 1.5rem 0;
  border-radius: 0 10px 10px 0;
}

.policy-highlight p {
  margin: 0;
  font-weight: 600;
  color: #ffd700;
}

/* Policy Warning Box */
.policy-warning {
  background: rgba(255, 68, 68, 0.2);
  border: 2px solid #ff4444;
  border-radius: 10px;
  padding: 1.5rem;
  margin: 2rem 0;
  position: relative;
}

.policy-warning::before {
  content: "⚠️";
  font-size: 2rem;
  position: absolute;
  top: -10px;
  left: 20px;
  background: rgba(10, 20, 40, 1);
  padding: 0 10px;
}

.policy-warning h4 {
  color: #ff6b6b;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.policy-warning p {
  margin: 0;
  font-weight: 600;
}

/* Success Page Styles */
.success-page {
  padding-top: 100px;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-content {
  text-align: center;
  max-width: 700px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 2px solid #32cd32;
  box-shadow: 0 15px 35px rgba(50, 205, 50, 0.3);
  position: relative;
  overflow: hidden;
}

.success-content::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(50, 205, 50, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

.success-animation {
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
}

.success-animation img {
  width: 200px;
  height: 200px;
  margin-bottom: 1rem;
  animation: bounce 2s infinite;
  filter: drop-shadow(0 10px 20px rgba(50, 205, 50, 0.3));
}

.success-content h1 {
  font-size: 2.8rem;
  color: #32cd32;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: glow-green 2s ease-in-out infinite alternate;
}

.success-content p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  position: relative;
  z-index: 2;
  line-height: 1.6;
}

.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.success-actions .btn-primary {
  background: linear-gradient(45deg, #32cd32, #90ee90);
  color: #000;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(50, 205, 50, 0.4);
}

.success-actions .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(50, 205, 50, 0.5);
}

.success-actions .btn-secondary {
  background: linear-gradient(45deg, #00bfff, #1e90ff);
  color: white;
  border: none;
}

/* Success Bonus Section */
.success-bonus {
  position: relative;
  z-index: 2;
}

.bonus-card {
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.2),
    rgba(255, 140, 0, 0.2)
  );
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  border: 2px solid #ffd700;
  margin-top: 2rem;
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
  border-radius: 15px;
  z-index: -1;
  animation: border-glow 3s ease-in-out infinite;
}

.bonus-card h3 {
  color: #ffd700;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.bonus-card p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.bonus-code {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000;
  padding: 1.5rem;
  border-radius: 10px;
  font-size: 2rem;
  font-weight: 700;
  margin: 1.5rem 0;
  letter-spacing: 3px;
  font-family: "Courier New", monospace;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.bonus-code::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: shine 3s ease-in-out infinite;
}

/* Success Confetti Animation */
.success-content::after {
  content: "🎉🎊✨🏆💰🎁";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 2rem;
  opacity: 0.3;
  animation: confetti 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

/* Policy Table Styles (if needed) */
.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.policy-table th,
.policy-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(0, 191, 255, 0.3);
}

.policy-table th {
  background: rgba(0, 191, 255, 0.2);
  color: #00bfff;
  font-weight: 700;
}

.policy-table tr:hover {
  background: rgba(0, 191, 255, 0.1);
}

/* Policy Contact Info */
.policy-contact {
  background: rgba(0, 191, 255, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 2rem 0;
  border-left: 4px solid #00bfff;
}

.policy-contact h4 {
  color: #00bfff;
  margin-bottom: 1rem;
}

.policy-contact p {
  margin: 0.5rem 0;
}

.policy-contact strong {
  color: #ffd700;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

@keyframes glow-green {
  from {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
  to {
    text-shadow: 2px 2px 20px rgba(50, 205, 50, 0.8);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes border-glow {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes confetti {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.6;
  }
  100% {
    transform: translateY(0) rotate(360deg);
    opacity: 0.3;
  }
}

/* Responsive Design for Policy and Success Pages */
@media (max-width: 768px) {
  .policy-page,
  .success-page {
    padding-top: 80px;
  }

  .policy-page .page-header h1 {
    font-size: 2rem;
  }

  .policy-nav {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
  }

  .policy-tab {
    width: 200px;
    text-align: center;
    font-size: 0.8rem;
    padding: 10px 16px;
  }

  .policy-content {
    padding: 2rem;
  }

  .policy-content h2 {
    font-size: 2rem;
  }

  .policy-content h3 {
    font-size: 1.5rem;
  }

  .policy-content p,
  .policy-content li {
    font-size: 1rem;
  }

  .success-content {
    margin: 1rem;
    padding: 1.5rem;
  }

  .success-content h1 {
    font-size: 2rem;
  }

  .success-content p {
    font-size: 1.1rem;
  }

  .success-actions {
    flex-direction: column;
    align-items: center;
  }

  .success-actions .btn-primary,
  .success-actions .btn-secondary {
    width: 200px;
  }

  .bonus-card {
    padding: 1.5rem;
  }

  .bonus-code {
    font-size: 1.5rem;
    letter-spacing: 2px;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .policy-content {
    padding: 1.5rem;
  }

  .policy-content h2 {
    font-size: 1.8rem;
  }

  .policy-content h3 {
    font-size: 1.3rem;
    padding-left: 1.5rem;
  }

  .policy-content ul {
    margin-left: 1rem;
  }

  .policy-content li {
    padding-left: 1.5rem;
  }

  .success-content {
    padding: 1rem;
  }

  .success-content h1 {
    font-size: 1.8rem;
  }

  .success-animation img {
    width: 150px;
    height: 150px;
  }

  .bonus-card {
    padding: 1rem;
  }

  .bonus-card h3 {
    font-size: 1.5rem;
  }

  .bonus-code {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }

  .policy-table {
    font-size: 0.9rem;
  }

  .policy-table th,
  .policy-table td {
    padding: 0.8rem;
  }
}

/* Print Styles for Policy Page */
@media print {
  .policy-page {
    padding-top: 0;
  }

  .policy-nav {
    display: none;
  }

  .policy-content {
    display: block !important;
    background: white;
    color: black;
    border: none;
    box-shadow: none;
    page-break-inside: avoid;
  }

  .policy-content h2,
  .policy-content h3 {
    color: black;
  }

  .policy-content a {
    color: black;
    text-decoration: underline;
  }
}

/* Dark Mode Adjustments (if needed) */
@media (prefers-color-scheme: dark) {
  .policy-content {
    background: rgba(0, 0, 0, 0.3);
  }

  .success-content {
    background: rgba(0, 0, 0, 0.3);
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .policy-content,
  .success-content {
    border-width: 3px;
  }

  .policy-tab.active {
    border-width: 3px;
  }

  .bonus-card {
    border-width: 3px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .success-animation img,
  .bonus-code::before,
  .success-content::before,
  .success-content::after {
    animation: none;
  }

  .policy-content {
    animation: none;
  }
}

/* Mobile fallback layout */
@media (max-width: 1024px) {
  .circle-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    position: relative;
  }

  .center-ship {
    order: 0;
    position: relative;
    transform: none;
  }

  .feature-circle {
    position: relative !important;
    transform: none !important;
    width: 90%;
    max-width: 350px;
    height: auto;
    padding: 1.5rem;
  }

  .circle-content {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .circular-features h2 {
    font-size: 1.8rem;
    padding: 0 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 0;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .btn-primary img,
  .btn-secondary img {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 8px;
  }
}

/* Hero Section Responsive */
@media (max-width: 1200px) {
  .hero {
    padding: 120px 100px;
  }

  .hero-content {
    gap: 3rem;
  }

  .hero-text h1 {
    font-size: 3rem;
  }
}

@media (max-width: 1024px) {
  .hero {
    padding: 120px 50px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    justify-content: center;
    gap: 1.5rem;
  }

  .btn-primary,
  .btn-secondary {
    min-width: 200px;
    padding: 15px 20px;
    font-size: 1rem;
  }

  .btn-primary img,
  .btn-secondary img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    vertical-align: middle;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 20px 60px;
  }

  .hero-text h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    padding: 12px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 90px 15px 50px;
  }

  .hero-text h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .hero-text p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .btn-primary,
  .btn-secondary {
    max-width: 250px;
    padding: 10px 14px;
    font-size: 0.85rem;
  }

  .btn-primary img,
  .btn-secondary img {
    width: 20px;
    height: 20px;
  }
}

/* Features Grid Responsive */
@media (max-width: 1024px) {
  .features-grid {
    padding: 60px 0;
  }

  .features-grid h2 {
    font-size: 2.2rem;
    padding: 0 1rem;
  }

  .features-grid > p {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  .grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .features-grid {
    padding: 50px 0;
  }

  .features-grid h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .features-grid > p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .feature-card {
    padding: 1.5rem;
    text-align: center;
  }

  .feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }

  .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
  }
}

@media (max-width: 480px) {
  .features-grid {
    padding: 40px 0;
  }

  .features-grid h2 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .features-grid > p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .feature-card {
    padding: 1.2rem;
  }

  .feature-card h3 {
    font-size: 1.2rem;
    line-height: 1.4;
  }

  .feature-icon {
    font-size: 2.2rem;
  }
}

/* Circular Features Responsive */
@media (max-width: 1200px) {
  .circular-features {
    padding: 60px 0;
  }

  .circle-container {
    width: 500px;
    height: 500px;
  }

  .center-ship img {
    width: 160px;
    height: 160px;
  }

  .feature-circle {
    width: 150px;
    height: 150px;
  }

  .circle-content h4 {
    font-size: 0.9rem;
  }

  .circle-content p {
    font-size: 0.75rem;
  }
}

@media (max-width: 1024px) {
  .circular-features h2 {
    font-size: 2.2rem;
    padding: 0 1rem;
  }

  .circle-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    position: relative;
  }

  .center-ship {
    order: 0;
    position: relative;
    transform: none;
  }

  .center-ship img {
    width: 180px;
    height: 180px;
  }

  .feature-circle {
    position: relative !important;
    transform: none !important;
    width: 90%;
    max-width: 350px;
    height: auto;
    padding: 1.5rem;
    border-radius: 15px;
  }

  .feature-circle[data-position="top"] {
    order: 1;
  }

  .feature-circle[data-position="top-right"] {
    order: 2;
  }

  .feature-circle[data-position="bottom-right"] {
    order: 3;
  }

  .feature-circle[data-position="bottom"] {
    order: 4;
  }

  .feature-circle[data-position="bottom-left"] {
    order: 5;
  }

  .feature-circle[data-position="top-left"] {
    order: 6;
  }

  .circle-content {
    text-align: center;
    padding: 0;
  }

  .circle-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }

  .circle-content p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .circle-content img {
    max-width: 120px;
    height: auto;
  }
}

@media (max-width: 768px) {
  .circular-features {
    padding: 50px 0;
  }

  .circular-features h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .center-ship img {
    width: 150px;
    height: 150px;
  }

  .feature-circle {
    max-width: 300px;
    padding: 1.2rem;
  }

  .circle-content h4 {
    font-size: 1.1rem;
  }

  .circle-content p {
    font-size: 0.9rem;
  }

  .circle-content img {
    max-width: 100px;
  }

  .hero-buttons {
    margin-top: 2rem;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .circular-features {
    padding: 40px 0;
  }

  .circular-features h2 {
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
  }

  .center-ship img {
    width: 120px;
    height: 120px;
  }

  .feature-circle {
    max-width: 280px;
    padding: 1rem;
  }

  .circle-content h4 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }

  .circle-content p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .circle-content img {
    max-width: 80px;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    max-width: 250px;
    font-size: 0.85rem;
  }
}

/* Games Showcase Responsive */
@media (max-width: 1024px) {
  .games-showcase {
    padding: 60px 0;
  }

  .games-showcase h2 {
    font-size: 2.2rem;
    padding: 0 1rem;
  }

  .games-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .games-showcase {
    padding: 50px 0;
  }

  .games-showcase h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .game-card img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .games-showcase {
    padding: 40px 0;
  }

  .games-showcase h2 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .games-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .game-card {
    max-width: 300px;
    margin: 0 auto;
  }

  .game-card img {
    height: 200px;
  }
}

/* Getting Started Responsive */
@media (max-width: 1024px) {
  .getting-started {
    padding: 60px 0;
  }

  .getting-started h2 {
    font-size: 2.2rem;
    padding: 0 1rem;
  }

  .steps-container {
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
  }

  .parrot-mascot {
    order: -1;
  }

  .parrot-mascot img {
    width: 120px;
    height: auto;
  }

  .steps {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 600px;
  }

  .step {
    max-width: none;
    width: 100%;
  }

  .step-arrow {
    transform: rotate(90deg);
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .getting-started {
    padding: 50px 0;
  }

  .getting-started h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .steps-container {
    margin: 1.5rem 0;
  }

  .parrot-mascot img {
    width: 100px;
  }

  .step {
    padding: 1.2rem;
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
  }

  .step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
  }

  .step-content p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .step-arrow {
    display: none;
  }

  .hero-buttons {
    margin-top: 2rem;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .getting-started {
    padding: 40px 0;
  }

  .getting-started h2 {
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
  }

  .parrot-mascot img {
    width: 80px;
  }

  .step {
    padding: 1rem;
  }

  .step-number {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  .step-content h3 {
    font-size: 1.1rem;
  }

  .step-content p {
    font-size: 0.85rem;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    max-width: 250px;
    font-size: 0.85rem;
  }
}

/* Additional responsive utilities */
@media (max-width: 320px) {
  .hero {
    padding: 80px 10px 40px;
  }

  .hero-text h1 {
    font-size: 1.6rem;
  }

  .hero-text p {
    font-size: 0.9rem;
  }

  .features-grid h2,
  .circular-features h2,
  .games-showcase h2,
  .getting-started h2 {
    font-size: 1.4rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .feature-card,
  .step {
    padding: 0.8rem;
  }
}

/* Landscape orientation adjustments for tablets */
@media (max-width: 1024px) and (orientation: landscape) {
  .hero {
    padding: 100px 50px 50px;
  }

  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .circular-features .circle-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
  }

  .feature-circle {
    width: 45%;
    max-width: 300px;
  }

  .steps {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .step {
    width: 30%;
    min-width: 200px;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .btn-primary img,
  .btn-secondary img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .feature-card:hover,
  .game-card:hover,
  .step:hover {
    transform: none;
  }

  .btn-primary:hover,
  .btn-secondary:hover {
    transform: none;
  }
}

/* Print styles */
@media print {
  .hero,
  .features-grid,
  .circular-features,
  .games-showcase,
  .getting-started {
    padding: 20px 0;
    break-inside: avoid;
  }

  .hero-buttons,
  .btn-primary,
  .btn-secondary {
    display: none;
  }

  .hero-text h1 {
    color: black !important;
    background: none !important;
    -webkit-text-fill-color: black !important;
  }
}

@media (max-width: 768px) {
  .features-image {
    display: none;
  }
}
