body {
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
    background-color: #111;
    color: #eee;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

#content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(45deg, #ff00cc, #333399);
    width: 100%;
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.random-section {
    width: 100%;
    min-height: 100vh;
    /* Full screen sections for better scroll effect */
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    text-align: center;
    transition: background 0.5s;
    cursor: pointer;
    /* Indicate interactivity */
}

.shape {
    position: absolute;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.content-text {
    z-index: 1;
    background: rgba(0, 0, 0, 0.8);
    padding: 40px;
    border-radius: 20px;
    max-width: 80%;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

#loader {
    text-align: center;
    padding: 20px;
    color: #666;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(10deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

/* Transition Entering Animations */
@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes rotateIn {
    from {
        transform: rotate(-180deg) scale(0);
        opacity: 0;
    }

    to {
        transform: rotate(0) scale(1);
        opacity: 1;
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-spin {
    animation: spin 15s linear infinite;
}

.animate-pulse {
    animation: pulse 4s ease-in-out infinite;
}

.trans-slide-left .content-text {
    animation: slideInLeft 1s ease-out;
}

.trans-slide-right .content-text {
    animation: slideInRight 1s ease-out;
}

.trans-zoom .content-text {
    animation: zoomIn 0.8s ease-out;
}

.trans-rotate .content-text {
    animation: rotateIn 1s ease-out;
}