/* ...existing code... */
      .game-console {
         position: relative;
      }

      .game-controls-bar {
         position: absolute;
         left: 0;
         right: 0;
         bottom: 60px;
         /* Adjust if needed to sit above .console-controls */
         width: 100%;
         z-index: 20;
         display: flex;
         justify-content: space-between;
         align-items: center;
         padding: 15px 20px;
         background: linear-gradient(145deg, #333, #444);
         border-radius: 10px;
         margin-top: 0;
         box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      }

      /* ...existing code... */
      body {
         background: #757980;
      }


      /* ...existing code... */
      #particles-js {
         position: fixed;
         top: 0;
         left: 0;
         width: 100vw;
         height: 100vh;
         z-index: 0;
         pointer-events: none;
      }

      /* ...existing code... */
      /* ...existing code... */
      /* Game-themed 404 Container */
      :root {
         --primary: #FF6B6B;
         --secondary: #4ECDC4;
         --dark: #1A1A1A;
         --light: #F7F7F7;
         --accent: #FFD166;
      }

      .error-container {
         flex: 1;
         display: flex;
         flex-direction: column;
         justify-content: center;
         align-items: center;
         padding: 2rem;
         padding-bottom: 0rem;
         position: relative;
         z-index: 10;
         text-align: center;
      }

      /* Game Console */
      .game-console {
         width: 100%;
         max-width: 900px;
         background: linear-gradient(145deg, #222222, #333);
         border-radius: 20px;
         box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
         padding: 1.5rem;
         margin-bottom: 2rem;
         position: relative;
         overflow: hidden;
      }

      .console-screen {
         background: #000;
         border-radius: 10px;
         padding: 1rem;
         position: relative;
         min-height: 400px;
         display: flex;
         flex-direction: column;
         justify-content: center;
         overflow: hidden;
      }

      /* Console Controls */
      .console-controls {
         display: flex;
         justify-content: center;
         gap: 1rem;
         margin-top: 1.5rem;
      }

      .control-btn {
         width: 25px;
         height: 25px;
         border-radius: 50%;
         background: var(--accent);
         box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.3);
      }

      .control-btn:nth-child(2) {
         background: var(--primary);
      }

      .control-btn:nth-child(3) {
         background: var(--secondary);
      }

      /* Updated Game iframe container */
      .game-iframe-container {
         position: relative;
         overflow: hidden;
         width: 100%;
         height: 60vh;
         /* Reduced height for better mobile view */
         min-height: 400px;
         max-height: 500px;
         border-radius: 10px;
         background: #000;
      }

      .game-iframe {
         position: absolute;
         top: 0;
         left: 0;
         bottom: 0;
         right: 0;
         width: 100%;
         height: 100%;
         border-radius: 10px;
      }

      /* Game Controls Bar */
      .game-controls-bar {
         display: flex;
         justify-content: space-between;
         align-items: center;
         padding: 15px 20px;
         background: linear-gradient(145deg, #333, #444);
         border-radius: 10px;
         margin-top: 15px;
         box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      }

      .game-title {
         color: #fff;
         font-size: 18px;
         font-weight: 600;
         margin: 0;
         text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
      }

      .game-control-buttons {
         display: flex;
         gap: 10px;
      }

      .game-control-btn {
         padding: 8px 16px;
         border: none;
         border-radius: 25px;
         background: linear-gradient(145deg, var(--secondary), #6ae6de);
         color: white;
         font-weight: 500;
         font-size: 14px;
         cursor: pointer;
         transition: all 0.3s ease;
         box-shadow: 0 3px 10px rgba(78, 205, 196, 0.3);
         display: flex;
         align-items: center;
         gap: 5px;
      }

      .game-control-btn:hover {
         transform: translateY(-2px);
         box-shadow: 0 5px 15px rgba(78, 205, 196, 0.5);
      }

      .game-control-btn.reload-btn {
         background: linear-gradient(145deg, var(--primary), #ff8c8c);
         box-shadow: 0 3px 10px rgba(255, 107, 107, 0.3);
      }

      .game-control-btn.reload-btn:hover {
         box-shadow: 0 5px 15px rgba(255, 107, 107, 0.5);
      }

      /* Navigation Buttons */
      .nav-buttons {
         display: flex;
         flex-wrap: wrap;
         justify-content: center;
         gap: 1rem;
         margin-top: 1rem;
      }

      .btn {
         padding: 0.8rem 1.5rem;
         border-radius: 50px;
         background: linear-gradient(145deg, var(--primary), #ff8c8c);
         color: white;
         font-weight: 600;
         text-decoration: none;
         text-transform: uppercase;
         letter-spacing: 1px;
         box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
         transition: all 0.3s ease;
         border: none;
         cursor: pointer;
         display: flex;
         align-items: center;
         gap: 8px;
      }

      .btn:hover {
         transform: translateY(-3px);
         box-shadow: 0 8px 20px rgba(255, 107, 107, 0.6);
      }

      .btn.secondary {
         background: linear-gradient(145deg, var(--secondary), #6ae6de);
         box-shadow: 0 4px 15px rgba(78, 205, 196, 0.4);
      }

      .btn.secondary:hover {
         box-shadow: 0 8px 20px rgba(78, 205, 196, 0.6);
      }


      .FG-splash-button {
         border-bottom-color: #ffb53d !important;
         color: #000;
         background: linear-gradient(140deg, #fbde04, #e2c803)
      }

      .FG-splash-button:hover {
         border-bottom-color: #ff5e00 !important;
         color: #fff;
         background: linear-gradient(140deg, #ff9214, #fa8500)
      }

      .FG-splash-button:active {
         border-bottom-color: #ff7e33 !important;
         background: linear-gradient(140deg, #ff5e00, #ff5e00)
      }

      .SP-splash-button {
         width: 290px;
         height: 60px;
         margin-top: 2.5rem;
         border-radius: 290486px !important;
         padding-left: 2rem;
         padding-right: 2rem;
         border: 3px solid #fff !important;
         color: #0a0a0a;
         text-transform: uppercase;
         background: linear-gradient(180deg, #001aff, #002fff);
         box-shadow: 12px 14px 15px -1px rgba(0, 0, 0, .2)
      }

      .SP-splash-button:before {
         content: "";
         position: absolute;
         left: 0;
         top: 1px;
         width: 100%;
         height: 100%;
         border-radius: 290486px !important;
         opacity: 0;
         background: linear-gradient(180deg, #af39b9, #c815d7);
         transform: scale(0);
         transform-origin: 50% 100%;
         will-change: transform;
         transition: transform .3s cubic-bezier(.25, .46, .45, .94), opacity .2s cubic-bezier(.25, .46, .45, .94);
         z-index: -1
      }

      .SP-splash-top>div>button:active {
         transform: translateY(0)
      }

      .SP-splash-button:hover:before {
         top: 0;
         opacity: 1;
         transform: scale(1)
      }

      .SP-splash-top>div>button:active:before {
         box-shadow: inset 0 0 7px 0 rgba(224, 71, 36, .53), inset 0 0 7px 0 rgba(0, 0, 0, .35)
      }

      .iframeloader {
         background: url(./images/loadinggif.gif) center center no-repeat;
         background-size: 5vw;
      }

      .talpa-splash-background-container {
         box-sizing: border-box;
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         background-color: #000;
         overflow: hidden
      }

      .talpa-splash-background-image {
         box-sizing: border-box;
         position: absolute;
         top: -25%;
         left: -25%;
         width: 150%;
         height: 150%;
         background-image: var(--thumb);
         background-size: cover;
         filter: blur(50px) brightness(1.5)
      }

      .talpa-splash-container {
         display: flex;
         flex-flow: column;
         box-sizing: border-box;
         position: absolute;
         bottom: 0;
         width: 100%;
         height: 100%
      }

      .talpa-splash-top {
         display: flex;
         flex-flow: column;
         box-sizing: border-box;
         flex: 1;
         align-self: center;
         justify-content: center;
         padding: 20px
      }

      .talpa-splash-top>div {
         text-align: center
      }

      .talpa-splash-top>div>button {
         position: relative;
         min-width: 180px;
         min-height: 45px;
         line-height: 45px;
         border: 0;
         border-radius: 25px;
         border-bottom: 5px solid grey;
         white-space: nowrap;
         text-overflow: ellipsis;
         text-align: center;
         text-transform: uppercase;
         text-shadow: 1px 1px 1px rgba(0, 0, 0, .004);
         font-family: Roboto Condensed, Helvetica Neue, Arial, "sans-serif";
         font-size: 16px;
         font-weight: 400;
         cursor: pointer;
         box-shadow: inset 0 -1px 1px hsla(0, 0%, 100%, .1), inset 0 1px 1px hsla(0, 0%, 100%, .2);
         will-change: transform;
         transition: transform .15s linear
      }

      .talpa-splash-top>div>button:focus {
         outline: none
      }

      .talpa-splash-top>div>button:active {
         box-shadow: 0 10px 20px rgba(0, 0, 0, .19), 0 6px 6px rgba(0, 0, 0, .13);
         transform: translateY(-5px)
      }

      .talpa-loader,
      .talpa-loader:after {
         border-radius: 50%;
         width: 1.5em;
         height: 1.5em
      }

      .talpa-loader {
         box-sizing: content-box;
         margin: 0 auto;
         font-size: 10px;
         position: relative;
         text-indent: -9999em;
         border: 1.1em solid hsla(0, 0%, 100%, .2);
         border-left-color: #fff;
         -webkit-transform: translateZ(0);
         -ms-transform: translateZ(0);
         transform: translateZ(0);
         -webkit-animation: talpa-load8 1.1s linear infinite;
         animation: talpa-load8 1.1s linear infinite;
         display: none
      }

      .talpa-splash-top>div>div:first-child {
         position: relative;
         width: 150px;
         height: 150px;
         margin: auto auto 20px;
         border-radius: 10px;
         overflow: hidden;
         border: 2px solid hsla(0, 0%, 100%, .8);
         box-shadow: inset 0 5px 5px rgba(0, 0, 0, .5), 0 2px 4px rgba(0, 0, 0, .3);
         background-image: var(--thumb);
         background-position: 50%;
         background-size: cover
      }

      .talpa-splash-top>div>div>img {
         width: 100%;
         height: 100%
      }

      .talpa-splash-bottom {
         display: flex;
         flex-flow: column;
         box-sizing: border-box;
         align-self: center;
         justify-content: center;
         width: 100%;
         padding: 0 0 20px
      }

      .talpa-splash-bottom>.talpa-splash-consent,
      .talpa-splash-bottom>.talpa-splash-title {
         box-sizing: border-box;
         width: 100%;
         padding: 20px;
         background: linear-gradient(90deg, transparent, rgba(0, 0, 0, .5) 50%, transparent);
         color: #fff;
         text-align: left;
         font-size: 12px;
         font-family: Arial;
         font-weight: 400;
         text-shadow: 0 0 1px rgba(0, 0, 0, .7);
         line-height: 150%
      }

      .talpa-splash-bottom>.talpa-splash-title {
         padding: 15px 0;
         text-align: center;
         font-size: 18px;
         font-family: Helvetica, Arial, sans-serif;
         font-weight: 700;
         line-height: 100%
      }

      .talpa-splash-bottom>.talpa-splash-consent a {
         color: #fff
      }

      @-webkit-keyframes talpa-load8 {
         0% {
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg)
         }

         to {
            -webkit-transform: rotate(1turn);
            transform: rotate(1turn)
         }
      }

      @keyframes talpa-load8 {
         0% {
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg)
         }

         to {
            -webkit-transform: rotate(1turn);
            transform: rotate(1turn)
         }
      }

      @keyframes talpa-gradient {
         0% {
            background-position: 0 50%
         }

         50% {
            background-position: 100% 50%
         }

         to {
            background-position: 0 50%
         }
      }

      /* Mobile Responsive */
      @media (max-width: 768px) {
         .game-iframe-container {
            height: 50vh;
            min-height: 300px;
         }

         .game-title {
            font-size: 16px;
         }

         .game-control-btn {
            padding: 6px 12px;
            font-size: 12px;
         }

         .game-controls-bar {
            padding: 10px 15px;
         }

         .console-screen {
            padding: 0.5rem;
         }

         .game-console {
            padding: 1rem;
         }
      }

      @media (max-width: 480px) {
         .game-iframe-container {
            height: 45vh;
            min-height: 280px;
         }

         .game-title {
            font-size: 14px;
         }

         .game-control-buttons {
            flex-direction: column;
            gap: 8px;
         }

         .game-control-btn {
            padding: 8px 16px;
            font-size: 13px;
         }
      }

      .article-header {
         width: 100%;
         float: left;
         border-bottom: 1px solid rgba(255, 255, 255, .1);
         padding-bottom: 20px;
         margin-bottom: 30px;
         margin-top: 20px
      }
       /* === CONTAINER COMPONENT === */
      .gaming-portal__container {
         max-width: 1200px;
         margin: 0 auto;
          position: relative;
      }

      /* === HEADER COMPONENT === */
      .gaming-portal__header {
         display: flex;
         justify-content: space-between;
         align-items: center;
         margin-bottom: 20px;
         padding-bottom: 12px;
         border-bottom: 3px solid #f4c842;
      }

      .gaming-portal__title {
         display: flex;
         align-items: center;
         gap: 8px;
         font-size: 1.8rem;
         color: white;
         font-weight: bold;
      }

      .gaming-portal__title-icon {
         color: #f4c842;
         font-size: 2rem;
      }

      .gaming-portal__nav-button {
         background: #f4c842;
         color: #2a3947;
         padding: 10px 24px;
         border: none;
         border-radius: 25px;
         font-weight: bold;
         font-size: 1rem;
         cursor: pointer;
         transition: all 0.3s ease;
      }

      .gaming-portal__nav-button:hover {
         background: #e6b637;
         transform: translateY(-1px);
      }

      /* === GAMES GRID COMPONENT === */
      .gaming-portal__games-grid {
         display: grid;
         grid-template-columns: repeat(6, 1fr);
         gap: 15px;
         margin-bottom: 20px;
      }

      /* === GAME CARD COMPONENT === */
      .game-card {
         position: relative;
         border-radius: 12px;
         overflow: hidden;
         transition: all 0.2s ease;
         cursor: pointer;
         aspect-ratio: 1;
         background: #3a4a5c;
         min-height: 160px;
      }

      .game-card:hover {
         transform: translateY(-3px);
         box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
      }

      .game-card__image-container {
         width: 100%;
         height: 100%;
         overflow: hidden;
      }

      .game-card__link {
         display: block;
         width: 100%;
         height: 100%;
      }

      .game-card__image {
         width: 100%;
         height: 100%;
         object-fit: cover;
         border: none;
      }

      .game-card__badge {
         position: absolute;
         top: 8px;
         right: 8px;
         padding: 4px 8px;
         border-radius: 12px;
         font-size: 0.7rem;
         font-weight: bold;
         text-transform: uppercase;
         z-index: 2;
      }

      .game-card__badge--new {
         background: #ff4757;
         color: white;
      }

      .game-card__badge--popular {
         background: #2ed573;
         color: rgb(0, 0, 0);
      }

      .game-card__title {
         position: absolute;
         bottom: 0;
         left: 0;
         right: 0;
         background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
         color: white;
         padding: 15px 10px 8px;
         font-size: 0.85rem;
         font-weight: 600;
         text-align: center;
         line-height: 1.2;
         opacity: 0;
         transform: translateY(10px);
         transition: all 0.3s ease;
      }

      .game-card:hover .game-card__title {
         opacity: 1;
         transform: translateY(0);
      }

      /* === GAME CARD THEME VARIATIONS === */
      .game-card--theme-blue {
         background: linear-gradient(45deg, #3498db, #2980b9);
      }

      .game-card--theme-green {
         background: linear-gradient(45deg, #27ae60, #229954);
      }

      .game-card--theme-orange {
         background: linear-gradient(45deg, #f39c12, #e67e22);
      }

      .game-card--theme-purple {
         background: linear-gradient(45deg, #9b59b6, #8e44ad);
      }

      .game-card--theme-pink {
         background: linear-gradient(45deg, #e91e63, #c2185b);
      }

      .game-card--theme-cyan {
         background: linear-gradient(45deg, #00bcd4, #0097a7);
      }

      .game-card--theme-red {
         background: linear-gradient(45deg, #ff5722, #d84315);
      }

      .game-card--theme-brown {
         background: linear-gradient(45deg, #795548, #5d4037);
      }

      .game-card--theme-grey {
         background: linear-gradient(45deg, #607d8b, #455a64);
      }

      .game-card--theme-lime {
         background: linear-gradient(45deg, #4caf50, #388e3c);
      }

      .game-card--theme-amber {
         background: linear-gradient(45deg, #ff9800, #f57c00);
      }

      .game-card--theme-violet {
         background: linear-gradient(45deg, #673ab7, #512da8);
      }

      .game-card--theme-indigo {
         background: linear-gradient(45deg, #1e88e5, #1565c0);
      }

      .game-card--theme-yellow {
         background: linear-gradient(45deg, #ffeb3b, #f57f17);
      }

      .game-card--theme-crimson {
         background: linear-gradient(45deg, #f44336, #c62828);
      }

      .game-card--theme-teal {
         background: linear-gradient(45deg, #009688, #00695c);
      }

      .game-card--theme-sky {
         background: linear-gradient(45deg, #2196f3, #0d47a1);
      }

      .game-card--theme-emerald {
         background: linear-gradient(45deg, #4caf50, #2e7d32);
      }

      .game-card--theme-sunset {
         background: linear-gradient(45deg, #ff5722, #bf360c);
      }

      .game-card--theme-ocean {
         background: linear-gradient(45deg, #2196f3, #1565c0);
      }

      .game-card--theme-forest {
         background: linear-gradient(45deg, #4caf50, #388e3c);
      }

      .game-card--theme-royal {
         background: linear-gradient(45deg, #9c27b0, #6a1b9a);
      }

      .game-card--theme-gold {
         background: linear-gradient(45deg, #ff9800, #e65100);
      }

      .game-card--theme-sunshine {
         background: linear-gradient(45deg, #ffc107, #ff8f00);
      }

      /* === RESPONSIVE DESIGN === */
      @media (max-width: 800px) {
         .gaming-portal__games-grid {
            grid-template-columns: repeat(6, 1fr);
            gap: 6px;
         }

         .game-card {
            min-height: 50px;
         }

         .game-card__badge {
            font-size: 0.35rem;
            padding: 1px 2px;
            top: 3px;
            right: 3px;
         }

         .game-card__title {
            font-size: 0.4rem;
            padding: 5px 2px 2px;
         }

         .gaming-portal__title {
            font-size: 1rem;
         }

         .gaming-portal__title-icon {
            font-size: 1.2rem;
         }
      }

      @media (max-width: 600px) {
         .gaming-portal__games-grid {
            grid-template-columns: repeat(6, 1fr);
            gap: 5px;
         }

         .game-card {
            min-height: 45px;
         }

         .gaming-portal__title {
            font-size: 0.9rem;
         }
      }

      @media (max-width: 480px) {
         .gaming-portal__games-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
         }

         .game-card {
            min-height: 80px;
         }

         .game-card__badge {
            font-size: 0.4rem;
            padding: 1px 3px;
            top: 4px;
            right: 4px;
         }

         .game-card__title {
            font-size: 0.5rem;
            padding: 8px 3px 3px;
         }
      }

      @media (max-width: 350px) {
         .gaming-portal__games-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 6px;
         }

         .gaming-portal__header {
            flex-direction: column;
            gap: 10px;
            text-align: center;
         }

         .gaming-portal__container {
            padding: 12px;
         }

         .game-card {
            min-height: 70px;
         }
      }

      /* === ANIMATION CLASSES === */
      .game-card--loading {
         opacity: 0;
         transform: translateY(20px);
      }

      .game-card--loaded {
         opacity: 1;
         transform: translateY(0);
         transition: all 0.5s ease;
      }
       /* ...existing code... */
      .iframe-footer-bar {
         width: 100%;
         background: linear-gradient(145deg, #222222, #333);
         display: flex;
         justify-content: space-between;
         align-items: center;
         padding: 12px 24px;
         padding-right: 30px;
         box-sizing: border-box;
         border-bottom-left-radius: 10px;
         border-bottom-right-radius: 10px;
         position: absolute;
         left: 0;
         bottom: 0;
         z-index: 2;
      }

      .iframe-footer-left {
         display: flex;
         align-items: center;
         gap: 12px;
      }

      .iframe-footer-thumb {
         width: 38px;
         height: 38px;
         border-radius: 8px;
         object-fit: cover;
         border: 2px solid #fff;
      }

      .iframe-footer-title {
         font-weight: bold;
         color: #fff;
         font-size: 1.1rem;
         margin-bottom: 2px;
      }

      .iframe-footer-author {
         color: #b8d8f7;
         font-size: 0.95rem;
      }

      .iframe-footer-right {
         display: flex;
         align-items: center;
         gap: 22px;
      }

      .iframe-footer-icon {
         color: #ffc107;
         font-size: 1.1rem;
         display: flex;
         align-items: center;
         gap: 6px;
         font-weight: 500;
         cursor: pointer;
      }

      .iframe-footer-icon i {
         font-size: 1.7rem;
      }

      /* ...existing code... */
       .container-box {
         max-width: 1200px;
         margin: 0 auto;
         display: flex;
         gap: 20px;
         flex-wrap: wrap;
      }

      .box {
         flex: 1;
         min-width: 300px;
         background: #080811;
         border-radius: 15px;
         padding: 25px;
         backdrop-filter: blur(10px);
         border: 1px solid rgba(255, 255, 255, 0.1);
         box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
         margin-bottom: 20px;
      }

      /* ...existing code... */
      .box .box {
         width: 100%;
         box-sizing: border-box;
         margin: 10px 0;
      }

      /* ...existing code... */
      .box h1 {
         text-align: center;
         text-decoration: underline;
         font-family: serif;
         font-size: 30px;
         color: #fff;
         margin-bottom: 20px;
      }

      .box p {
         text-align: center;
         line-height: 1.6;
         margin: 0;
         font-size: 16px;
      }
 strong {
            color: #ffffff;
        }
      .box h2 {
         text-align: center;
         font-size: 24px;
         font-weight: bold;
         color: #ffdd44;
         margin-bottom: 20px;
      }
.box h3 {
          font-size: 20px;
          
      }
      .controls-table {
         width: 100%;
         border-collapse: collapse;
         text-align: left;
         font-family: Arial, sans-serif;
         background: rgba(255, 255, 255, 0.05);
         border-radius: 10px;
         overflow: hidden;
      }

      .controls-table thead {
         background: rgba(255, 255, 255, 0.1);
      }

      .controls-table th,
      .controls-table td {
         padding: 12px;
         border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      .controls-table th {
         font-weight: bold;
         color: #f0d210;
      }

      .controls-table td {
         color: #fff;
      }

      .controls-table tr:hover {
         background: rgba(255, 255, 255, 0.05);
      }

      .features-table {
         width: 100%;
         border-collapse: collapse;
         text-align: left;
         font-family: Arial, sans-serif;
         background: rgba(255, 255, 255, 0.05);
         border-radius: 10px;
         overflow: hidden;
      }

      .features-table thead {
         background: rgba(255, 255, 255, 0.1);
      }

      .features-table th,
      .features-table td {
         padding: 12px;
         border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      .features-table th {
         font-weight: bold;
         color: #f0d210;
      }

      .features-table td {
         color: #fff;
      }

      .features-table tr:hover {
         background: rgba(255, 255, 255, 0.05);
      }

      .pro-tips {
         line-height: 1.8;
         font-size: 16px;
      }

      .pro-tips br {
         margin-bottom: 10px;
      }


      /* Full Width Sections */
      .full-width-section {
         flex: none;
         width: 100%;
         min-width: auto;
         max-width: 100%;
      }

      /* Reviews Styling */
      .reviews-container {
         display: grid;
         grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
         gap: 20px;
         margin-bottom: 30px;
      }

      .review-card {
         background: rgba(255, 255, 255, 0.08);
         border-radius: 12px;
         padding: 20px;
         border: 1px solid rgba(255, 255, 255, 0.15);
         transition: transform 0.3s ease, box-shadow 0.3s ease;
      }

      .review-card:hover {
         transform: translateY(-3px);
         box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
      }

      .review-header {
         display: flex;
         justify-content: space-between;
         align-items: flex-start;
         margin-bottom: 15px;
      }

      .reviewer-info {
         display: flex;
         flex-direction: column;
         gap: 5px;
      }

      .reviewer-name {
         font-weight: bold;
         color: #f0d210;
         font-size: 16px;
      }

      .rating {
         font-size: 14px;
         color: #ffd700;
      }

      .review-date {
         color: rgba(255, 255, 255, 0.6);
         font-size: 14px;
      }

      .review-text {
         color: #fff;
         line-height: 1.6;
         font-size: 15px;
         margin: 0;
      }

      .overall-rating {
         grid-column: 1 / -1;
         text-align: center;
         background: linear-gradient(45deg, rgba(240, 210, 16, 0.15), rgba(255, 215, 0, 0.15));
         border-radius: 15px;
         padding: 25px;
         border: 2px solid rgba(240, 210, 16, 0.3);
      }

      .rating-summary {
         display: flex;
         flex-direction: column;
         align-items: center;
         gap: 8px;
      }

      .rating-score {
         font-size: 36px;
         font-weight: bold;
         color: #f0d210;
      }

      .rating-stars {
         font-size: 24px;
         color: #ffd700;
      }

      .rating-count {
         color: rgba(255, 255, 255, 0.8);
         font-size: 14px;
      }

      .cta-section {
         text-align: center;
         background: linear-gradient(45deg, rgba(240, 210, 16, 0.1), rgba(255, 215, 0, 0.1));
         border-radius: 15px;
         padding: 30px;
         margin-top: 20px;
      }

      .cta-section h2 {
         font-size: 28px;
         margin-bottom: 15px;
      }

      /* Responsive design */
      @media (max-width: 768px) {
         .container-box {
            flex-direction: column;
         }

         .box {
            min-width: auto;
         }

         .box h1 {
            font-size: 24px;
         }

         .controls-table,
         .features-table {
            font-size: 14px;
         }

         .controls-table th,
         .controls-table td,
         .features-table th,
         .features-table td {
            padding: 8px;
         }

         .load-more-btn,
         .close-btn {
            padding: 12px 25px;
            font-size: 16px;
         }
      }

      #search-results,
      #mobile-search-results {
         display: none;
         position: absolute;
         top: 110%;
         left: 0;
         width: 100%;
         min-width: 200px;
         background: #fff;
         z-index: 1000;
         border-radius: 0 0 12px 12px;
         box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
         overflow: hidden
      }

      form[action="search"] {
         position: relative;
         width: 100%;
         max-width: 400px
      }

      * {
         margin: 0;
         padding: 0;
         box-sizing: border-box
      }


      .game-section {
         background: rgba(30, 30, 46, 0.8);
         backdrop-filter: blur(10px);
         border: 2px solid #f0d210;
         border-radius: 20px;
         padding: 30px;
         margin: 0px auto;
         max-width: 900px;
         box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
         position: relative;
      }

      .game-container {
         position: relative;
         width: 100%;
         max-width: 1000px;
         margin: 0 auto;
         background: #000;
         border-radius: 15px;
         overflow: hidden;
         box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5)
      }

      .game-frame {
         width: 100%;
         height: 600px;
         border: none;
         border-radius: 15px;
         display: block
      }

      .fullscreen-btn {
         position: absolute;
         top: 15px;
         right: 15px;
         background: rgba(255, 107, 53, 0.9);
         color: white;
         border: none;
         padding: 10px 15px;
         border-radius: 8px;
         cursor: pointer;
         font-size: 14px;
         font-weight: bold;
         transition: all 0.3s ease;
         z-index: 10
      }

      .fullscreen-btn:hover {
         background: #f0d210;
         transform: scale(1.05)
      }

      .fullscreen-container {
         position: relative
      }

      .fullscreen-mode {
         position: fixed !important;
         top: 0 !important;
         left: 0 !important;
         width: 100vw !important;
         height: 100vh !important;
         z-index: 9999 !important;
         background: #000 !important;
         border-radius: 0 !important;
         max-width: none !important
      }

      .fullscreen-mode .game-frame {
         width: 100% !important;
         height: 100% !important;
         border-radius: 0 !important
      }

      .game-controls {
         display: flex;
         justify-content: center;
         gap: 15px;
         margin-top: 20px;
         flex-wrap: wrap
      }

      .control-btn {
         background: rgba(255, 107, 53, 0.2);
         border: 1px solid #f0d210;
         color: #f0d210;
         padding: 10px 20px;
         border-radius: 25px;
         cursor: pointer;
         transition: all 0.3s ease;
         font-weight: bold
      }

      .control-btn:hover {
         background: #f0d210;
         color: white;
         transform: translateY(-2px)
      }
      .bottom-highlight-line {
    width: 100vw;
    max-width: 100vw;
    margin: 40px 0 0 0;
    left: 50%;
    right: 0;
    transform: translateX(-50%);
    background: #1919458f;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    padding: 28px 10px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.15);
    letter-spacing: 0.5px;
    position: relative;
    margin-bottom: 20px;
    z-index: 2;
}

@media (max-width: 600px) {
    .bottom-highlight-line {
        font-size: 1rem;
        padding: 18px 4px;
        border-radius: 14px;
    }
}
.section {
    background: #505051;
    backdrop-filter: blur(10px);
    margin: 40px 0;
    padding: 40px;
    border-color: #f0d210;
    border-radius: 20px;
    border: 1px solid #2a2a3e;
    position: relative;
    transition: all 0.3s ease
}

.section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.15);
    border-color: #f0d210
}

.section h2 {
    color: #f0d210;
    font-size: 2.2rem;
    margin-bottom: 25px;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
    border-bottom: 2px solid #f0d210;
    padding-bottom: 10px
}


.faq-item {
    background: rgba(30, 30, 46, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid #2a2a3e;
    border-radius: 10px;
    margin: 15px 0;
    overflow: hidden;
    transition: all 0.3s ease
}

.full-width-section {
    flex: none;
    width: 100%;
    min-width: auto;
    max-width: 100%
}
.faq-question {
    background: #080811;
    padding: 15px;
    padding-left: 15px;
    padding-right: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    transition: all 0.3s ease
}

.faq-question:hover {
    background: linear-gradient(45deg, #f0d210, #f7931e);
    color: #080811
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    color: aliceblue;
    transition: all 0.4s ease;
    background: rgba(20, 20, 30, 0.8);
    opacity: 0
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
    opacity: 1
}

.faq-toggle {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    flex-shrink: 0
}

.chevron-icon {
    width: 100%;
    height: 100%;
    transform: rotate(270deg);
    transition: transform 0.3s ease
}

.faq-item.active .chevron-icon {
    transform: rotate(90deg)
}a {
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    color: #ff7a21;
    ;
    text-decoration: none
}a:hover {
    text-decoration: underline;
    color: #ff7a21;
}