/* Honeycomb Pattern Background */
.honeycomb-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.honeycomb-bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(30deg, transparent, transparent 35px, rgba(255, 215, 0, 0.03) 35px, rgba(255, 215, 0, 0.03) 70px),
        repeating-linear-gradient(60deg, transparent, transparent 35px, rgba(255, 165, 0, 0.02) 35px, rgba(255, 165, 0, 0.02) 70px),
        repeating-linear-gradient(90deg, transparent, transparent 35px, rgba(255, 215, 0, 0.03) 35px, rgba(255, 215, 0, 0.03) 70px),
        repeating-linear-gradient(120deg, transparent, transparent 35px, rgba(255, 165, 0, 0.02) 35px, rgba(255, 165, 0, 0.02) 70px),
        repeating-linear-gradient(150deg, transparent, transparent 35px, rgba(255, 215, 0, 0.03) 35px, rgba(255, 215, 0, 0.03) 70px),
        repeating-linear-gradient(180deg, transparent, transparent 35px, rgba(255, 165, 0, 0.02) 35px, rgba(255, 165, 0, 0.02) 70px);
    background-size: 100px 100px;
    background-position: 0 0;
}

/* Alternative SVG Honeycomb Pattern */
.honeycomb-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='50,0 85,25 85,75 50,100 15,75 15,25' fill='none' stroke='%23FFD700' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 100px 100px;
}
EOF < /dev/null