
  :root {
    --primary: #6a1b9a;
    --primary-light: #9c4dcc;
    --primary-dark: #38006b;
    --secondary: #00e5ff;
    --secondary-light: #6effff;
    --secondary-dark: #00b2cc;
    --dark: #121212;
    --dark-light: #2d2d2d;
    --light: #f5f5f5;
    --gray: #757575;
    --success: #4caf50;
    --error: #f44336;
  }
  
  /* Base Styles */
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
  }
  
  section {
    padding: 60px 0;
    position: relative;
  }
  
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    color: var(--light);
    font-weight: 700;
    line-height: 1.2;
  }
  
  h1 {
    font-size: 2.5rem;
    margin-bottom: 25px;
  }
  
  h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
  }
  
  h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--light);
  }
  
  .lead {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 30px;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
  }
  
  .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
  }
  
  /* Button Styles */
  .btn-details, .btn-subscribe {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
  }
  
  .btn-details:hover, .btn-subscribe:hover {
    background-color: var(--primary-light);
  }
  
  /* Hero Section */
  .hero-section {
    background-color: var(--dark);
    color: var(--light);
    text-align: center;
    padding: 100px 0;
    position: relative;
  }
  
  .hero-section h1 {
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  }
  
  .hero-section p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Featured Hardware Section */
  .featured-hardware {
    background-color: var(--dark-light);
    color: var(--light);
  }
  
  .hardware-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  
  @media (min-width: 768px) {
    .hardware-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .hardware-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .hardware-item {
    background-color: var(--dark);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s;
  }
  
  .hardware-item:hover {
    transform: translateY(-5px);
  }
  
  .hardware-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
  
  .hardware-item h3, .hardware-item p {
    padding: 0 20px;
  }
  
  .hardware-item h3 {
    margin-top: 20px;
  }
  
  .hardware-item .btn-details {
    margin: 0 20px 20px;
  }
  
  /* Gaming Peripherals Section */
  .gaming-peripherals {
    background-color: var(--dark);
    color: var(--light);
    position: relative;
  }
  
  .peripherals-wrapper {
    display: flex;
    flex-direction: column;
  }
  
  @media (min-width: 768px) {
    .peripherals-wrapper {
      flex-direction: row;
      align-items: center;
    }
  }
  
  .peripherals-content {
    flex: 1;
  }
  
  .peripherals-image {
    flex: 1;
    margin-top: 30px;
  }
  
  @media (min-width: 768px) {
    .peripherals-image {
      margin-top: 0;
      margin-left: 30px;
    }
  }
  
  .peripherals-item {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
  }
  
  .peripherals-item i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
  }
  
  /* Gaming PC Builds Section */
  .gaming-pc-builds {
    background-color: var(--dark-light);
    color: var(--light);
  }
  
  .pc-builds-tabs {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .tabs-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--gray);
  }
  
  .tab-btn {
    padding: 12px 24px;
    background: transparent;
    border: none;
    color: var(--light);
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
    position: relative;
  }
  
  .tab-btn:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--secondary);
    transform: scaleX(0);
    transition: transform 0.3s;
  }
  
  .tab-btn.active {
    color: var(--secondary);
  }
  
  .tab-btn.active:after {
    transform: scaleX(1);
  }
  
  .tab-pane {
    display: none;
  }
  
  .tab-pane.active {
    display: block;
  }
  
  .build-content {
    display: flex;
    flex-direction: column;
  }
  
  @media (min-width: 768px) {
    .build-content {
      flex-direction: row;
      align-items: center;
    }
  }
  
  .build-image {
    flex: 1;
    margin-bottom: 30px;
  }
  
  @media (min-width: 768px) {
    .build-image {
      margin-bottom: 0;
      margin-right: 30px;
    }
  }
  
  .build-specs {
    flex: 1;
  }
  
  .specs-list {
    list-style-type: none;
    margin-bottom: 20px;
  }
  
  .specs-list li {
    margin-bottom: 10px;
    color: var(--light);
  }
  
  .build-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary);
    margin-top: 20px;
  }
  
  /* Tech Trends Section */
  .tech-trends {
    background-color: var(--dark);
    color: var(--light);
    position: relative;
  }
  
  .trends-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  
  @media (min-width: 768px) {
    .trends-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .trends-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .trend-item {
    background-color: rgba(45, 45, 45, 0.7);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s;
    text-align: center;
  }
  
  .trend-item:hover {
    transform: translateY(-5px);
  }
  
  .trend-item i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
  }
  
  /* Newsletter Section */
  .newsletter {
    background-color: var(--dark-light);
    color: var(--light);
    text-align: center;
  }
  
  .newsletter p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }
  
  .newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }
  
  .form-group {
    margin-bottom: 20px;
    text-align: left;
  }
  
  label {
    display: block;
    margin-bottom: 8px;
    color: var(--light);
    font-weight: 600;
  }
  
  input, select {
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    border: 1px solid var(--gray);
    background-color: var(--dark);
    color: var(--light);
  }
  
  input:focus, select:focus {
    outline: none;
    border-color: var(--secondary);
  }
  
  .btn-subscribe {
    align-self: flex-start;
    margin-top: 10px;
  }
  
  /* Accessibility */
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }

  /* Link Styles */
  a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s;
  }
  
  a:hover {
    color: var(--secondary-light);
  }
