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

body {
  font-family: "Arial Black", Arial, sans-serif;
  background-color: #2c2c2c;
  color: #ffffff;
  line-height: 1.6;
}

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

/* Header Styles */
.header {
  background-color: #1a1a1a;
  border-bottom: 2px solid #ff6b35;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #ffffff;
}

.logo-icon {
  font-size: 2rem;
}

.logo-main {
  font-size: 1.25rem;
  font-weight: 900;
  color: #ffffff;
}

.logo-sub {
  font-size: 0.75rem;
  font-weight: bold;
  color: #ff6b35;
}

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

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

.cta-desktop {
  display: block;
}

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

.hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background: #ffffff;
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 3px;
  background: #ffffff;
  transition: 0.3s;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid #444;
}

.nav-mobile.active {
  display: flex;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
  text-align: center;
}

.btn-primary {
  background-color: #c41e3a;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #a01729;
  transform: scale(1.05);
}

.btn-hero {
  background-color: #c41e3a;
  color: #ffffff;
  font-size: 1.25rem;
  padding: 1rem 2rem;
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.btn-hero:hover {
  background-color: #a01729;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.btn-cashout {
  background-color: #c41e3a;
  color: #ffffff;
  font-weight: bold;
}

.btn-game {
  background-color: #28a745;
  color: #ffffff;
  font-size: 1.25rem;
  padding: 1rem 2rem;
  width: 100%;
}

.btn-game:hover {
  background-color: #218838;
}

.btn-game.cash-out {
  background-color: #c41e3a;
  animation: pulse 1s infinite;
}

.btn-game.cash-out:hover {
  background-color: #a01729;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #ff6b35 0%, #ffd700 50%, #ff6b35 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
}

.hero .container {
  position: relative;
  text-align: center;
}

.chicken-animation {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
}

.chicken-bounce {
  font-size: 5rem;
  animation: bounce 2s infinite;
}

.chicken-trail {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.25rem;
}

.trail-dot {
  width: 8px;
  height: 8px;
  background-color: #ffd700;
  border-radius: 50%;
  animation: pulse 1s infinite;
}

.trail-dot:nth-child(2) {
  animation-delay: 0.1s;
}

.trail-dot:nth-child(3) {
  animation-delay: 0.2s;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.rtp-badge {
  background-color: #ffd700;
  color: #000000;
  font-weight: 900;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 1.125rem;
}

/* Game Preview Section */
.game-preview {
  padding: 4rem 0;
  background-color: #1a1a1a;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.section-text {
  font-size: 1.25rem;
  color: #e0e0e0;
  margin-bottom: 2rem;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-icon {
  font-size: 1.5rem;
}

.feature-text {
  font-size: 1.125rem;
  font-weight: bold;
  color: #ffffff;
}

.preview-demo {
  display: flex;
  justify-content: center;
}

.game-mockup {
  background-color: #2c2c2c;
  border: 2px solid #ff6b35;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  min-width: 300px;
}

.mockup-chicken {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.mockup-multiplier {
  font-size: 3rem;
  font-weight: 900;
  color: #ffd700;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.mockup-label {
  color: #e0e0e0;
  margin-bottom: 1rem;
}

/* How to Play Section */
.how-to-play {
  padding: 4rem 0;
  background-color: #2c2c2c;
}

.section-title-center {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  margin-bottom: 3rem;
}

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

.step-card {
  background-color: #1a1a1a;
  border: 2px solid #ff6b35;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

.step-card:nth-child(2) {
  border-color: #ffd700;
}

.step-card:nth-child(3) {
  border-color: #c41e3a;
}

.step-number {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 1rem;
}

.step-text {
  color: #e0e0e0;
}

/* Statistics Section */
.statistics {
  padding: 4rem 0;
  background: linear-gradient(135deg, #ff6b35 0%, #c41e3a 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  color: #ffffff;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.25rem;
  color: #ffd700;
  font-weight: bold;
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  border-top: 2px solid #ff6b35;
  padding: 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-description {
  color: #e0e0e0;
  margin-bottom: 1rem;
}

.footer-copyright {
  color: #888;
  font-size: 0.875rem;
}

.footer-title {
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 1rem;
}

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

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

.footer-list a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-list a:hover {
  color: #ff6b35;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #888;
  font-size: 0.875rem;
}

/* Page Specific Styles */
.page-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-top: 2rem;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.25rem;
  color: #e0e0e0;
}

/* Play Page Styles */
.play-page {
  padding: 2rem 0;
  min-height: 100vh;
}

.demo-notice {
  background-color: #ffd700;
  color: #000000;
  padding: 1rem 0;
  text-align: center;
  font-weight: bold;
  font-size: 1.125rem;
}

.play-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.game-section {
  background-color: #1a1a1a;
  border: 2px solid #ff6b35;
  border-radius: 1rem;
  overflow: hidden;
}

.game-header {
  background-color: #ff6b35;
  color: #ffffff;
  padding: 1rem;
  text-align: center;
}

.game-header h1 {
  font-size: 1.5rem;
  font-weight: 900;
}

.game-area {
  background-color: #2c2c2c;
  padding: 3rem;
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.game-chicken {
  font-size: 5rem;
  margin-bottom: 1rem;
  animation: bounce 2s infinite;
}

.game-multiplier {
  font-size: 4rem;
  font-weight: 900;
  color: #ffd700;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.game-label {
  color: #e0e0e0;
  margin-bottom: 1rem;
}

.potential-win {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
}

.game-controls {
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.controls-left,
.controls-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.input-group label {
  color: #ffffff;
  font-weight: bold;
}

.input-group input {
  padding: 0.75rem;
  border: 1px solid #444;
  border-radius: 0.5rem;
  background-color: #2c2c2c;
  color: #ffffff;
  font-size: 1rem;
}

.switch-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #ff6b35;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.balance-display {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1rem;
}

.stats-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stats-card {
  background-color: #1a1a1a;
  border: 2px solid #ffd700;
  border-radius: 1rem;
  padding: 1.5rem;
}

.stats-card:nth-child(2) {
  border-color: #c41e3a;
}

.stats-card:nth-child(3) {
  border-color: #ff6b35;
}

.stats-card h3 {
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.history-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.history-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  border-radius: 0.5rem;
  font-weight: bold;
}

.history-item.win {
  background-color: #28a745;
  color: #ffffff;
}

.history-item.loss {
  background-color: #dc3545;
  color: #ffffff;
}

.stats-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-row span:first-child {
  color: #e0e0e0;
}

.stat-row span:last-child {
  color: #ffffff;
  font-weight: bold;
}

.win-rate {
  color: #28a745 !important;
}

.biggest-win {
  color: #ffd700 !important;
}

.total-profit {
  color: #28a745 !important;
}

.settings-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.setting-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.setting-row span {
  color: #ffffff;
}

/* Rules Page Styles */
.rules-page {
  padding: 2rem 0;
  min-height: 100vh;
}

.rules-card {
  background-color: #1a1a1a;
  border: 2px solid #ff6b35;
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

.rules-card:nth-child(3) {
  border-color: #ffd700;
}

.rules-card:nth-child(4) {
  border-color: #c41e3a;
}

.rules-card h2 {
  color: #ffffff;
  font-weight: 900;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.rules-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.rule-item {
  background-color: #2c2c2c;
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.rule-item h3 {
  color: #ffd700;
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.rule-item p {
  color: #e0e0e0;
}

.strategy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.strategy-column {
  background-color: #2c2c2c;
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.do-title {
  color: #28a745;
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.dont-title {
  color: #dc3545;
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.strategy-list {
  list-style: none;
  color: #e0e0e0;
}

.strategy-list li {
  margin-bottom: 0.5rem;
}

.rtp-section {
  text-align: center;
}

.rtp-badge-large {
  background-color: #ffd700;
  color: #000000;
  font-weight: 900;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.25rem;
  display: inline-block;
  margin-bottom: 2rem;
}

.payout-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.payout-item {
  background-color: #2c2c2c;
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
}

.payout-label {
  color: #ffd700;
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.payout-value {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: bold;
}

.rtp-info {
  background-color: #ff6b35;
  padding: 1rem;
  border-radius: 0.5rem;
}

.rtp-info p {
  color: #ffffff;
  font-weight: bold;
  margin: 0;
}

/* About Page Styles */
.about-page {
  padding: 2rem 0;
  min-height: 100vh;
}

.about-card {
  background-color: #1a1a1a;
  border: 2px solid #ff6b35;
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

.about-card:nth-child(3) {
  border-color: #ffd700;
}

.about-card:nth-child(4) {
  border-color: #c41e3a;
}

.about-card h2 {
  color: #ffffff;
  font-weight: 900;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.story-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.story-item {
  background-color: #2c2c2c;
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.story-item h3 {
  color: #ffd700;
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.story-item p {
  color: #e0e0e0;
  line-height: 1.6;
}

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

.feature-card {
  background-color: #2c2c2c;
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
}

.feature-card .feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: #ffffff;
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: #e0e0e0;
}

.safety-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.age-restriction {
  background-color: #c41e3a;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #c41e3a;
}

.age-restriction h3 {
  color: #ffffff;
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.age-restriction p {
  color: #e0e0e0;
}

.responsible-gaming {
  background-color: #2c2c2c;
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.responsible-gaming h3 {
  color: #ffd700;
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.responsible-gaming ul {
  list-style: none;
  color: #e0e0e0;
}

.responsible-gaming li {
  margin-bottom: 0.5rem;
}

.fair-play {
  background-color: #2c2c2c;
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.fair-play h3 {
  color: #ffd700;
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.badge {
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: bold;
  font-size: 0.875rem;
}

.badge.ssl {
  background-color: #28a745;
  color: #ffffff;
}

.badge.fair {
  background-color: #007bff;
  color: #ffffff;
}

.badge.licensed {
  background-color: #6f42c1;
  color: #ffffff;
}

.badge.audited {
  background-color: #ff6b35;
  color: #ffffff;
}

.fair-play p {
  color: #e0e0e0;
}

/* FAQ Page Styles */
.faq-page {
  padding: 2rem 0;
  min-height: 100vh;
}

.faq-section {
  margin-bottom: 3rem;
}

.faq-section h2 {
  color: #ffffff;
  font-weight: 900;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.faq-list {
  background-color: #1a1a1a;
  border: 2px solid #ff6b35;
  border-radius: 1rem;
  overflow: hidden;
}

.faq-section:nth-child(3) .faq-list {
  border-color: #ffd700;
}

.faq-section:nth-child(4) .faq-list {
  border-color: #c41e3a;
}

.faq-item {
  border-bottom: 1px solid #444;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #ffffff;
  font-weight: bold;
  font-size: 1rem;
  padding: 1.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(255, 107, 53, 0.1);
  color: #ffd700;
}

.faq-icon {
  font-size: 1.25rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.active {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: #e0e0e0;
  margin: 0;
}

/* Animations */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@keyframes glow {
  0% {
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
  }
  100% {
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-desktop,
  .cta-desktop {
    display: none;
  }

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

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }

  .preview-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .game-controls {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

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

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

  .page-header h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-title-center {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .chicken-bounce {
    font-size: 3rem;
  }

  .game-chicken {
    font-size: 3rem;
  }

  .game-multiplier {
    font-size: 2.5rem;
  }

  .mockup-chicken {
    font-size: 3rem;
  }

  .mockup-multiplier {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}
