
    :root {
      --color-primary: #f59e0b;
      --color-primary-dark: #d97706;
      --color-secondary: #10b981;
      --color-accent: #3b82f6;
      --color-text: #1f2937;
      --color-text-light: #6b7280;
      --color-bg: #ffffff;
      --color-bg-light: #f9fafb;
      --color-border: #e5e7eb;
      --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
      --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
      --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
      --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
      --rounded-sm: 0.125rem;
      --rounded-md: 0.375rem;
      --rounded-lg: 0.5rem;
      --rounded-xl: 0.75rem;
      --rounded-full: 9999px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
      line-height: 1.5;
      color: var(--color-text);
      background-color: var(--color-bg);
      -webkit-font-smoothing: antialiased;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      height: auto;
    }

    button, input, textarea {
      font-family: inherit;
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    /* Header Styles - Same as main site */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      background-color: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(251, 191, 36, 0.1);
      transition: all 0.3s ease;
    }

    .header.scrolled {
      background-color: rgba(255, 255, 255, 0.95);
      box-shadow: var(--shadow-lg);
    }

    .header-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.75rem 1rem;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .logo-icon {
      width: 2.5rem;
      height: 2.5rem;
      background: linear-gradient(to bottom right, #f59e0b, #f97316);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-lg);
    }

    .logo-icon svg {
      width: 1.5rem;
      height: 1.5rem;
      color: white;
    }

    .logo-text {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--color-text);
    }

    .nav-desktop {
      display: none;
    }

    .nav-desktop a {
      font-weight: 500;
      color: var(--color-text-light);
      transition: color 0.3s ease;
      padding: 0.5rem 1rem;
    }

    .nav-desktop a:hover {
      color: var(--color-primary-dark);
    }

    .nav-desktop a.active {
      color: var(--color-primary-dark);
      font-weight: 600;
    }

    .btn-primary {
      background: linear-gradient(to right, #f59e0b, #f97316);
      color: white;
      padding: 0.5rem 1.5rem;
      border-radius: var(--rounded-full);
      font-weight: 600;
      box-shadow: var(--shadow-lg);
      transition: all 0.3s ease;
      display: inline-block;
    }

    .btn-primary:hover {
      background: linear-gradient(to right, #d97706, #ea580c);
      box-shadow: var(--shadow-xl);
      transform: scale(1.05);
    }

    .mobile-menu-btn {
      padding: 0.5rem;
      color: var(--color-text-light);
      transition: color 0.3s ease;
      background: none;
      border: none;
      cursor: pointer;
    }

    .mobile-menu-btn:hover {
      color: var(--color-primary-dark);
    }

    .mobile-menu-btn svg {
      width: 1.5rem;
      height: 1.5rem;
    }

    /* Mobile Menu - Same as main site */
    .mobile-menu-overlay {
      position: fixed;
      inset: 0;
      background-color: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(8px);
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 100;
    }

    .mobile-menu-overlay.open {
      opacity: 1;
      visibility: visible;
    }

    .mobile-menu {
      position: absolute;
      right: 0;
      top: 0;
      height: 70vh;
      width:100%;
      max-width: 400px;
      background-color: white;
      box-shadow: var(--shadow-xl);
      transform: translateX(100%);
      transition: transform 0.3s ease;
    }

    .mobile-menu-overlay.open .mobile-menu {
      transform: translateX(0);
    }

    .mobile-menu-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem;
      margin-bottom: 2rem;
    }

    .mobile-menu-header .close-btn {
      padding: 0.5rem;
      color: var(--color-text-light);
      background: none;
      border: none;
      cursor: pointer;
    }

    .mobile-menu-header .close-btn:hover {
      color: var(--color-primary-dark);
    }

    .mobile-menu-nav {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: 0 1.5rem;
    }

    .mobile-menu-nav a {
      font-weight: 500;
      color: var(--color-text-light);
      transition: color 0.3s ease;
      padding: 0.5rem 0;
      display: block;
    }

    .mobile-menu-nav a:hover {
      color: var(--color-primary-dark);
    }

    /* Section Styles */
    .section {
      padding: 5rem 0;
    }

    .section-title {
      font-size: 2.25rem;
      font-weight: 800;
      margin-bottom: 1rem;
      text-align: center;
    }

    .section-description {
      font-size: 1.125rem;
      color: var(--color-text-light);
      text-align: center;
      max-width: 42rem;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 4rem;
    }

    /* 1. Hero Section */
    .gameplay-hero {
      min-height: 100vh;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3)), url('image/banner2.jpeg') no-repeat center center / cover;
      display: flex;
      align-items: center;
    }

    .hero-container {
      position: relative;
      z-index: 10;
      padding-top: 6rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .hero-title {
      font-size: 3rem;
      font-weight: 800;
      line-height: 1.25;
      margin-bottom: 1.5rem;
    }

    .hero-title .gradient-text {
      background: linear-gradient(to right, #b45309, #c2410c, #059669);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero-description {
     
      font-size: 1.25rem;
      color: var(--color-text);
      margin-bottom: 3rem;
      max-width: 48rem;
    }

    .gameplay-preview {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      margin-bottom: 3rem;
    }

    .preview-card {
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(8px);
      border-radius: 1rem;
      padding: 1.5rem;
      text-align: center;
      border: 1px solid rgba(251, 191, 36, 0.2);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .preview-card:hover {
      transform: translateY(-0.5rem);
      box-shadow: var(--shadow-xl);
    }

    .preview-icon {
      width: 4rem;
      height: 4rem;
      margin: 0 auto 1rem;
      border-radius: 0.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
    }

    .preview-title {
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .preview-description {
      font-size: 0.875rem;
      color: var(--color-text-light);
    }

    /* 2. Basic Mechanics Section */
    .mechanics {
      background: linear-gradient(to bottom right, #fef9c3, #ffedd5);
    }

    .mechanics-grid {
      display: grid;
      gap: 3rem;
      max-width: 64rem;
      margin: 0 auto;
    }

    .mechanic-item {
      display: flex;
      align-items: center;
      gap: 2rem;
      background: white;
      border-radius: 1rem;
      padding: 2rem;
      box-shadow: var(--shadow-lg);
      border: 1px solid rgba(251, 191, 36, 0.1);
    }

    .mechanic-item:nth-child(even) {
      flex-direction: row-reverse;
    }

    .mechanic-demo {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 200px;
      background: linear-gradient(135deg, #f0f9ff, #ecfccb);
      border-radius: 0.75rem;
      position: relative;
      cursor: pointer;
    }

    .mechanic-content {
      flex: 1;
    }

    .mechanic-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .mechanic-description {
      color: var(--color-text-light);
      margin-bottom: 1.5rem;
    }

    .mechanic-tips {
      background: var(--color-bg-light);
      border-radius: 0.5rem;
      padding: 1rem;
      border-left: 4px solid var(--color-primary);
    }

    .mechanic-tips h4 {
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: var(--color-primary-dark);
    }

    .mechanic-tips ul {
      list-style: none;
      padding: 0;
    }

    .mechanic-tips li {
      padding: 0.25rem 0;
      color: var(--color-text-light);
    }

    .mechanic-tips li:before {
      content: "🥚 ";
      margin-right: 0.5rem;
    }

    /* Interactive Egg Animation */
    .interactive-egg {
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .interactive-egg:hover {
      transform: scale(1.1);
    }

    .interactive-egg.cracking {
      animation: eggShake 0.5s ease-in-out;
    }

    /* 3. Automation Section */
    .automation {
      background: linear-gradient(to bottom right, #ecfccb, #d1fae5);
    }

    .automation-showcase {
      background: white;
      border-radius: 1rem;
      padding: 2rem;
      box-shadow: var(--shadow-lg);
      margin-bottom: 3rem;
    }

    .automation-demo {
      position: relative;
      height: 300px;
      background: linear-gradient(to bottom, #bfdbfe, #86efac);
      border-radius: 0.75rem;
      overflow: hidden;
    }

    .conveyor-belt {
      position: absolute;
      bottom: 50px;
      left: 0;
      right: 0;
      height: 20px;
      background: repeating-linear-gradient(
        90deg,
        #6b7280,
        #6b7280 20px,
        #4b5563 20px,
        #4b5563 40px
      );
      animation: conveyorMove 2s linear infinite;
    }

    .automation-features {
      display: grid;
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .automation-feature {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem;
      background: var(--color-bg-light);
      border-radius: 0.5rem;
      border: 1px solid var(--color-border);
    }

    .automation-icon {
      width: 3rem;
      height: 3rem;
      border-radius: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
    }

    .automation-text h4 {
      font-weight: 600;
      margin-bottom: 0.25rem;
    }

    .automation-text p {
      font-size: 0.875rem;
      color: var(--color-text-light);
    }

    /* 4. Progression Section */
    .progression {
      background: linear-gradient(to bottom right, #dbeafe, #e0e7ff);
    }

    .progression-path {
      position: relative;
      max-width: 48rem;
      margin: 0 auto;
    }

    .progression-line {
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 4px;
      background: linear-gradient(to bottom, #f59e0b, #10b981, #3b82f6, #8b5cf6);
      transform: translateX(-50%);
      border-radius: 2px;
    }

    .progression-items {
      display: grid;
      gap: 3rem;
      position: relative;
    }

    .progression-item {
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    .progression-item:nth-child(even) {
      flex-direction: row-reverse;
    }

    .progression-node {
      width: 4rem;
      height: 4rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: white;
      font-size: 1.25rem;
      box-shadow: var(--shadow-lg);
      position: relative;
      z-index: 10;
    }

    .progression-content {
      flex: 1;
      background: white;
      border-radius: 1rem;
      padding: 1.5rem;
      box-shadow: var(--shadow-lg);
      border: 1px solid rgba(251, 191, 36, 0.1);
    }

    .progression-level {
      font-size: 0.875rem;
      color: var(--color-primary-dark);
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .progression-title {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
    }

    .progression-description {
      color: var(--color-text-light);
      margin-bottom: 1rem;
    }

    .progression-rewards {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .reward-badge {
      background: var(--color-bg-light);
      border: 1px solid var(--color-border);
      border-radius: var(--rounded-full);
      padding: 0.25rem 0.75rem;
      font-size: 0.75rem;
      color: var(--color-text-light);
    }

    /* 5. Farm Expansion Section */
    .expansion {
      background: linear-gradient(to bottom right, #fef3c7, #fbbf24);
    }

    .expansion-grid {
      display: grid;
      gap: 2rem;
      margin-bottom: 3rem;
    }

    .expansion-card {
      background: white;
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      transition: all 0.3s ease;
    }

    .expansion-card:hover {
      transform: translateY(-0.5rem);
      box-shadow: var(--shadow-xl);
    }

    .expansion-image {
      height: 200px;
      background: linear-gradient(135deg, #f0f9ff, #ecfccb);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
      position: relative;
      overflow: hidden;
    }

    .expansion-content {
      padding: 1.5rem;
    }

    .expansion-title {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
    }

    .expansion-description {
      color: var(--color-text-light);
      margin-bottom: 1rem;
    }

    .expansion-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.5rem;
    }

    .expansion-stat {
      text-align: center;
      padding: 0.5rem;
      background: var(--color-bg-light);
      border-radius: 0.375rem;
    }

    .expansion-stat-value {
      font-weight: 700;
      color: var(--color-primary-dark);
    }

    .expansion-stat-label {
      font-size: 0.75rem;
      color: var(--color-text-light);
    }

    /* 6. Special Chickens Section */
    .special-chickens {
      background: linear-gradient(to bottom right, #f3e8ff, #e0e7ff);
    }

    .chickens-gallery {
      display: grid;
      gap: 2rem;
      margin-bottom: 3rem;
    }

    .chicken-card {
      background: white;
      border-radius: 1rem;
      padding: 2rem;
      box-shadow: var(--shadow-lg);
      text-align: center;
      border: 2px solid transparent;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .chicken-card:hover {
      border-color: var(--color-primary);
      transform: translateY(-0.25rem);
    }

    .chicken-avatar {
      width: 6rem;
      height: 6rem;
      margin: 0 auto 1rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
      position: relative;
    }

    .chicken-rarity {
      position: absolute;
      top: -0.5rem;
      right: -0.5rem;
      width: 2rem;
      height: 2rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: 700;
      color: white;
    }

    .chicken-name {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .chicken-type {
      font-size: 0.875rem;
      color: var(--color-text-light);
      margin-bottom: 1rem;
    }

    .chicken-abilities {
      display: grid;
      gap: 0.5rem;
    }

    .chicken-ability {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.5rem;
      background: var(--color-bg-light);
      border-radius: 0.375rem;
    }

    .ability-name {
      font-size: 0.875rem;
      font-weight: 500;
    }

    .ability-value {
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--color-primary-dark);
    }

    /* 7. Statistics Section with Running Numbers */
    .statistics {
      background: linear-gradient(to bottom right, #1f2937, #374151);
      color: white;
    }

    .stats-dashboard {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(8px);
      border-radius: 1rem;
      padding: 2rem;
      border: 1px solid rgba(255, 255, 255, 0.2);
      margin-bottom: 3rem;
    }

    .stats-grid {
      display: grid;
      gap: 2rem;
      margin-bottom: 3rem;
    }

    .stat-card {
      text-align: center;
      padding: 1.5rem;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 0.75rem;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .stat-icon {
      width: 3rem;
      height: 3rem;
      margin: 0 auto 1rem;
      border-radius: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
    }

    .stat-value {
      font-size: 2rem;
      font-weight: 800;
      margin-bottom: 0.5rem;
      color: #fbbf24;
    }

    .stat-label {
      color: #d1d5db;
      font-size: 0.875rem;
    }

    .stat-change {
      font-size: 0.75rem;
      margin-top: 0.25rem;
    }

    .stat-change.positive {
      color: #10b981;
    }

    .stat-change.negative {
      color: #ef4444;
    }

    .achievements-grid {
      display: grid;
      gap: 1rem;
    }

    .achievement-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 0.5rem;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .achievement-icon {
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 0.375rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
    }

    .achievement-content h4 {
      font-weight: 600;
      margin-bottom: 0.25rem;
    }

    .achievement-content p {
      font-size: 0.875rem;
      color: #d1d5db;
    }

    .achievement-progress {
      margin-left: auto;
      text-align: right;
    }

    .achievement-percentage {
      font-weight: 700;
      color: #fbbf24;
    }

    .achievement-bar {
      width: 60px;
      height: 4px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 2px;
      margin-top: 0.25rem;
      overflow: hidden;
    }

    .achievement-fill {
      height: 100%;
      background: linear-gradient(to right, #f59e0b, #10b981);
      border-radius: 2px;
      transition: width 0.3s ease;
    }

    /* 8. Strategy Tips Section */
    .strategy {
      background: linear-gradient(to bottom right, #ecfccb, #d1fae5);
    }

    .strategy-tabs {
      display: flex;
      justify-content: center;
      margin-bottom: 3rem;
      background: white;
      border-radius: var(--rounded-full);
      padding: 0.5rem;
      box-shadow: var(--shadow-lg);
    }

    .strategy-tab {
      padding: 0.75rem 1.5rem;
      border-radius: var(--rounded-full);
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
      background: none;
    }

    .strategy-tab.active {
      background: var(--color-primary);
      color: white;
    }

    .strategy-content {
      display: none;
    }

    .strategy-content.active {
      display: block;
    }

    .tips-grid {
      display: grid;
      gap: 1.5rem;
    }

    .tip-card {
      background: white;
      border-radius: 0.75rem;
      padding: 1.5rem;
      box-shadow: var(--shadow-lg);
      border-left: 4px solid var(--color-primary);
    }

    .tip-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .tip-icon {
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 0.375rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
    }

    .tip-title {
      font-weight: 700;
    }

    .tip-description {
      color: var(--color-text-light);
      margin-bottom: 1rem;
    }

    .tip-example {
      background: var(--color-bg-light);
      border-radius: 0.375rem;
      padding: 1rem;
      font-size: 0.875rem;
      color: var(--color-text-light);
      border-left: 3px solid var(--color-secondary);
    }

    /* 9. Advanced Features Section */
    .advanced {
      background: linear-gradient(to bottom right, #1e1b4b, #312e81);
      color: white;
    }

    .advanced .section-title,
    .advanced .section-description {
      color: white;
    }

    .features-showcase {
      display: grid;
      gap: 2rem;
    }

    .feature-panel {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(8px);
      border-radius: 1rem;
      padding: 2rem;
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
    }

    .feature-panel:hover {
      background: rgba(255, 255, 255, 0.15);
      transform: translateY(-0.25rem);
    }

    .feature-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .feature-icon {
      width: 3rem;
      height: 3rem;
      border-radius: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
    }

    .feature-title {
      font-size: 1.25rem;
      font-weight: 700;
    }

    .feature-description {
      color: #d1d5db;
      margin-bottom: 1.5rem;
    }

    .feature-details {
      display: grid;
      gap: 0.75rem;
    }

    .feature-detail {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.875rem;
    }

    .feature-detail::before {
      content: "✨";
      font-size: 1rem;
    }

    /* Animations */
    @keyframes eggShake {
      0%, 100% { transform: translateX(0); }
      25% { transform: translateX(-5px) rotate(-2deg); }
      75% { transform: translateX(5px) rotate(2deg); }
    }

    @keyframes conveyorMove {
      0% { background-position: 0 0; }
      100% { background-position: 40px 0; }
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.7; }
    }

    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes countUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Responsive Styles */
    @media (min-width: 640px) {
      .gameplay-preview {
        grid-template-columns: repeat(2, 1fr);
      }

      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .expansion-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .chickens-gallery {
        grid-template-columns: repeat(2, 1fr);
      }

      .tips-grid {
        grid-template-columns: repeat(2, 1fr);
      }

    }

    @media (min-width: 768px) {
      .nav-desktop {
        display: flex;
        align-items: center;
        gap: 2rem;
      }

      .mobile-menu-btn {
        display: none;
      }

      .hero-title {
        font-size: 4rem;
      }

      .gameplay-preview {
        grid-template-columns: repeat(4, 1fr);
      }

      .mechanic-item {
        flex-direction: row;
      }

      .mechanic-item:nth-child(even) {
        flex-direction: row-reverse;
      }

      .stats-grid {
        grid-template-columns: repeat(4, 1fr);
      }

      .expansion-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .chickens-gallery {
        grid-template-columns: repeat(3, 1fr);
      }

      .features-showcase {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .gameplay-preview {
        grid-template-columns: repeat(5, 1fr);
      }

      .chickens-gallery {
        grid-template-columns: repeat(4, 1fr);
      }
     
    }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }
 @media (max-width: 768px) {
    .gameplay-preview {
      grid-template-columns: repeat(2, 1fr);
    }
          .mechanic-item {
    display: flex;
   flex-direction: column;
   align-items: center;
   text-align: center;
   margin-bottom: 2rem;
   padding: 0.5rem;

}
.mechanic-item:nth-child(even) {
    flex-direction: column;
}


 }
  