      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Rajdhani', sans-serif;
      }

      body {
        background-color: #0e0e0e;
        color: #cccccc;
      }

      .site-header {
        position: sticky;
        top: 0;
        z-index: 100;
        background-color: #000000;
        border-bottom: 2px solid #39ff14
      }

      .header-inner {
        width: 100%;
        padding: 0 2rem;
        height: 64px;

        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      .logo {
        font-family: 'Rajdhani', sans-serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: #39ff14;
        letter-spacing: -0.5px;
        padding-left: 10px;
        padding-right: 10px;
        display: flex;
        align-items: center;
        height: 64px;
        transition: background-color 0.2s ease, color 0.2s ease;
        ;
      }

      .logo:hover {
        background-color: #004d0a;
        color: #111114;
      }

      .nav {
        display: flex;
        gap: 2rem;
        height: 100%;
      }

      .nav a {
        padding-left: 20px;
        padding-right: 20px;
        display: flex;
        align-items: center;
        height: 64px;
        font-size: 0.9rem;
        font-weight: 400;
        color: #cccccc;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        transition: color 0.2s ease;
      }

      .nav a:hover {
        color: #000000;
        background-color: #004d0a;
      }

      .jumbotron {
        width: 100%;
        height: 500px;
        background-image: url('https://wallpapercave.com/wp/wp10523077.jpg');
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;

        position: relative;
      }

      .jumbotron::before {
        content: '';
        position: absolute;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.55);
      }

      .jumbotron-content {
        position: relative;
        text-align: center;
        color: white;
        padding: 0 1.5rem;
      }

      .jumbotron-content h1 {
        font-size: 3rem;
        font: 700;
        letter-spacing: 2px;
      }

      .jumbotron-content p {
        font-size: 1.2rem;
        margin-top: 1rem;
        opacity: 0.85;
      }

      .section-header {
        margin-bottom: 2rem;
      }

      .section-label {
        font-size: 0.7rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 2.5px;
        color: #39ff14
      }

      .section-header h2 {
        font-size: 2rem;
        font-weight: 700;
        margin-top: 0.2rem;
        color: #fff;
        letter-spacing: 0.5px;
      }

      .hot-topics {
        width: 100%;
        padding: 4rem 4rem;
      }

      /* Cards row */
      .cards-row {
        display: flex;
        gap: 1.25rem;
      }

      .card {
        flex: 1;
        background-color: #1a1a1f;
        border: 1px solid #2a2a30;
        border-radius: 10px;
        overflow: hidden;
        transition: transform 0.2 ease, box-shadow 0.2 ease;
      }

      .card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 28px rgba(56, 255, 20, 0.12);
        border-color: #39ff14;
      }

      .card-thumb {
        width: 100%;
        aspect-ratio: 16 / 10;
        overflow: hidden;
      }

      .card-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
      }

      .card:hover .card-thumb img {
        transform: scale(1.05);
      }

      .card-body {
        padding: 1rem;
      }

      .card-date {
        font-size: 0.7rem;
        font-weight: 400;
        color: #555;
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      .card-title {
        font-family: 'Rajdhani', sans-serif;
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.4;
        margin-top: 0.4rem;
        color: #e0e0e0;
        transition: color 0.2s ease;
      }

      .card:hover .card-title {
        color: #39ff14;
      }

      .reviews-section {
        width: 100%;
        padding: 0 4rem 5rem;
      }

      .review-card {
        background-color: #1a1a1f;
        border: 1px solid #2a2a30;
        border-radius: 12px;
        overflow: hidden;
        transition: box-shadow 0.3s ease;
      }

      .review-card:hover {
        box-shadow: 0 8px 32px rgba(57, 255, 20, 0.1);
        border-color: #39ff14
      }

      .review-thumb {
        width: 100%;
        aspect-ratio: 16 / 9;
        margin: 0;
        overflow: hidden;
      }

      .review-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease;
      }

      .review-card:hover .review-thumb img {
        transform: scale(1.04)
      }

      .review-body {
        padding: 1.5rem;
      }

      .review-title {
        font-family: 'Rajdhani', sans-serif;
        font-size: 1.6rem;
        font-weight: 700;
        color: #fff;
        margin-top: 0.5rem;
        line-height: 1.2;
        transition: color 0.2 ease;
      }

      .review-card:hover .review-title {
        color: #39ff14;
      }

      .review-developer {
        font-size: 0.82rem;
        color: #666;
        margin-top: 0.5rem;
        font-style: italic;
      }

      .review-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 1.5rem;
      }

      .review-counter {
        font-size: 0.85rem;
        color: #555;
        min-width: 40px;
        text-align: center;
      }

      .btn-nav {
        background-color: transparent;
        border: 1px solid #39ff14;
        color: #39ff14;
        padding: 0.5rem 1.4rem;
        border-radius: 6px;
        font-family: 'DM Sans', sans-serif;
        font-weight: 500;
        cursor: pointer;
        letter-spacing: 0.5px;
        transition: background-color 0.2s ease, color 0.2s ease;
      }

      .btn-nav:hover {
        background-color: #39ff14;
        color: #0d0d0f;
      }

      .site-footer {
        background-color: #111114;
        border-top: 2px solid #39ff14;
        margin-top: 2rem;
      }

      .footer-inner {
        width: 100%;
        padding: 3.5rem 4rem 2.5rem;
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 3rem;
      }

      .footer-brand .logo {
        font-size: 1.6rem;
        font-weight: 700;
        color: #39ff14;
        letter-spacing: 1px;
        display: inline-block;
        margin-bottom: 1rem;
      }

      .footer-tagline {
        font-size: 0.88rem;
        color: #555;
        line-height: 1.7;
      }

      .footer-heading {
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2.5px;
        color: #39ff14;
        margin-bottom: 1.2rem;
      }

      .footer-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.65rem;
      }

      .footer-links a {
        font-size: 0.88rem;
        color: #666;
        transition: color 0.2s ease, padding-left 0.2s ease;
        display: inline-block;
      }

      .footer-links a:hover {
        color: #39ff14;
        padding-left: 6px;
      }

      .footer-bottom {
        border-top: 1px solid #1e1e24;
        text-align: center;
        padding: 1.2rem 2rem;
      }

      .footer-bottom p {
        font-size: 0.75rem;
        color: #333;
        letter-spacing: 0.5px;
      }

      @media (min-width: 1920px) {

        .hot-topics,
        .reviews-section {
          padding-left: 12rem;
          padding-right: 12rem;
        }

        .header-inner,
        .footer-inner {
          padding-left: 6rem;
          padding-right: 6rem;
        }

        .review-card {
          max-width: 1200px;
          margin-left: auto;
          margin-right: auto;
        }

        .jumbotron-contet h1 {
          font-size: 5rem;
        }

        .jumbotron-content p {
          font-size: 1.4rem;
        }

        .card-title {
          font-size: 1.1rem;
        }
      }

      @media (min-width: 1200px) and (max-width: 1919px) {

        .review-card {
          max-width: 900px;
          margin-left: auto;
          margin-right: auto;
        }
      }

      @media (min-width: 769px) and (max-width: 1199px) {

        .hot-topics,
        .reviews-section {
          padding-left: 2rem;
          padding-right: 2rem;
        }

        .header-inner,
        .footer-inner {
          padding-left: 2rem;
          padding-right: 2rem;
        }

        .cards-row {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          gap: 1.25rem;
        }

        .cards-row .card {
          flex: 0 0 calc(33.333% - 1rem);
        }

        .review-card {
          max-width: 700px;
          margin-left: auto;
          margin-right: auto;
        }

        .footer-inner {
          grid-template-columns: 1.5fr 1fr 1fr;
          gap: 2rem;
        }

        .jumbotron-content h1 {
          font-size: 2.6rem;
        }
      }

      @media (max-width: 768px) {

        .header-inner {
          padding: 0.75rem 1.5rem;
          flex-direction: column;
          height: auto;
          gap: 0.5rem;
        }

        .logo {
          height: auto;
        }

        .nav {
          height: auto;
          gap: 0;
          justify-content: center;
        }

        .nav a {
          height: 40px;
          padding: 0 1rem;
          font-size: 0.78rem;
        }

        .jumbotron {
          height: 320px;
        }

        .jumbotron-content h1 {
          font-size: 2rem;
        }

        .jumbotron-content p {
          font-size: 0.95rem;
        }

        .hot-topics {
          padding: 2.5rem 1.5rem;
        }

        .cards-row {
          flex-direction: column;
        }

        .reviews-section {
          padding: 0 1.5rem 3rem;
        }

        .review-title {
          font-size: 1.3rem;
        }

        .btn-nav {
          padding: 0.5rem 1rem;
          font-size: 0.78rem;
        }

        .footer-inner {
          padding: 2.rem 1.5rem 2rem;
          grid-template-columns: 1fr;
          gap: 2rem;
        }

        .footer-bottom {
          padding: 1rem 1.5rem;
        }
      }