/** Shopify CDN: Minification failed

Line 1117:0 Unexpected "}"
Line 1164:17 Expected identifier but found "!"

**/
/* Global Reset */
html, body {
  margin: 0;
  padding: 0;
}
/* Mech-16 Performance Section Styling */

body.mech16-page {
  background-color: #0c0c0c;
  color: #ffffff;
  font-family: 'Arial', sans-serif;
}
/* -------------------------------- */
/* Hero Section - Adjusted Positioning */
/* -------------------------------- */
.hero-section {
  position: relative;
  width: 100%;
  height: 80vh;
  background: url('/cdn/shop/files/mech-16-BG.png?v=1742649112') no-repeat center center/cover;
  display: flex;
  align-items: center; /* Centers content vertically */
  justify-content: flex-start; /* Aligns text towards the left */
  padding-left: 10%;
}

/* Dark Overlay Behind Text Only */
.hero-overlay {
  position: relative;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent black */
  padding: 30px 40px;
  border-radius: 12px;
  display: inline-block;
}

/* Centered Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
  text-align: left;
}

/* Text Styling */
.hero-subtitle {
  font-size: 0.9rem;
  color: #FFD100;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 4rem !important;
  font-weight: 900 !important;
  color: #FFD100 !important;
}

.hero-tagline {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 15px;
}

.hero-description {
  font-size: 1rem;
  color: #bbbbbb;
  margin-bottom: 30px;
}
.hero-subheading {
  font-size: 3rem !important;
  font-weight: bold !important;
  color: #ffffff !important;
  margin-top: 20px !important;
}
.hero-section {
  margin-top: 0;
  padding-top: 1px;
  /* or instead of padding-top, use one of these:
     overflow: hidden;
     display: flow-root;
  */
}
/* -------------------------------- */
/* Hero Buttons - Hover & Active Effects */
/* -------------------------------- */
.hero-button {
  display: inline-block;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 6px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

/* Filled Button (Yellow Background) */
.hero-button.filled {
  background: #FFD100;
  color: #000;
  border: 2px solid #FFD100;
}

/* Outlined Button (Black Background, Yellow Border) */
.hero-button.outlined {
  background: transparent;
  color: #FFD100;
  border: 2px solid #FFD100;
}

/* Hover Effect */
.hero-button:hover,
.hero-button:focus {
  background: #FFD100;
  color: #000;
  border-color: #FFD100;
}

/* Active/Pressed Effect */
.hero-button:active {
  background: #e6be00; /* Slightly darker yellow for click effect */
  color: #000;
  border-color: #e6be00;
}


/* Responsive Adjustments */
@media (max-width: 1024px) {
  .hero-section {
    justify-content: center; /* Center content on smaller screens */
    padding-left: 0;
  }

  .hero-content {
    text-align: center;
    padding: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-button {
    width: 100%;
    text-align: center;
  }
}
/* -------------------------------- */
/* Centered Scroll Down Button */
/* -------------------------------- */
.scroll-down {
  position: absolute;
  bottom: 30px; /* Adjust spacing from bottom */
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
  color: #bbbbbb;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.3s ease-in-out;
}

/* Arrow Animation */
.scroll-down .arrow {
  font-size: 1.5rem;
  margin-top: 5px;
  animation: bounce 1.5s infinite ease-in-out;
}

/* Fade Effect on Hover */
.scroll-down:hover {
  color: #FFD100;
}

/* Bounce Animation */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Responsive - Adjust for Smaller Screens */
@media (max-width: 768px) {
  .scroll-down {
    bottom: 15px;
    font-size: 0.9rem;
  }

  .scroll-down .arrow {
    font-size: 1.2rem;
  }
}


/* Outer Performance Section - Restoring Container */
.performance-section {
  max-width: 1200px; /* Prevents stretching */
  margin: 40px auto; /* Centers the section */
  padding: 40px 20px;
  background-color: #000 !important;
  border-radius: 12px; /* Rounded edges */
  border: 2px solid rgba(255, 255, 255, 0.1); /* Subtle white border */
  text-align: center;
}

/* Section Header */
.performance-header {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #ffffff !important;
  margin-bottom: 20px;
  position: relative;
}

/* Yellow Underline */
.performance-header::after {
  content: "";
  display: block;
  width: 25%;
  height: 4px;
  background-color: #FFD100;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}

/* Description Text */
.performance-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Performance Tabs */
.performance-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.perf-btn {
  background: #222;
  color: white;
  padding: 12px 20px;
  margin: 0 5px;
  border-radius: 8px;
  border: 1px solid #444;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.perf-btn.active {
  background: #FFD100 !important;
  color: #000000 !important;
  font-weight: bold;
  border: 2px solid #FFD100;
}

/* Responsive Buttons */
@media (max-width: 768px) {
  .performance-buttons {
    flex-direction: column;
  }
  .perf-btn {
    width: 100%;
  }
}

/* Performance Content - Structured Layout */
.performance-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(15, 15, 15, 0.95);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Left Side: Performance Graphs */
.graph-container {
  width: 60%;
  text-align: left;
  padding: 20px;
  background: rgba(20, 20, 20, 0.8);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Right Side: Highlighted Stat */
.highlight-container {
  width: 35%;
  text-align: center;
  font-size: 1.5rem;
  padding: 20px;
  background: rgba(20, 20, 20, 0.9);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* FPS Number (Main Stat) */
.highlight-container p:first-child {
  font-size: 3rem;
  font-weight: 900;
  color: #FFD100;
  margin-bottom: 5px;
}

/* Subtitle (e.g., "Average FPS in AAA Games") */
.highlight-container p:nth-child(2) {
  font-size: 1.2rem;
  font-weight: normal;
  color: #ffffff;
  margin-bottom: 5px;
}

/* Secondary Text (e.g., "Up to 33% faster than competition") */
.highlight-container p:nth-child(3) {
  font-size: 1rem;
  color: #888888;
  font-weight: normal;
}

/* Performance Metrics */
.performance-metric {
  padding: 10px;
  background: rgba(30, 30, 30, 0.8);
  border-radius: 6px;
  margin-bottom: 10px;
}

/* Labels Above Bars */
.metric-label {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 5px;
}

/* Performance Bar Container */
.perf-bar-container {
  background-color: #333;
  border-radius: 4px;
  overflow: hidden;
  height: 10px;
  width: 100%; /* important */
  margin: 0 10px;
}

.perf-bar {
  height: 8px;
  background-color: #fdd835; /* or whatever your brand yellow is */
  border-radius: 4px;
  transition: width 0.8s ease-in-out;
}

/* "Experience the Difference" Link */
.experience-link {
  display: block;
  margin-top: 10px;
  font-size: 1rem;
  font-weight: bold;
background-color: #000 !important;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
  text-align: center;
}

.experience-link:hover {
  color: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .performance-content {
    flex-direction: column;
    align-items: center;
  }
  .graph-container,
  .highlight-container {
    width: 100%;
    margin-bottom: 20px;
  }
}


/* Feature Highlights Section */
.feature-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

.highlight-item {
  background: rgba(26, 26, 26, 0.9);
  padding: 20px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #ffffff;
}

.highlight-item h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.highlight-item p {
  font-size: 1rem;
  margin-bottom: 10px;
}

.highlight-item strong {
  color: #FFD100;
  font-size: 1.2rem;
}


/* Feature Highlights Section with Icons */
.feature-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

.highlight-item {
  background: rgba(26, 26, 26, 0.9);
  padding: 20px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #ffffff;
  position: relative;
}

.highlight-item h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.highlight-item p {
  font-size: 1rem;
  margin-bottom: 10px;
}

.highlight-item strong {
  color: #FFD100;
  font-size: 1.2rem;
}

/* Feature Icons */
.highlight-item::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 2rem;
  color: #FFD100;
  display: block;
  margin-bottom: 10px;
}

/* Specific icons for each feature */
.highlight-item:nth-child(1)::before { content: "\f2db"; } /* Processor (microchip) */
.highlight-item:nth-child(2)::before { content: "\f11b"; } /* GPU (desktop icon) */
.highlight-item:nth-child(3)::before { content: "\f538"; } /* Memory (server icon) */
.highlight-item:nth-child(4)::before { content: "\f0a0"; } /* Storage (database icon) */
.highlight-item:nth-child(5)::before { content: "\f108"; } /* Display (monitor icon) */
.highlight-item:nth-child(6)::before { content: "\f2dc"; } /* Cooling (fan icon) */


/* Feature Highlights Section - Text & Colors Refinement */
.highlight-item h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff; /* White heading */
  margin-bottom: 10px;
}

.highlight-item p {
  font-size: 1rem;
  color: #bbbbbb; /* Light grey body text */
  margin-bottom: 10px;
}

.highlight-item strong {
  color: #FFD100; /* Bold yellow highlight text */
  font-size: 1.2rem;
  font-weight: bold;
}

/* Feature Icons */
.highlight-item::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 2rem;
  color: #FFD100; /* Yellow icon */
  display: block;
  margin-bottom: 10px;
}


/* Feature Highlights Section - Header Styling */
.feature-header {
  text-align: center;
  margin-bottom: 20px;
}

.feature-header h2 {
  font-size: 2rem !important;
  color: #FFFFFF !important; /* Yellow uppercase text */
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  font-weight: bold !important;
}

.feature-header h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff; /* White bold text */
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

/* Yellow Underline Effect */
.feature-header h1::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background-color: #FFD100;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}

.feature-header p {
  font-size: 1rem;
  color: #bbbbbb; /* Light grey text */
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}


/* Engineering & Design Section */
.engineering-design {
  max-width: 1200px;
  margin: 60px auto;
  text-align: center;
  padding: 40px 20px;
  background-color: #000 !important;
  
}

.engineering-header h2 {
  font-size: 1rem;
  color: #FFD100; /* Yellow uppercase text */
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

.engineering-header h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff; /* White bold text */
  margin-bottom: 10px;
}

.engineering-header p {
  font-size: 1rem;
  color: #bbbbbb; /* Light grey text */
  max-width: 800px;
  margin: 0 auto 30px auto;
}

/* Engineering Content Layout */
.engineering-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 40px auto;
}

/* Left Side: Text Content */
.engineering-text {
  width: 50%;
  text-align: left;
}

.engineering-text h3 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #ffffff; /* White bold headings */
  margin-bottom: 5px;
}

.engineering-text p {
  font-size: 1rem;
  color: #bbbbbb; /* Light grey body text */
  margin-bottom: 20px;
}

/* Right Side: Image with Glow */
.engineering-image {
  position: relative;
  width: 50%;
  text-align: center;
}

.engineering-image img {
  max-width: 100%;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}

/* Yellow Glow Effect */
.engineering-image::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 12px;
  background: rgba(255, 209, 0, 0.2);
  filter: blur(20px);
  z-index: -1;
}

/* Premium Build Quality Text */
.engineering-image .image-caption {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #FFD100;
  font-weight: bold;
  font-size: 1rem;
}

/* Bottom Specs Section */
.engineering-specs {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.spec-box {
  background: rgba(26, 26, 26, 0.9);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  min-width: 200px;
}

.spec-box strong {
  font-size: 1.8rem;
  font-weight: bold;
  color: #FFD100; /* Bold yellow numbers */
}

.spec-box p {
  font-size: 1rem;
  color: #bbbbbb; /* Light grey text */
}


/* Engineering & Design Section - Fixes */
.engineering-design {
  max-width: 1200px;
  margin: 60px auto;
  text-align: center;
  padding: 40px 20px;
}

/* Section Header */
.engineering-header h2 {
  font-size: 1rem;
  color: #FFD100; /* Yellow uppercase text */
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

.engineering-header h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff; /* White bold text */
  margin-bottom: 10px;
}

.engineering-header p {
  font-size: 1rem;
  color: #bbbbbb; /* Light grey text */
  max-width: 800px;
  margin: 0 auto 30px auto;
}

/* Engineering Content Layout */
.engineering-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 40px auto;
}

/* Left Side: Text Content */
.engineering-text {
  width: 50%;
  text-align: left;
}

.engineering-text h3 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #ffffff; /* White bold headings */
  margin-bottom: 5px;
}

.engineering-text p {
  font-size: 1rem;
  color: #bbbbbb; /* Light grey body text */
  margin-bottom: 20px;
}

/* Right Side: Image with Glow */
.engineering-image {
  position: relative;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.engineering-image img {
  max-width: 100%;
  border-radius: 10px;
  display: block;
}

/* Yellow Glow Effect - Properly Applied */
.engineering-image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 209, 0, 0.2);
  filter: blur(25px);
  border-radius: 12px;
  z-index: -1;
}

/* Premium Build Quality Text - Positioned Correctly */
.image-caption {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #FFD100;
  font-weight: bold;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.7);
  padding: 5px 10px;
  border-radius: 5px;
}

/* Bottom Specs Section */
.engineering-specs {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
/* Responsive Fix for Spec Boxes */
.engineering-specs {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap; /* Allows boxes to wrap on smaller screens */
}

/* Individual Spec Box */
.spec-box {
  background: rgba(26, 26, 26, 0.9);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  min-width: 200px;
  flex: 1; /* Allows the boxes to flexibly resize */
}

/* Responsive Stacking for Mobile */
@media (max-width: 768px) {
  .engineering-specs {
    flex-direction: column; /* Stacks items vertically */
    align-items: center;
  }

  .spec-box {
    width: 100%; /* Makes each box take full width */
    max-width: 300px; /* Prevents excessive stretching */
  }
}

.spec-box {
  background: rgba(26, 26, 26, 0.9);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  min-width: 200px;
}

.spec-box strong {
  font-size: 1.8rem;
  font-weight: bold;
  color: #FFD100; /* Bold yellow numbers */
}

.spec-box p {
  font-size: 1rem;
  color: #bbbbbb; /* Light grey text */
}


/* Engineering & Design Section - Caption Fix */
.engineering-image {
  position: relative;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.engineering-image img {
  max-width: 100%;
  border-radius: 10px;
  display: block;
}

/* Properly position the yellow glow effect */
.engineering-image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 209, 0, 0.2);
  filter: blur(25px);
  border-radius: 12px;
  z-index: -1;
}

/* Fixing the caption placement */
.image-caption {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #FFD100;
  font-weight: bold;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.7); /* Adds black background for better visibility */
  padding: 5px 10px;
  border-radius: 5px;
  z-index: 2; /* Ensures it stays above the image */
}

/* Remove duplicate text issue */
.engineering-content .image-caption:last-of-type {
  display: none;
}

/* -------------------------------- */
/*  2. Ports Layout */
/* -------------------------------- */
.port-list {
    display: flex;
    justify-content: space-between;
    max-width: 600px; /* Adjust width as needed */
    margin: 20px auto;
}

.port-list ul {
    list-style: none;
    padding: 0;
    margin: 0 10px;
}

.port-list li {
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: white;
    margin-bottom: 5px;
}

.port-number {
    color: #ffd109;
    font-weight: bold;
}

/* -------------------------------- */
/*  1. Pre-order Section Styling */
/* -------------------------------- */
.preorder-section {
  text-align: center;
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.preorder-subtitle {
  font-size: 0.9rem;
  color: #FFD100;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 10px;
}

.preorder-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 10px;
}

.preorder-title .highlight {
  text-decoration: none;
  position: relative;
}

.preorder-title .highlight::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: #FFD100;
  z-index: -1;
}

.preorder-description {
  font-size: 1rem;
  color: #bbbbbb;
  margin-bottom: 40px;
}

/* -------------------------------- */
/*  2. Pre-order Box Layout */
/* -------------------------------- */
.preorder-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* Adjust Width to Fit Three Boxes Evenly */
.preorder-box {
  background: rgba(26, 26, 26, 0.9);
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  width: 32%; /* Ensures three fit side by side */
  min-width: 280px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px 4px 15px rgba(255, 255, 255, 0.1);
  transition: color 0.3s ease-in-out;
}

/* Responsive Design - Switch to Single Column on Mobile */
@media (max-width: 1024px) {
  .preorder-container {
    flex-direction: column;
    align-items: center;
  }
  
  .preorder-box {
    width: 100%;
    max-width: 400px;
  }
}

/* -------------------------------- */
/*  3. Product Title Styling - Always White, Yellow on Active */
/* -------------------------------- */
.preorder-name {
  font-size: 1.6rem;
  font-weight: bold;
  color: #ffffff !important; /* Force white by default */
  transition: color 0.3s ease-in-out;
}

/* Ensure Yellow on Hover or Selection */
.preorder-box:hover .preorder-name,
.preorder-box.active .preorder-name {
  color: #FFD100 !important; /* Yellow when hovered/active */
}

/* -------------------------------- */
/*  4. Price Styling */
/* -------------------------------- */
.preorder-price {
  font-size: 2.4rem;
  font-weight: bold;
  color: #ffffff;
  display: flex;
  align-items: baseline;
}

.preorder-price .currency {
  font-size: 1rem;
  color: #bbbbbb;
  margin-left: 5px;
}

/* -------------------------------- */
/*  5. Features List */
/* -------------------------------- */
.preorder-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.preorder-features li {
  font-size: 1rem;
  color: #FFD100;
  margin-bottom: 5px;
}

/* -------------------------------- */
/*  6. Pre-order Buttons */
/* -------------------------------- */
.preorder-button {
  display: block;
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 14px 0;
  width: 100%;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
}

.preorder-button.filled {
  background: #FFD100;
  color: #000;
}

.preorder-button.outlined {
  border: 2px solid #FFD100;
  color: #FFD100;
}

.preorder-button:hover {
  background: #fff;
  color: #000;
}

/* Selected Button & Box */
.preorder-box.active .preorder-button {
  background: #FFD100;
  color: #000;
}

.preorder-box.active .preorder-button.outlined {
  background: #FFD100;
  color: #000;
  border-color: #FFD100;
}

/* -------------------------------- */
/*  7. Shipping Note */
/* -------------------------------- */
.preorder-note {
  font-size: 0.9rem;
  color: #bbbbbb;
  margin-top: 20px;
}
}
/* -------------------------------- */
/* Full-Screen Image Section */
/* -------------------------------- */
.full-screen-image {
  width: 100vw; /* Full viewport width */
  height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.full-screen-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the entire section */
}

/* -------------------------------- */
/* Ports Section */
/* -------------------------------- */
.section-heading {
  text-align: center;
  margin-bottom: 20px;
}

.section-heading h2 {
  font-size: 1rem;
  color: #ffffff !important; /* Yellow uppercase text */
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

.section-heading h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff !important; /* White bold text */
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}
.custom-landing-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #000;
    color: #fff; !important;
}


.image-container {
    position: relative;
    display: inline-block;
    max-width: 100;
}

.laptop-image {
    width: 100%;
    max-width: 20000px;
    display: block;
    margin: 0 auto;
}

.port-label {
    position: absolute;
    background-color: rgba(0, 255, 0, 0.8);
    color: #000;
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 5px;
    font-weight: bold;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

/* Structured Port Description Layout */
.port-description {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.left-column,
.right-column {
    width: 50%;
    text-align: left;
}

.port-description p {
    font-size: 1rem;
    color: #7cff7c; /* Bright green for numbers */
    margin: 5px 0;
}

.highlight {
    font-weight: bold;
    color: #7cff7c; /* Same green color */
}
/* Mech-16.css - Updated Styles for Comparison Table */

body.mech16-page {
  background-color: #0c0c0c;
  color: #ffffff;
  font-family: 'Arial', sans-serif;
}

.processor-comparison {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 40px 0;
  text-align: center;
}

.comparison-container {
  max-width: 70%;
  width: 70%;
  padding: 20px;
  background-color: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.processor-comparison h2 {
  color: #ffffff !important;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.comparison-table {
  width: 90%;
  max-width: 800px;
  border-collapse: collapse;
  background-color: #1a1a1a;
  color: #ffffff;
  border: 1px solid #444;
}

.comparison-table th, .comparison-table td {
  padding: 12px;
  text-align: left;
  border: 1px solid #444;
  font-size: 1.1rem;
}

.comparison-table th {
  background-color: #222;
  color: #ffffff;
  font-weight: bold;
  text-transform: uppercase;
}

.comparison-table td {
  background-color: #262626;
  color: #ffffff;
}

.comparison-table tr:nth-child(even) {
  background-color: #1e1e1e;
}

.check {
  color: #4CAF50;
  font-weight: bold;
  font-size: 1.2rem;
}

.cross {
  color: #FF5252;
  font-weight: bold;
  font-size: 1.2rem;
}

.speed {
  color: #FFD700;
  font-weight: bold;
  font-size: 1.2rem;
}

.processor-note {
  margin-top: 15px;
  font-size: 1rem;
  color: #bbbbbb;
  text-align: center;
  max-width: 70%;
  margin: 0 auto;
}
/* Feature Section with Text and Image */
.feature-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-text {
  width: 50%;
}

.feature-text h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff !important;
}

.feature-text p {
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 15px;
}

.feature-text ul {
  list-style: none;
  padding: 0;
}

.feature-text li {
  font-size: 1rem;
  color: #fdd835;
  margin-bottom: 10px;
}

.feature-image {
  width: 45%;
}

.feature-image img {
  width: 100%;
  border-radius: 10px;
}
.gallery-section {
  padding: 60px 20px;
  background-color: #000;
  color: #fff;
  text-align: center;
}

.gallery-title {
  font-size: 2rem;
  margin-bottom: 30px;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}
.gallery-grid a {
  display: block;
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
}

.gallery-grid a:hover img {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
}
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: none;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 2rem;
  color: #FFD100;
  cursor: pointer;
  font-weight: bold;
  z-index: 10000;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: #FFD100;
  cursor: pointer;
  z-index: 10000;
  user-select: none;
  padding: 10px;
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}
