/* Creative Background for Token Project Section */
#token-project {
    /* Subtle gradient background */
    background: linear-gradient(135deg, #1a1a2e 0%, #1f1f38 50%, #1a1a2e 100%);
    /* Add a very subtle pattern using pseudo-elements if desired, or keep it clean */
    position: relative;
    overflow: hidden; /* Ensure pseudo-elements don't overflow */
    padding-top: 4rem; /* Adjust padding if needed */
    padding-bottom: 4rem;
}

/* Optional: Add a subtle pattern overlay using pseudo-element */
/* #token-project::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('path/to/subtle-pattern.svg'); /* Replace with actual pattern */
/*    background-repeat: repeat;
    opacity: 0.05; /* Very subtle */
/*    z-index: 0;
} */

/* Ensure content is above the pseudo-element background */
#token-project .container {
    position: relative;
    z-index: 1;
}

