.terminal-mini {
    background: #0d0d1a; /* Darker background to match your screenshot */
    border: 1px solid #2d2d4d;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px !important;
    max-width: 600px;
    margin: 0 auto;
}

.terminal-mini code {
    color: #bc13fe; /* Purple/pink glow from your image */
    text-shadow: 0 0 5px rgba(198, 120, 221, 0.5);
    font-size: 0.95rem;
}

.terminal-mini .command-group {
    display: flex;
    gap: 20px;
    margin: 0 auto;
}

.terminal-mini p {
    margin-bottom: 0 !important; /* Removes the extra vertical space */
    white-space: nowrap;
}

.terminal-mini .copy-btn-wrapper {
    cursor: pointer;
    color: #6c757d;
    transition: 0.3s;
}

.terminal-mini .copy-btn-wrapper:hover {
    color: #fff;
}



.glass-code-panel {
    /* Glassmorphism base */
    background: rgba(255, 255, 255, 0.03); /* Extremely subtle white tint */
    backdrop-filter: blur(12px); /* This creates the blurry backdrop */
    -webkit-backdrop-filter: blur(12px);
    
    /* Border & Shape */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Soft "edge" light */
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3); /* Soft shadow for depth */
    
    overflow: hidden;
}

/* Optional: Subtle gradient overlay to mimic the image's purple glow */
.glass-code-panel::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(145, 71, 255, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: -1;
}

/* Ensure code colors pop against the glass */
.glass-code-panel .wl-code {
    color: rgba(255, 255, 255, 0.4); /* Line numbers should be faint */
    font-size: 0.85rem;
    display: inline-block;
    width: 25px;
}

.glass-code-panel code {
    word-break: normal;
}

/* 1. Main Wrapper for the whole section */
.glass-section-wrapper {
    position: relative; /* Define bounds for the absolutely positioned image */
    overflow: hidden; /* Prevent the image from bleeding out */
    padding: 2rem 0; /* Add vertical space */
}

/* 2. Absolute Image Centering */
.abs-bg-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Perfectly center horizontally and vertically */
    z-index: -1; /* Send it behind all content, including glass panels */
      background: linear-gradient(135deg,#060612,#0d0b23,#110d32,#13103b);
  overflow: hidden;
    /* Responsive sizing */
    width: 80%; /* Image won't be wider than 80% of container */
    height: auto;
    
    /* Blending & Opacity (Important for the background look) */
    pointer-events: none; /* Text can be selected through the image */

      -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
}

canvas {
  display: block;
  background: transparent !important;
}

#cube-container {
 opacity: 0;
}