.texture {
  width: 100%;
  
  /* Base dark background color */
  background-color: #0b0f19;

  /* Layer 1: Central radial glow */
  /* Layer 2 & 3: Diagonal grid pattern creating the woven texture */
  background-image: 
    radial-gradient(circle at center, rgba(0, 210, 255, 0.08) 0%, transparent 70%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 4px),
    repeating-linear-gradient(-45deg, rgba(0, 0, 0, 0.4) 0px, rgba(0, 0, 0, 0.4) 1px, transparent 1px, transparent 4px);
    background-size: 100% 100%, 6px 6px, 6px 6px;
}

.container {
  max-width: 1200px;
}

.header-row {
  height: 12rem;
  display: flex;
  flex-direction: row;
}

.logo-bg {
  height: 100%;
  overflow: hidden;
}

.logo {
  height: 100%;
  width: auto;
}