/* Grid Background Effect for Webflow Conference Page - Enhanced */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.6;
}

/* Dark theme grid */
[data-theme="dark"] body::before {
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
}

/* Remove duplicate grid - use only body grid */

/* Ensure main content is above grid */
.wfc25-page_wrapper {
    position: relative;
    z-index: 1;
}

/* Enhanced styling to match original */
body {
    background-color: #f8f9fa;
}

/* Improve font rendering */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
