    :root {
      --black: #0b0b0b;
      --dark: #141414;
      --gold: #c9a86a;
      --gray: #9aa0a6;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Inter", system-ui, sans-serif;
    }

    body {
      color: #eee;
      background-image: url('src/bg.jpg');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      background-color: #0b0b0b;
      position: relative;
      min-height: 100vh;
    }

    body::before {
      content: "";
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(8px);
      z-index: -1;
    }

    header {
      background: var(--black);
      border-bottom: 1px solid #222;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 9999;
    }

    .nav {
      max-width: 2200px;
      margin: auto;
      padding: 18px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 25px;
    }

    nav a {
      color: #eee;
      text-decoration: none;
      font-size: 15px;
      transition: color 0.2s ease;
    }

    nav a:hover {
      color: var(--gold);
    }

    .container {
      max-width: 2200px;
      margin: 100px auto 60px;
      padding: 0 24px;
    }

    /* Hero Section */
    .product-hero {
      text-align: center;
      padding: 60px 20px;
      margin-bottom: 40px;
    }

    .product-hero img {
      max-width: 200px;
      margin-bottom: 30px;
    }

    .product-hero h1 {
      font-size: 3rem;
      background: linear-gradient(135deg, var(--gold), #f4e4c1);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 20px;
      letter-spacing: 2px;
    }

    .product-subtitle {
      color: var(--gray);
      font-size: 1.2rem;
      line-height: 1.8;
      max-width: 900px;
      margin: 0 auto;
    }

    .divider {
      width: 50%;
      height: 1px;
      background: var(--gold);
      margin: 60px auto;
      opacity: 0.3;
    }

    /* Two Column Layout */
    .two-column {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin: 60px 0;
      align-items: start;
      font-size: 100;
    }

    /* Accordion Styles */
    .accordion {
      background: rgba(20, 20, 20, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      overflow: hidden;
      backdrop-filter: blur(10px);
    }

    .accordion-item {
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .accordion-item:last-child {
      border-bottom: none;
    }

    .accordion-header {
      background: black;
      padding: 15px 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.3s ease;
      opacity: 0.75;
    }

    .accordion-header:hover {
      opacity: 1;
      background: #1a1a1a;
    }

    .accordion-header.active {
      background: #2a2a2a;
      opacity: 1;
    }

    .accordion-title {
      font-weight: bold;
      text-transform: none;
      font-size: 1rem;
      color: #ddd;
    }

    .accordion-icon {
      font-size: 1.2rem;
      color: var(--gray);
      transition: transform 0.3s ease;
    }

    .accordion-header.active .accordion-icon {
      transform: rotate(180deg);
    }

    .accordion-content {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height 0.3s ease, opacity 0.3s ease;
      background: #2a2a2a;
    }

    .accordion-content.active {
      max-height: 500px;
      opacity: 1;
    }

    .accordion-body {
      padding: 20px;
      color: #ccc;
      line-height: 1.8;
    }

    /* Slideshow */
    .slideshow {
      position: relative;
      width: 100%;
      height: 500px;
      overflow: hidden;
      border-radius: 10px;
      background: rgba(20, 20, 20, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .slideshow-image {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: contain;
      opacity: 0;
      transition: opacity 1s ease;
    }

    .slideshow-image.active {
      opacity: 1;
    }

    .slideshow-nav {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 10;
    }

    .slideshow-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .slideshow-dot.active {
      background: var(--gold);
      transform: scale(1.2);
    }

    /* Content Box */
    .content-box {
      background: rgba(20, 20, 20, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 40px;
      border-radius: 10px;
      backdrop-filter: blur(10px);
      margin: 40px 0;
    }

    .content-box h2 {
      color: var(--gold);
      font-size: 2rem;
      margin-bottom: 20px;
      text-align: center;
      text-transform: none;
      letter-spacing: 2px;
    }

    .content-box p {
      line-height: 1.8;
      color: #ddd;
      margin-bottom: 15px;
    }

    .content-box ul {
      list-style: none;
      padding: 0;
    }

    .content-box li {
      padding: 8px 0;
      padding-left: 25px;
      position: relative;
      color: #ddd;
    }

    .content-box li::before {
      content: '◆';
      position: absolute;
      left: 0;
      color: var(--gold);
    }

    /* Tabbed Box */
    .tabbed-box {
      background: rgba(20, 20, 20, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      overflow: hidden;
      backdrop-filter: blur(10px);
    }

    .tab-navigation {
      display: flex;
      border-bottom: 1px solid var(--gold);
    }

    .tab-button {
      flex: 1;
      background: black;
      border: none;
      padding: 20px;
      color: #aaa;
      font-weight: bold;
      text-transform: none;
      cursor: pointer;
      transition: all 0.3s ease;
      border-right: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 1.2rem;
    }

    .tab-button:last-child {
      border-right: none;
    }

    .tab-button:hover {
      background: #1a1a1a;
      color: var(--gold);
    }

    .tab-button.active {
      background: #2a2a2a;
      color: var(--gold);
      border-bottom: 3px solid var(--gold);
    }

    .tab-content-wrapper {
      padding: 40px;
    }

    .tab-pane {
      display: none;
      opacity: 0;
      height: 0;
      overflow: hidden;
      transition: opacity 0.3s ease;
    }

    .tab-pane.active {
      display: block;
      opacity: 1;
      height: auto;
      overflow: visible;
      animation: fadeIn 0.4s ease;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .download-links {
        width: 100%; /* Force Firefox to respect the container width */
        display: flex;
        flex-direction: column;
        gap: 15px;
        background: rgba(255, 255, 255, 0.05);
        padding: 20px;
        border-radius: 8px;
        box-sizing: border-box; /* Ensures padding doesn't break the layout */
    }
    
    /* Ensure links are clickable and visible in Firefox */
    .download-links a {
        display: inline-block;
        padding: 2px 5px;
    }

    .download-links h3 {
      color: var(--gold);
      margin-bottom: 15px;
      font-size: 1.3rem;
    }

    .download-links a {
      color: #00bffe;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .download-links a:hover {
      color: var(--gold);
    }

    .version-info {
      background: rgba(201, 168, 106, 0.1);
      border-left: 4px solid var(--gold);
      padding: 20px;
      margin: 20px 0;
      border-radius: 5px;
    }

    /* Footer */
    footer {
      background: var(--black);
      color: #ddd;
      padding: 50px 24px;
      margin-top: 80px;
    }

    .footer-grid {
      max-width: 2200px;
      margin: auto;
      display: grid;
      grid-template-columns: 2fr 1fr 2fr;
      gap: 40px;
    }

    .footer-links a {
      display: block;
      color: #9aa0a6;
      text-decoration: none;
      margin-bottom: 8px;
      font-size: 18px;
    }

    .footer-links a:hover {
      color: var(--gold);
    }

    .footer-links p {
      font-size: 22px;
      margin-bottom: 15px;
    }

    .policy {
      font-size: 16px;
      line-height: 1.6;
      color: #aaa;
    }

    .footer-bottom {
      margin-top: 40px;
      text-align: center;
      font-size: 16px;
      color: #777;
      border-top: 1px solid #333;
      padding-top: 20px;
    }

    .requestlink {
      color: var(--gold);
      text-decoration: none;
      font-weight: bold;
    }

    .contact-area {
      text-align: center;
      padding: 40px;
      background: rgba(20, 20, 20, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      border-top: 2px solid var(--gold);
    }

    .social-grid {
      display: flex;
      justify-content: center;
      gap: 50px;
      margin-top: 20px;
      flex-wrap: wrap;
    }

    .social-item {
      text-decoration: none;
      color: #fff;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      transition: transform 0.3s;
    }

    .social-item img {
      width: 45px;
      height: 45px;
    }

    .social-item:hover {
      transform: translateY(-5px);
      color: var(--gold);
    }

        /* ===== FIXED STYLES TO ADD ===== */
    
    /* Fix for tab transitions */
    .tab-pane {
      opacity: 0;
      height: 0;
      overflow: hidden;
      transition: opacity 0.3s ease;
    }
    
    .tab-pane.active {
      opacity: 1;
      height: auto;
      overflow: visible;
    }
    
    /* Fix for accordion transitions */
    .accordion-content {
      max-height: 0;
      opacity: 0;
      transition: max-height 0.3s ease, opacity 0.3s ease;
    }
    
    .accordion-item.active .accordion-content {
      max-height: 500px;
      opacity: 1;
    }
    
    /* Slideshow fix */
    .slideshow-image {
      opacity: 0;
      transition: opacity 0.5s ease;
    }
    
    .slideshow-image.active {
      opacity: 1;
    }
    
    /* Remove hover flash on dropdown */
    .dropdown:hover .dropdown-content {
      display: block;
    }
    
    /* Nav fixes */
    nav .dropdown {
      position: relative;
    }
    
    nav .dropdown-content {
      margin-top: 10px;
    }

    /* Fix for the Download Area Layout */
    .download-three-column {
      display: grid;
      grid-template-columns: 0.8fr 4fr 0.8fr; /* Ads smaller, center much larger */
      gap: 20px;
      align-items: start;
      margin: 0px;
      margin-left: 10px;
      width: 95vw;
    }
    
    .fixed-box {
      background: rgba(20, 20, 20, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      padding: 10px;
      text-align: center;
      backdrop-filter: blur(10px);
      min-height: 100px; /* Gives the box shape even when empty */
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    
    .fixed-box span {
      font-size: 10px;
      color: var(--gray);
      margin-bottom: 5px;
      display: block;
    }
    
    /* Fix for Windows Editions / Features Images */
    .image-content-fix {
      width: 100%;
      max-width: 500px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: block;
      margin: 0 auto;
    }
    
    /* Ensure two-column sections center items vertically */
    .two-column {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin: 40px 0;
      align-items: center; /* This keeps text and images level */
    }
    
    @media (max-width: 1100px) {
      .download-three-column {
        grid-template-columns: 1fr; /* Stack on mobile */
      }
      .fixed-box {
        min-height: auto;
        order: 2; /* Put ads below content on mobile */
      }
    }
    
    /* Mobile menu fix */
    @media (max-width: 900px) {
      nav {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--black);
        padding: 20px;
        border-top: 1px solid #333;
      }
      
      nav a, .dropdown-toggle {
        padding: 10px 0;
        border-bottom: 1px solid #333;
      }
      
      .dropdown-content {
        position: static;
        box-shadow: none;
        border: none;
        background: transparent;
      }
    }

    @media (max-width: 900px) {
      .two-column {
        grid-template-columns: 1fr;
      }

      .product-hero h1 {
        font-size: 2rem;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      nav {
        display: none;
      }

      .tab-button {
        font-size: 0.75rem;
        padding: 15px 10px;
      }
    }