.blue-fold {
    position: relative;
    min-height: 50vh;
    background-color: #00C8FF;  /* Bright blue background */
    padding: 160px 20px 80px;
    color: white;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.6s ease;
    margin-top: 0;
    overflow: hidden;
}

.blue-fold.show {
    opacity: 1;
}

/* Add a subtle pattern to the background */
.blue-fold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px) 0 0 / 30px 30px,
        linear-gradient(0deg, rgba(255,255,255,0.05) 1px, transparent 1px) 0 0 / 30px 30px;
    z-index: -1;
}

.blue-fold-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    font-family: 'VT323', monospace;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.blue-fold h2 {
    font-family: 'VT323', monospace;
    font-size: 48px;
    margin-bottom: 30px;
    color: white;
    opacity: 0;
}

.blue-fold.show h2 {
    animation: textReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.blue-fold p {
    font-family: 'Rubik', sans-serif;
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 30px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    color: white;
    opacity: 0;
}

.blue-fold.show p {
    animation: textReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

/* Media queries for responsive layouts */
@media screen and (max-width: 768px) {
    .blue-fold {
        padding: 120px 20px 60px;
    }
}

@media screen and (max-width: 480px) {
    .blue-fold {
        padding: 100px 15px 40px;
    }
    
    .blue-fold::before {
        background: 
            linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px) 0 0 / 20px 20px,
            linear-gradient(0deg, rgba(255,255,255,0.05) 1px, transparent 1px) 0 0 / 20px 20px;
    }
} 