/* ------------------------
   Global Styles
------------------------- */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;
    background: black; /* fallback if video fails */
    overflow-x: hidden;
}

/* ------------------------
   Background Video
------------------------- */

#bgVideo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    opacity: 1;

}

/* ------------------------
   Clouds Layer
------------------------- */

.cloud1 {
    position: fixed;
    top: 0;
    left: 0;
    transform: scale(0.8);
    width: auto;
    height: auto;
    opacity: 1;
    pointer-events: none;
    z-index: 8;
}

.cloud2 {
    position: fixed;
    top: 70%;
    left: 20%;
    transform: scale(0.8);
    width: auto;
    height: auto;
    opacity: 1;
    pointer-events: none;
    z-index: 9;
}

.cloud3 {
    position: fixed;
    top: 50%;
    left: 70%;
    transform: scale(0.8);
    width: auto;
    height: auto;
    opacity: 1;
    pointer-events: none;
    z-index: 10;
}


/* ------------------------
   Hero Section
------------------------- */

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    backdrop-filter: none;
    z-index: 2;
    color: #bb71b0;
}

/* ------------------------
   Content Sections
------------------------- */

.section {
    padding: 100px 20px;
    position: relative;
    z-index: 20;
    backdrop-filter: none;
}

.project {
    background: rgba(0, 0, 0, 0.5);
    max-width: 700px;
    margin: 30px auto;
    padding: 20px;
    border-radius: 10px;
}

/* ------------------------
   Oneko Cat
------------------------- */

#oneko {
    transform: scale(3);
    transform-origin: center;
    z-index: 5 !important;
    pointer-events: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

/* ------------------------
   Pool Bar
------------------------- */

#poolBarVertical {
    position: absolute;      /* static on page, not scrolling */
    top: 20px;               /* distance from top */
    right: 20px;              /* distance from left */
    
    display: flex;
    flex-direction: column;
    align-items: center;

    background: rgba(0, 0, 0, 0.55);
    padding: 12px 10px;
    border-radius: 10px;

    font-family: monospace;
    font-size: 20px;
    color: white;

    gap: 10px;
    z-index: 100;
}

.pool-number-vertical {
    transition: opacity 0.4s ease;
}
