body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #111;
    color: #fff;
  }
  
  /* Header */
  .header {
    background: #000;
    padding: 20px 0;
    border-bottom: 1px solid #333;
  }
  
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 28px;
    color: #00ff88;
  }
  
  .nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
  }
  
  .nav a:hover {
    color: #00ff88;
  }
  
  /* Hero */
  .hero {
    text-align: center;
    padding: 80px 20px;
    background: #1c1c1c;
  }
  
  .hero h2 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .btn {
    background: #00ff88;
    color: #000;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
  }
  
  /* Features */
  .features {
    padding: 60px 20px;
  }
  
  .features-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .feature {
    width: 30%;
    background: #1f1f1f;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
  }
  
  /* Product Cards */
  .section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
  }
  
  .platform-options {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .platform-card {
    background: #1f1f1f;
    border: 1px solid #333;
    border-radius: 10px;
    text-align: center;
    padding: 30px 20px;
    width: 250px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff;
  }
  
  .platform-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }
  
  .platform-card:hover {
    background: #00ff88;
    color: #000;
  }
  
  .platform-card:hover h3 {
    color: #000;
  }
  
  /* Footer */
  .footer {
    background: #000;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid #333;
  }
  .section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .card-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
  }
  
  .game-card {
    width: 150px;
    height: 180px;
    background: #111;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    transition: transform 0.2s ease;
  }
  
  .game-card:hover {
    transform: scale(1.05);
    background: #222;
  }
  
  .game-card img {
    width: 100px;
    height: 100px;
    margin-top: 15px;
    object-fit: contain;
  }
  
  .game-card span {
    display: block;
    margin-top: 10px;
    font-weight: bold;
  }
  .game-banner {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
  }
  
  .game-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .banner-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .game-logo {
    width: 120px;
    height: auto;
  }
  
  .tool-options {
    text-align: center;
    padding: 40px 20px;
  }
  
  .tool-options h2 {
    font-size: 26px;
    margin-bottom: 20px;
  }
  
  .device-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
  }
  
  .btn-device {
    padding: 15px 30px;
    background: #222;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
  }
  
  .btn-device:hover {
    background: #444;
  }
  .tool-section {
    padding: 40px 20px;
    text-align: center;
  }
  
  .tool-card {
    display: inline-block;
    background: #1c1c1c;
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    width: 250px;
    margin: 20px;
    box-shadow: 0 0 10px #000;
  }
  
  .tool-card img {
    width: 80px;
    margin-bottom: 15px;
  }
  
  .tool-card h3 {
    margin: 10px 0;
  }
  
  .btn-buy {
    display: inline-block;
    margin-top: 10px;
    background: #444;
    padding: 10px 20px;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
  }
  
  .btn-buy:hover {
    background: #666;
  }
  .cheat-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 30px 10px;
    gap: 20px;
  }
  
  .cheat-card {
    background: #1c1c1c;
    color: #fff;
    border-radius: 15px;
    padding: 20px;
    width: 250px;
    box-shadow: 0 0 10px #000;
    text-align: left;
  }
  
  .cheat-card h3 {
    margin: 0 0 10px;
    color: #00ffcc;
  }
  
  .cheat-card p {
    margin: 5px 0;
  }
  
  .cheat-card .tag {
    display: inline-block;
    background: #333;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 13px;
    margin-top: 10px;
    color: #ccc;
  }
  .cheat-detail {
    padding: 40px;
    color: white;
  }
  
  .cheat-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 20px;
  }
  
  .cheat-media {
    flex: 1;
    min-width: 300px;
  }
  
  .cheat-video video,
  .cheat-video img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
  }
  
  .cheat-gallery {
    display: flex;
    gap: 10px;
  }
  
  .cheat-gallery img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid #333;
  }
  
  .cheat-info {
    flex: 1;
    min-width: 300px;
  }
  
  .pricing-options {
    display: flex;
    gap: 10px;
    margin: 20px 0;
  }
  
  .price-card {
    flex: 1;
    background: #1a1a1a;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(255,255,255,0.05);
  }
  
  .feature-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .feature-box {
    background: #333;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
  }
  .cheat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    padding: 40px;
  }
  
  .cheat-card {
    background-color: #1a1a1a;
    border-radius: 16px;
    padding: 20px;
    color: white;
    box-shadow: 0 0 10px rgba(255,255,255,0.05);
    transition: 0.2s ease;
  }
  
  .cheat-card:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
  }
  
  .cheat-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #00ffcc;
  }
  
  .cheat-card p {
    margin: 6px 0;
  }
  
  .cheat-card .tag {
    margin-top: 10px;
    display: inline-block;
    background: #333;
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: bold;
    color: #ccc;
  }
  .cheat-detail {
    padding: 40px;
    color: white;
  }
  
  .cheat-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 20px;
  }
  
  .cheat-media {
    flex: 1;
    min-width: 300px;
  }
  
  .cheat-video video,
  .cheat-video img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
  }
  
  .cheat-gallery {
    display: flex;
    gap: 10px;
  }
  
  .cheat-gallery img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid #333;
  }
  
  .cheat-info {
    flex: 1;
    min-width: 300px;
  }
  
  .pricing-options {
    display: flex;
    gap: 10px;
    margin: 20px 0;
  }
  
  .price-card {
    flex: 1;
    background: #1a1a1a;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(255,255,255,0.05);
  }
  
  .feature-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .feature-box {
    background: #333;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
  }
  .cheat-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .cheat-link:hover {
    color: #00ffcc;
    text-decoration: underline;
  }
  .buy-button {
    display: inline-block;
    margin-top: 10px;
    background-color: #00cc99;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  
  .buy-button:hover {
    background-color: #009977;
  }
  .feature-tags {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
  }
  
  .feature-box {
    background: #1f1f1f;
    padding: 15px 20px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
  }
  
  .feature-box:hover {
    transform: translateY(-5px);
  }
  
  .feature-box h4 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #4fc3f7; /* light blue title */
  }
  
  .feature-box ul {
    margin: 0;
    padding-left: 20px;
  }
  
  .feature-box li {
    margin-bottom: 5px;
    list-style-type: disc;
  }
  .feature-tags {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
  }
  
  .feature-box {
    background: #1f1f1f;
    padding: 20px;
    border-radius: 12px;
    color: #fff;
    flex: 1;
    min-width: 220px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
  }
  
  .feature-box:hover {
    transform: translateY(-5px);
  }
  
  .feature-box h4 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #4fc3f7;
  }
  
  .feature-box ul {
    margin: 0;
    padding-left: 20px;
  }
  
  .feature-box li {
    margin-bottom: 6px;
  }
  .feature-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 30px;
    justify-content: center;
  }
  .feature-box {
    background-color: #333;
    padding: 15px;
    border-radius: 10px;
    width: 220px;
    box-shadow: 0 0 5px #00bfff44;
  }
  
  .feature-box h4 {
    color: #00bfff;
    margin-bottom: 10px;
  }
  .cheat-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    flex-direction: row; /* Ensures left-to-right layout */
  }
  
  .cheat-media {
    order: 1;
    flex: 1 1 400px;
  }
  
  .cheat-info {
    order: 2;
    flex: 1 1 400px;
  }
  @media (max-width: 768px) {
    .cheat-content {
      flex-direction: column;
      align-items: center;
    }
  
    .cheat-media,
    .cheat-info {
      flex: 1 1 100%;
      order: unset; /* Reset order so natural flow works on mobile */
    }
  }
  .cheat-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  
  .cheat-media {
    flex: 1 1 400px;
  }
  
  .cheat-info {
    flex: 1 1 400px;
  }
  .features-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
  }
  
  .features-row .feature-card {
    background: #222;
    color: white;
    flex: 1;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: 0.3s ease;
  }
  
  .features-row .feature-card:hover {
    transform: translateY(-5px);
  }
  .features-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: nowrap;
}
.features-row .card {
    flex: 1;
}
