html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    color: white; 
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    cursor: url("assets/star_w.png") 25 25, pointer;
    background: transparent;
}

button,
a,
.member:hover,
#enter-btn:hover {
    cursor: url("assets/star_w.png") 25 25, pointer;
}

 body::before {
     content: "";
     position: fixed;
     top: 0;
     left: 0;
     width: 100vw;
     height: 100vh;
     background-image: url('assets/IOWT.png');
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     z-index: -2;
     /* behind everything */
 }

 /* overlay to darken or color tint */
 body::after {
     content: "";
     position: fixed;
     top: 0;
     left: 0;
     width: 100vw;
     height: 100vh;
     background-color: rgba(0, 0, 0, 0.5);
     /* adjust transparency here */
     z-index: -1;
     /* above background, below content */
 }

 /* Intro screen */
 #intro {
     position: fixed;
     top: 0;
     left: 0;
     width: 100vw;
     height: 100vh;
     background: black;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     z-index: 9999;
     transition: opacity 0.8s ease;
     overflow: hidden;
 }

 body.intro-active {
     overflow: hidden;
     padding: 0;
 }

body.intro-inactive {
    overflow-y: auto;
    padding: 0;
}

 #intro img {
     width: 400px;
     margin-bottom: 30px;
     filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
 }



 #enter-btn {
     background: transparent;
     border: 2px solid white;
     padding: 12px 28px;
     color: white;
     font-size: 18px;
     border-radius: 10px;
     cursor: pointer;
     letter-spacing: 1px;
     transition: 0.3s;
 }

 #enter-btn:hover {
     background: white;
     color: black;
 }

 /* Main content hidden first */
 #main {
     display: none;
     min-height: 100vh;
     padding: 20px;
     text-align: center;
 }

 #main img.logo {
     width: 250px;
     height: 250px;
     display: block;
     margin: 20px auto;
     margin-top: 25px;
     filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
 }

 h1, h2 {
     font-size: 35px;
     margin: 20px 0;
     text-align: center;
     /* Glow effect */
     text-shadow:
         0 0 5px #fff,
         0 0 10px #c8d5ff,
         0 0 20px #4f504a,
         0 0 30px #ffdcf0,
         0 0 40px #421674,
         0 0 50px #fcc7f9,
         0 0 75px #0e1102;
    ;
     /* Animation for subtle floating movement */
     /* smoother float */
     animation: floatGlow 4s ease-in-out infinite;
     justify-content: center;
 }

    footer {
        width: 100%;
        text-align: center;
        color: white;
        font-size: small;
        padding: 16px 0;
        background: transparent;
        position: sticky;
        bottom: 0;
        left: 0;
        z-index: 50;
    }

 @keyframes floatGlow {
     0% {
         transform: translateY(0px);
     }

     25% {
         transform: translateY(-2px);
     }

     50% {
         transform: translateY(-4px);
     }

     75% {
         transform: translateY(-2px);
     }

     100% {
         transform: translateY(0px);
     }
 }



 /* Members grid like reference */
 .memberr {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 30px;
     /* space between rows */
     margin-top: 70px;
     margin-bottom: 0px;
 }

 .row {
     display: flex;
     justify-content: center;
     gap: 40px;
     /* space between members per row */
 }

 .row.offset {
     margin-left: 45px;
     /* shift second row slightly to the right */
 }

 .member {
     text-align: center;
     width: 120px;
     position: relative;
 }

 .member img {
     width: 100px;
     height: 100px;
     border-radius: 50%;
     border: 2px solid white;
     box-shadow: 0 0 12px #ffffff;
     /* glowing highlight */
     object-fit: cover;
     display: block;
     margin: 0 auto 10px;
     transition: filter 0.3s;
 }

 .member:hover img {
     border-color: #b2c5ff;
     /* border turns blueish */
     box-shadow: 0 0 12px #ffffff;
     /* glowing highlight */
 }

 .name {
     font-weight: bold;
     font-size: 14px;
     color: #ffffff;
 }

 /* Bounce animation */
 @keyframes bounce {

     0%,
     100% {
         transform: translateY(0);
     }

     30% {
         transform: translateY(-10px);
     }

     50% {
         transform: translateY(-5px);
     }
 }

 .member:hover,
 .member:active {
     animation: bounce 0.5s;
 }

 .member .name {
     transition: color 0.3s, transform 0.3s;
 }

 .member:hover .name {
     color: #ff4d4d;
     transform: scale(1.1);
 }

 /* Bounce animation */
 @keyframes bounce {

     0%,
     100% {
         transform: translateY(0);
     }

     30% {
         transform: translateY(-10px);
     }

     50% {
         transform: translateY(-5px);
     }
 }

 .role {
     font-size: 12px;
     opacity: 0.8;
 }

 .status-dot {
     position: absolute;
     bottom: 40px;
     right: 20px;
     width: 18px;
     height: 18px;
     border: 2px solid black;
     border-radius: 50%;
     background: gray;

     /* NEW for SVG/mobile icon support */
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .status-dot svg {
     width: 14px;
     height: 14px;
 }

 /* --- Bottom scrolling members --- */
 .scrolling-members {
     position: relative;
     margin-top: 40px;
     width: 100%;
     max-height: unset;
     overflow-x: hidden;
     overflow-y: hidden;
 }

 .scrolling-members .member {
     cursor: pointer;
     pointer-events: auto;
 }

 .scrolling-members .row {
     display: flex;
     gap: 40px;
     margin: 8px 0;
 }

 .scrolling-members .row.left {
     animation: scroll-left 18s linear infinite;
 }

 .scrolling-members .row.right {
     animation: scroll-right 18s linear infinite;
 }

 @keyframes scroll-left {
     from {
         transform: translateX(100%);
     }

     to {
         transform: translateX(-100%);
     }
 }

 @keyframes scroll-right {
     from {
         transform: translateX(-100%);
     }

     to {
         transform: translateX(100%);
     }
 }

 .scrolling-members .member {
     text-align: center;
     width: 80px;
 }

 .scrolling-members .member img {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     border: 2px solid white;
     object-fit: cover;
 }

 /* Bounce animation for scrolling members without stopping the scroll */
 .scrolling-members .member:hover {
     animation: bounceY 0.5s;
     animation-fill-mode: forwards;
 }

 /* Optional: glow and scale name on hover */
 .scrolling-members .member:hover .name {
     color: #ff9999;
     transform: scale(1.1);
     transition: color 0.3s, transform 0.3s;
 }

 .scrolling-members .status-dot {
     width: 12px;
     height: 12px;
     bottom: 50px;
     right: 10px;
 }

 .scrolling-members .name {
     font-size: 12px;
     color: #ffffff;
 }

 .volume-control {
     position: fixed;
     top: 20px;
     left: 20px;
     z-index: 1000;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .speaker-icon {
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: inline-block;
    background-size: contain;
 }

 /* hide volume bar by default */
 .volume-bar {
     position: relative;
     width: 120px;
     height: 8px;
     background: rgba(255, 255, 255, 0.2);
     border-radius: 4px;
     overflow: hidden;
     opacity: 0;
     transform: translateX(-10px);
     transition: opacity 0.3s, transform 0.3s;
 }

 /* show volume bar on hover */
 .volume-control:hover .volume-bar {
     opacity: 1;
     transform: translateX(0);
 }

 .volume-fill {
     position: absolute;
     left: 0;
     top: 0;
     height: 100%;
     width: 50%;
     /* initial */
     background: #22c55e;
     border-radius: 4px;
     pointer-events: none;
 }

 .volume-bar input[type="range"] {
     position: absolute;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     background: none;
     cursor: pointer;
 }

 .volume-bar input[type="range"]::-webkit-slider-thumb {
     -webkit-appearance: none;
     width: 16px;
     height: 16px;
     border-radius: 50%;
     background: #ffffff;
     border: 2px solid #00d9ff;
     cursor: pointer;
     margin-top: -4px;
 }

 .volume-bar input[type="range"]::-moz-range-thumb {
     width: 16px;
     height: 16px;
     border-radius: 50%;
     background: #fff;
     border: 2px solid #180085;
     cursor: pointer;
 }

 @media (max-width: 768px) {
        .volume-control {
            top: auto;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
        }
 }

 /* cross sparkle mouse */
 .sparkle {
     position: fixed;
     width: 6px;
     height: 6px;
     pointer-events: none;
     opacity: 1;
     z-index: 9999;
     transform: translate(-50%, -50%);
     animation: sparkle-fade 0.6s forwards;
     clip-path: polygon(45% 0%, 55% 0%, 55% 45%, 100% 45%, 100% 55%, 55% 55%, 55% 100%, 45% 100%, 45% 55%, 0% 55%, 0% 45%, 45% 45%);
     background: #ffffff;
     /* white */
 }

 /* fade out animation */
 @keyframes glitter-fade {
     0% {
         opacity: 1;
         transform: translate(-50%, -50%) scale(1);
     }

     100% {
         opacity: 0;
         transform: translate(-50%, -50%) scale(0.5);
     }
 }

 /* falling sparkel */
 .falling-sparkle {
     position: absolute;
     width: 4px;
     height: 4px;
     border-radius: 30%;
     background: #ffffff;
     opacity: 0.3;
     /* lower opacity so it doesn't block background */
     pointer-events: none;
     animation: fall linear infinite;
 }

 @keyframes fall {
     0% {
         transform: translateY(-10px);
         opacity: 0.8;
     }

     100% {
         transform: translateY(110vh);
         /* bumagsak hanggang sa baba */
         opacity: 0;
     }
 }

 /* Small profile modal */
 body.modal-open {
     filter: blur(6px);
     overflow: hidden;
     /* optional: prevent scrolling while modal is open */
 }

 .card-modal {
     position: fixed;
     inset: 0;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 20px;
     background: rgba(2, 6, 23, 0.6);
     z-index: 90;
     visibility: hidden;
     opacity: 0;
     transition: opacity 0.2s ease, visibility 0.2s;
 }

 .card-modal.show {
     visibility: visible;
     opacity: 1;
 }

 .card {
     width: 100%;
     max-width: 560px;
     background: linear-gradient(180deg, #0b1014ee, #081017ee);
     border-radius: 16px;
     overflow: hidden;
     border: 1px solid rgb(255, 255, 255);
     box-shadow: 0 30px 80px #002affc3;
     box-shadow: 0 0 20px #00e5ff89;
     animation: floaty 6s ease-in-out infinite;
     transition: box-shadow 0.5s;
 }

 .card .banner {
     width: 100%;
     height: 160px;
     background-size: cover;
     background-position: center;
     background-image: url("https://discord.com/channels/1369775313235480586/1379846639069691965/1379846933312438353");
 }

 @keyframes floaty {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-8px);
         /* gentle rise */
     }
 }

 .card .inner {
     display: flex;
     gap: 14px;
     padding: 16px;
     align-items: flex-start;
 }

 .card .left {
     min-width: 92px;
     text-align: center;
     position: relative;
 }

 .card .left .mini-ava {
     width: 92px;
     height: 92px;
     border-radius: 14px;
     object-fit: cover;
     border: 4px solid rgba(0, 0, 0, 0.5);
     margin-top: -48px;
     box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
     animation: floaty 6s ease-in-out infinite;
     /* smooth floating */
     transition: box-shadow 0.5s, border-color 0.5s;
 }

 .card .mini-ava:hover {
     border-color: #ffffff;
     box-shadow: 0 0 25px rgba(197, 7, 7, 0.9);
 }

 @keyframes floaty {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-6px);
         /* smooth galaw */
     }
 }

 .card .right {
     flex: 1;
 }

 .card .name {
     font-size: 18px;
     font-weight: 700;
 }

 .card .role {
     color: var(--muted, #999);
     font-size: 13px;
     margin-top: 6px;
 }

 .card .bio {
     margin-top: 8px;
     color: #dbe8ee;
     font-size: 14px;
     line-height: 1.45;
 }

 .card .socials {
     margin-top: 10px;
     display: flex;
     gap: 8px;
     flex-wrap: wrap;
     pointer-events: auto;
 }

 .card-modal .status-dot {
     position: absolute;
     bottom: 6px;
     right: 2px;
     width: 14px;
     height: 14px;
     border-radius: 50%;
     background: #22c55e;
     border: 2px solid #0b1014;
 }

 .chip {
     display: inline-block;
     /* ensure occupies space */
     background: rgba(255, 255, 255, 0.05);
     padding: 8px 10px;
     border-radius: 999px;
     font-weight: 700;
     color: #dff7e6;
     text-decoration: none;
     border: 1px solid rgba(255, 255, 255, 0.03);
     cursor: pointer;
     /* show hand on hover */
 }

 .card-modal.show {
     visibility: visible;
     opacity: 1;
 }

 .activities {
     margin-top: 10px;
     display: flex;
     flex-direction: column;
     gap: 8px;
 }

 .activity-card {
     display: flex;
     align-items: flex-start;
     gap: 10px;
     background: rgba(255, 255, 255, 0.05);
     padding: 8px;
     border-radius: 8px;
     margin-bottom: 6px;
 }

 .activity-thumb {
     width: 48px;
     height: 48px;
     border-radius: 6px;
     object-fit: cover;
     flex-shrink: 0;
 }

 .activity-icon {
     font-size: 18px;
     margin-top: 4px;
 }

 .activity-info {
     flex: 1;
     text-align: left;
     /* <-- para left aligned */
 }

 .activity-name {
     font-weight: 600;
     margin-bottom: 2px;
     text-align: justify;
     /* <-- para justified */
 }

 .activity-details {
     font-size: 0.85rem;
     opacity: 0.8;
     text-align: justify;
     /* <-- para justified din */
 }

 .activity-time {
     font-size: 12px;
     /* maliit */
     font-style: italic;
     /* italized */
     opacity: 0.7;
     /* medyo faded */
     margin-top: 2px;
 }

 /* Popup box */
 .popup {
     position: fixed;
     background: rgba(255, 0, 0, 0.85);
     color: #fff;
     padding: 15px 20px;
     border-radius: 10px;
     display: none;
     z-index: 2000;
     animation: pop 0.2s ease-out;
 }

 /* Simple pop animation */
 @keyframes pop {
     from {
         transform: scale(0.7);
         opacity: 0;
     }

     to {
         transform: scale(1);
         opacity: 1;
     }
 }

 .guild-tag {
     color: rgb(73, 73, 71);
     /* o kahit bright color */
     font-weight: bold;
     margin-left: 4px;
 }

    /* Shawtyz tweaks */
    /* Girly Pinkish Violet Style for .shawtyz .members */
.shawtyz {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 30px;
     /* space between rows */
        margin-top: 0;
    }
 .row {
     display: flex;
     justify-content: center;
     gap: 40px;
     /* space between members per row */
 }
    .row.offset {
        margin-left: 45px;
        /* shift second row slightly to the right */
    }

.shawtyz .members {
    text-align: center;
    width: 120px;
    position: relative;
}

.shawtyz .members img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #ffb6e6;
    box-shadow: 0 0 11px #d1b3ff;
    object-fit: cover;
    display: block;
    margin: 0 auto 10px;
    transition: filter 0.3s;
}

.shawtyz .members:hover img {
    border-color: #ff69b4;
    box-shadow: 0 0 0 5px #ffb6e6;
}

.members .name {
    font-weight: bold;
    font-size: 14px;
    color: #ffffff;
}
/* Bounce animation*/
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    30% { transform: translateY(-10px); }
    50% { transform: translateY(-5px); }
}

.shawtyz .members:hover, .shawtyz .members:active {
    animation: bounce 0.5s;
}

.shawtyz .members .name {
     transition: color 0.3s, transform 0.3s;
 }

.shawtyz .members:hover .name {
    color: #d1b3ff;
    transform: scale(1.1);
}

/* Bounce animation*/
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    30% { transform: translateY(-10px); }
    50% { transform: translateY(-5px); }
}

.shawtyz .members .role {
    font-size: 12px;
    opacity: 0.8;
}

.members .status-dot {
     position: absolute;
     bottom: 40px;
     right: 20px;
     width: 18px;
     height: 18px;
     border: 2px solid black;
     border-radius: 50%;
     background: gray;

     /* NEW for SVG/mobile icon support */
     display: flex;
     align-items: center;
     justify-content: center;
}

.members .status-dot svg {
     width: 14px;
     height: 14px;
 }
 


/* Modal: Girly Pinkish Violet Style */
.shawty-card-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(255, 182, 230, 0.55); /* soft pink overlay */
    z-index: 900;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.2s;
}

.shawty-card-modal.show {
    visibility: visible;
    opacity: 1;
}

.shawty-card {
    width: 100%;
    max-width: 560px;
    background: linear-gradient(135deg, #ffe6f7 0%, #d1b3ff 60%, #ffb6e6 100%);
    border-radius: 22px;
    overflow: hidden;
    border: 2px solid #fff0f6;
    box-shadow: 0 20px 60px #ff69b4cc, 0 0 0 8px #fff0f6;
    animation: shawty-floaty 6s ease-in-out infinite;
    transition: box-shadow 0.5s;
}

.shawty-card .shawty-banner {
    width: 100%;
    height: 160px;
    background-size: cover;
    background-position: center;
     background-image: url("https://discord.com/channels/1369775313235480586/1379846639069691965/1379846933312438353");
}

@keyframes shawty-floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.shawty-card .shawty-inner {
    display: flex;
    gap: 14px;
    padding: 16px;
    align-items: flex-start;
}

.shawty-card .shawty-left {
    min-width: 92px;
    text-align: center;
    position: relative;
}

.shawty-card .shawty-ava {
    width: 92px;
    height: 92px;
    border-radius: 14px;
    object-fit: cover;
    border: 4px solid #fff0f6;
    margin-top: -48px;
    box-shadow: 0 8px 40px #ffb6e6;
     animation: floaty 6s ease-in-out infinite;
    transition: box-shadow 0.5s, border-color 0.5s;    
}

.shawty-card .shawty-ava:hover {
    border-color: #ff69b4;
    box-shadow: 0 0 25px #d1b3ff;
}

@keyframes shawty-glitter {
    0%, 100% { box-shadow: 0 0 18px #ffb6e6, 0 0 0 6px #fff0f6; }
    50% { box-shadow: 0 0 28px #d1b3ff, 0 0 0 10px #ffb6e6; }
}
 @keyframes floaty {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-6px);
         /* smooth galaw */
     }
 }

.shawty-card .shawty-right {
    flex: 1;
}

.shawty-card .name {
    font-size: 18px;
    font-weight: 700;
}

.shawty-card .name:hover {
    color: #d1b3ff;
    transform: scale(1.1);
    animation: bounce 0.5s;
}

.shawty-card .role {
    color: #d1b3ff;
    font-size: 13px;
    margin-top: 6px;
}

.shawty-card .status-text {
    color: #fff0f6;
    font-size: 15px;
    margin-bottom: 6px;
    font-weight: 500;
}

.shawty-card .bio {
    margin-top: 8px;
    color: #4a004a;
    font-size: 14px;
    line-height: 1.45;
}

.shawty-card .status-dot {
    position: absolute;
    bottom: 6px;
    right: 2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #22c55e;
    border: 2px solid #ffe6f7;
}

.shawty-card .activities {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.shawty-card .activity-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(255, 182, 230, 0.18);
    padding: 8px;
    border-radius: 8px;
    margin-bottom: 6px;
}

.shawty-card .activity-thumb {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}
.shawty-card .activity-icon {
     font-size: 18px;
     margin-top: 4px;
 }


.shawty-card .activity-info {
    flex: 1;
    text-align: left;
}

.shawty-card .activity-name {
    font-weight: 600;
    margin-bottom: 2px;
    text-align: justify;
}

.shawty-card .activity-details {
    font-size: 0.85rem;
    opacity: 0.8;
    color: #d1b3ff;
    text-align: justify;
}

.shawty-card .activity-time {
    font-size: 12px;
    font-style: italic;
    opacity: 0.7;
    margin-top: 2px;
}

.shawty-card .socials {
    margin-top: 10px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    pointer-events: auto;
}

.shawty-card .chip {
    display: inline-block;
    background: linear-gradient(90deg, #ffb6e6 0%, #d1b3ff 100%);
    padding: 8px 10px;
    border-radius: 999px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    border: 1px solid #fff0f6;
    cursor: pointer;
}

    .yt-clips {
        display: flex;
        gap: 20px;
        align-items: center;
        width: max-content;
        min-width: 100vw;
        padding: 20px 0;
        box-sizing: border-box;
        overflow: hidden;
        animation: scroll-left 50s linear infinite;
    }

    @keyframes scroll-left {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-50% - 560px * 2 - 40px * 2));
        }
    }

    .yt-clips iframe {
        width: 560px;
        min-width: 560px;
        aspect-ratio: 16 / 9;
        border: none;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        margin-right: 20px;
    }


    .yt-clips iframe:hover {
        box-shadow: 0 8px 16px rgba(0,0,0,0.25);
        transition: box-shadow 0.3s ease;
    }

    .yt-clips:hover,
    .yt-clips:focus-within {
        animation-play-state: paused;
    }

        .discord-card:hover {
            transform: scale(1.03) translateY(-4px);
            box-shadow: 0 8px 32px #0037ffb1;
        }
        .discord-card a:hover {
            background: #ffffff;
        }


