:root {
  --body-bg-color: #f8fafc;
  --body-text-color: #222222;
  --heading-color: #222222;
  --hero-gradient1: #ffffff;
  --hero-gradient2: #000000;
  --footer-bg-color: #12115f;
  --link-color: #0f62fe;
  --header-bg-color: #ffffff;
  --font-family: 'Candara', Arial, sans-serif;
  --nav-link-color: #000000;
  --footer-text-color: #ffffff;
  --header-text-color: #000000;
}
html {
  overflow-x: hidden;
}
body {
  background-color: var(--body-bg-color);
  color: var(--body-text-color) !important;
  font-family: var(--font-family);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
h1 {
    font-size: clamp(2rem, 4vw, 2.5rem) !important;
}
h2 {
    font-size: clamp(1.6rem, 3vw, 2rem) !important;
}
h3 {
    font-size: clamp(1.4rem, 3vw, 1.7rem) !important;
}
p {
  margin-bottom: 0.5rem !important;
}
  section {
  padding: 15px 0;
  scroll-margin-top: 70px;
}
h2, h3 {
  color: var(--heading-color) !important;
}
.content-area a {
  color: var(--link-color) !important;
  text-decoration: none !important;
}
.content-area a:hover {
  color: var(--link-color) !important;
  opacity: 0.8;
}
.error_page {
  min-height: 70vh;
}
.footer {
  background: var(--footer-bg-color);
  color: var(--footer-text-color);
  padding: 2.5rem 0 1.75rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--header-bg-color);
}
.footer a {
  color: var(--link-color);
  text-decoration: none;
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}
.footer a:hover {
  color: var(--footer-text-color);
  opacity: 0.85;
}
.footer-divider {
  margin: 2rem 0 0;
  border-color: color-mix(in srgb, var(--link-color) 30%, transparent);
  opacity: 1;
}
.footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  width: 100%;
  background: var(--link-color);
}
.footer img {
        filter: brightness(0) invert(1);
      }
 .navbar {
  background-color: var(--header-bg-color) !important;
}
.hero-section {
  padding: 20px 0 50px;
  position: relative;
  overflow: hidden;
}
.hero-section.transparent-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(33, 52, 99, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 52, 99, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15));
  z-index: 0;
  animation: heroGridMove 18s linear infinite;
}
.hero-section.transparent-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -140px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 109, 245, 0.16) 0%, rgba(79, 109, 245, 0) 72%);
  filter: blur(8px);
  z-index: 0;
  animation: heroOrbFloat 10s ease-in-out infinite;
}
.hero-section .container {
  position: relative;
  z-index: 2;
}
.hero-section .justify-content-center {
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px 40px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(77, 98, 180, 0.10);
  box-shadow: 0 18px 45px rgba(29, 43, 91, 0.08);
  backdrop-filter: blur(10px);
  position: relative;
}
.hero-section .justify-content-center::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -1px;
  transform: translateX(-50%);
  width: 180px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(92, 114, 255, 0), rgba(92, 114, 255, 0.75), rgba(92, 114, 255, 0));
}
.hero-section h1 {
  margin: 0 0 22px;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111a37;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.hero-section p {
  margin: 0 auto;
  max-width: 1080px;
  font-size: 1.08rem;
  line-height: 1.95;
  color: #3f4b6d;
}
.hero-section.gradient-bg {
  background: linear-gradient(135deg, var(--hero-gradient1), var(--hero-gradient2));
}
@keyframes heroGridMove {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes heroOrbFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-25px, 22px, 0) scale(1.08);
  }
}
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
  .hero-section .justify-content-center {
    padding: 30px 20px;
    border-radius: 22px;
  }
  .hero-section h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 18px;
  }
  .hero-section p {
    font-size: 1rem;
    line-height: 1.8;
  }
  .hero-section.transparent-hero::after {
    width: 260px;
    height: 260px;
    right: -90px;
    top: -70px;
  }
}  .navbar-light .navbar-nav .nav-link {
    color: var(--nav-link-color, #141414) !important;
  }
  .navbar-light .navbar-nav .nav-link.active {
  color: var(--link-color) !important;
  font-weight: bold;
}
@media (max-width: 1199.98px) {
  .navbar-collapse {
    position: fixed;
    top: 61px;
    left: 15px;
    right: 15px;
    background-color: color-mix(in srgb, var(--header-bg-color) 65%, transparent);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 15px;
    margin: 0;
  }
  .navbar-nav {
    width: 100%;
  }
  .navbar-nav .nav-item {
    margin: 7px 0;
  }
  .navbar-nav .nav-item:hover {
    transform: translateY(-1px);
  }
  .navbar-nav .nav-link {
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 0;
  }
  .navbar-toggler {
    z-index: 10000;
    position: relative;
    border: var(--bs-border-width) solid var(--nav-link-color, #141414) !important;
  }
}
.custom-dropdown {
  border: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 220px;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 65%,
    transparent
  ) !important;
  backdrop-filter: blur(12px);
}
.custom-dropdown .dropdown-item {
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  color: var(--nav-link-color, #141414) !important;
  font-weight: 500;
  border-radius: 0;
  text-wrap: wrap;
}
.dropdown-menu {
  display: none;
}
.custom-dropdown .dropdown-item:hover {
  color: #fff;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 95%,
    transparent
  ) !important;
}
.nav-item.dropdown > .nav-link {
  display: flex;
  align-items: center;
}
.nav-item.dropdown > .nav-link .arrow {
  position: relative;
  margin-left: auto;
  border: solid var(--nav-link-color, #141414);
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.25s;
}
.dropdown.open .dropdown-menu {
  display: block;
}
@media (min-width: 1200px) {
  .nav-item.dropdown {
    position: relative;
  }
  .nav-item.dropdown > .nav-link .arrow {
    margin-left: 7px;
  }
  .custom-dropdown.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    z-index: 1000;
  }
  .nav-item.dropdown:hover > .nav-link .arrow {
    transform: rotate(-135deg);
  }
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block !important;
  }
}
@media (max-width: 1199px) {
  .nav-item.dropdown > .nav-link .arrow {
    padding: 4px;
  }
}
.gpu-everyday-section {
    background: linear-gradient(180deg, #f4f6fb 0%, #eef2f9 100%);
    position: relative;
    isolation: isolate;
}
.gpu-everyday-section .container {
    position: relative;
    z-index: 2;
}
.section-mini-badge {
    display: inline-block;
    padding: 8px 16px;
    margin-bottom: 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1f2a44;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(63, 94, 251, 0.10);
    box-shadow: 0 10px 30px rgba(21, 35, 79, 0.06);
    backdrop-filter: blur(10px);
}
.section-title {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.15;
    font-weight: 700;
    color: #141b34;
    letter-spacing: -0.02em;
}
.section-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4c587a;
    max-width: 820px;
    margin: 0 auto;
}
.box-one {
    position: relative;
    padding: 36px 30px 30px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(247, 249, 255, 0.92) 100%);
    border: 1px solid rgba(83, 110, 255, 0.12);
    box-shadow:
        0 20px 60px rgba(28, 41, 90, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.75);
    overflow: hidden;
    backdrop-filter: blur(14px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.box-one::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(89, 115, 255, 0.14), transparent 32%),
        radial-gradient(circle at bottom left, rgba(0, 186, 255, 0.10), transparent 28%);
    pointer-events: none;
}
.box-one::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.16) 0%, rgba(108, 99, 255, 0) 70%);
    pointer-events: none;
    animation: floatPulse 8s ease-in-out infinite;
}
.box-one:hover {
    transform: translateY(-8px);
    border-color: rgba(83, 110, 255, 0.24);
    box-shadow:
        0 28px 70px rgba(28, 41, 90, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.box-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background: linear-gradient(135deg, #1a2453 0%, #3049b8 55%, #5a6bff 100%);
    box-shadow:
        0 14px 30px rgba(44, 62, 140, 0.25),
        0 0 0 8px rgba(90, 107, 255, 0.08);
    position: relative;
    z-index: 1;
}
.box-icon-wrap::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 24px;
    border: 1px solid rgba(90, 107, 255, 0.18);
    animation: pulseRing 3.5s ease-in-out infinite;
}
.box-icon {
    font-size: 2rem;
    color: #ffffff;
    line-height: 1;
}
.box-one h3 {
    font-size: 1.6rem;
    line-height: 1.3;
    font-weight: 700;
    color: #18203e;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}
.box-one p {
    font-size: 1rem;
    line-height: 1.9;
    color: #47516f;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}
.box-one p:last-child {
    margin-bottom: 0;
}
.gpu-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    z-index: 0;
    opacity: 0.55;
}
.gpu-bg-orb-1 {
    top: -80px;
    left: -100px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.18) 0%, rgba(88, 101, 242, 0) 72%);
    animation: orbFloat 12s ease-in-out infinite;
}
.gpu-bg-orb-2 {
    bottom: -120px;
    right: -90px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(0, 191, 255, 0.14) 0%, rgba(0, 191, 255, 0) 72%);
    animation: orbFloatReverse 14s ease-in-out infinite;
}
.gpu-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(42, 62, 126, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(42, 62, 126, 0.045) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.08));
    z-index: 0;
    animation: gridShift 16s linear infinite;
}
.gpu-floating-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(91, 116, 255, 0.55), transparent);
    border-radius: 999px;
    z-index: 0;
    opacity: 0.7;
}
.gpu-line-1 {
    top: 26%;
    left: -10%;
    width: 42%;
    transform: rotate(8deg);
    animation: lineMove 9s ease-in-out infinite;
}
.gpu-line-2 {
    bottom: 22%;
    right: -8%;
    width: 38%;
    transform: rotate(-10deg);
    animation: lineMoveReverse 11s ease-in-out infinite;
}
@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, 25px) scale(1.08);
    }
}
@keyframes orbFloatReverse {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-35px, -20px) scale(1.1);
    }
}
@keyframes gridShift {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0);
    }
}
@keyframes lineMove {
    0%, 100% {
        transform: translateX(0) rotate(8deg);
        opacity: 0.45;
    }
    50% {
        transform: translateX(35px) rotate(8deg);
        opacity: 0.9;
    }
}
@keyframes lineMoveReverse {
    0%, 100% {
        transform: translateX(0) rotate(-10deg);
        opacity: 0.45;
    }
    50% {
        transform: translateX(-35px) rotate(-10deg);
        opacity: 0.9;
    }
}
@keyframes floatPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}
@keyframes pulseRing {
    0%, 100% {
        transform: scale(1);
        opacity: 0.65;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.2;
    }
}
@media (max-width: 991.98px) {
    .box-one {
        padding: 30px 24px 24px;
    }
    .box-one h3 {
        font-size: 1.4rem;
    }
    .section-title {
        font-size: 2rem;
    }
}
@media (max-width: 575.98px) {
    .gpu-everyday-section {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }
    .box-icon-wrap {
        width: 64px;
        height: 64px;
        border-radius: 18px;
    }
    .box-icon {
        font-size: 1.7rem;
    }
    .box-one {
        border-radius: 22px;
    }
    .box-one p {
        line-height: 1.8;
    }
}
  .section-wallets {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('/images/gpu-bg.jpg');
    background-position: center;
    background-size: cover;
    color: #fff;
    padding: 50px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    margin-top: 40px;
    border: 1px solid #2c3e50;
}
.section-wallets h2 {
    color: #ffffff!important; 
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}
.section-wallets h2::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #e7e4e4;
    bottom: -8px;
    left: 0;
}
.section-wallets p {
    color: #ddd;
    line-height: 1.6;
}
.section-wallets h3 {
    color: #ffffff!important; 
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
    text-transform: capitalize;
    font-family: 'Helvetica Neue', sans-serif;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
.section-wallets h3:hover {
    background-color: #2c3e50; 
    color: #fff;
    transform: scale(1.05);
}
.section-wallets ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}
.section-wallets ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #dadada; 
}
.section-wallets ul li::before {
    content: "✔"; 
    font-size: 1.5rem;
    color: #e2e2e2; 
    margin-right: 10px;
    transition: color 0.3s ease;
}
.section-wallets ul li:hover::before {
    color: #ebebeb; 
}
.fancy-section {
  position: relative;
  padding: 90px 20px;
  background: linear-gradient(180deg, #eef2f9 0%, #f8faff 100%);
  overflow: hidden;
  text-align: center;
}
.fancy-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(60, 80, 150, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(60, 80, 150, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
  animation: gridMove 18s linear infinite;
}
.fancy-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -120px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(90, 110, 255, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(10px);
  z-index: 0;
  animation: orbFloat 12s ease-in-out infinite;
}
.fancy-section h2 {
  position: relative;
  z-index: 2;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  color: #141b34;
  margin-bottom: 25px;
  letter-spacing: -0.02em;
}
.fancy-section p {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto 20px;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #4a5678;
}
.fancy-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #5a6bff, #00c6ff);
}
@keyframes gridMove {
  0% { transform: translateY(0); }
  50% { transform: translateY(12px); }
  100% { transform: translateY(0); }
}
@keyframes orbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -20px) scale(1.08);
  }
}
@media (max-width: 768px) {
  .fancy-section {
    padding: 70px 15px;
  }
  .fancy-section h2 {
    font-size: 1.8rem;
  }
  .fancy-section p {
    font-size: 1rem;
    line-height: 1.8;
  }
}