body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.page-wrapper {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.content {
    filter: blur(5px);
    -webkit-filter: blur(5px);
    pointer-events: none;
    opacity: 0.6;
    padding: 20px;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.construction-message {
    color: #fff;
    text-align: center;
    padding: 20px;
    border: 2px solid #fff;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
}