﻿/* container must take full viewport */
html, body {
    height: auto;
    min-height: 100%;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    overflow-x: auto;
}

body {
    font-family: Arial;
    background: #222;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    color: black;
}

.myVideo {
    width: 780px;
    height: 350px;
    background: #444 center center no-repeat;
    background-size: cover;
    margin: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

/* player box */

#floatingPlayerWrapper {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 9999;
    width: 780px;
    display: none;
    background: #111;
    padding: 4px;
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

#fpContent {
    width: 780px;
    height: 350px;
    background: #111;
}

/* Center all images and make them responsive */
.myDino {
    display: flex; /* Enables flexbox */
    justify-content: center; /* Horizontally center */
    margin: 20px 0; /* Optional spacing between images */
}

.myDinoImg {
    max-width: 90%; /* Ensures image doesn't exceed window width */
    height: auto; /* Maintains aspect ratio */
    display: block; /* Removes default inline spacing */
    object-fit: contain; /* Makes sure the entire image is visible */
}

.shortIntro {
    max-width: 60%; /* restrict width to 60% of the page */
    margin: 20px auto; /* top/bottom spacing + center horizontally */
    text-align: center; /* center the text */
    display: block; /* ensures block behavior */
    line-height: 1.5; /* optional: better readability */
}

/* Stats Box */
#dynamicStats {
    position: fixed;
    bottom: 12px; /* stick near bottom */
    right: 12px;
    padding: 12px;
    background: rgba(0,0,0,0.85);
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    border-radius: 8px;
    z-index: 9999;
    max-width: 280px;
    max-height: 400px; /* prevent it from stretching too tall */
    overflow-y: auto; /* scroll if too many lines */
    line-height: 1.4em;
}

/* Mini Video Thumbnail */
.myVideo {
    position: relative;
    width: 960px; /* adjust as needed */
    height: 540px; /* adjust as needed */
    cursor: pointer;
}

.playButton {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: url('https://img.icons8.com/ios-filled/50/ffffff/play--v1.png') no-repeat center center;
    background-size: contain;
    pointer-events: none;
}

.bigTitle {
    font-size: 6em; /* ~3 times bigger than normal h1 (~2em default) */
    font-weight: bold;
    margin: 0.5em 0;
    line-height: 1.2;
    text-align: center; /* optional, center the title */
}

.size2 {
    font-size: 3em; /* ~3 times bigger than normal h1 (~2em default) */
    font-weight: bold;
    margin: 0.5em 0;
    line-height: 1.2;
    text-align: center; /* optional, center the title */
}

#secondPage {
    width: 100vw;
    min-height: 100vh; /* ensures full viewport height */
    background: #fff; /* optional, ensures visibility */
}

.viewport {
    width: 100vw;
    overflow-x: hidden;
    overflow-y: visible; /* ✅ */
}

/* Slider container */
.slider-container {
    display: flex;
    width: 200vw;
    transition: transform 0.5s ease;
    transform: translate3d(0,0,0);
    font-family: 'YourPreferredFont', Arial, sans-serif; /* force font */
}

.box {
    width: 788px;
    margin: 40px auto;
    border: 1px solid #ccc;
    padding: 0; /* header handles its own padding */
    background: #fff;
}

/* Header row */
.box-header {
    position: sticky; /* 🔑 stays at top while scrolling */
    top: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #fff;
    z-index: 5;
    border-bottom: 1px solid #eee;
}

/* Button styling */
.toggle-btn {
    position: static; /* DO NOT absolute this */
    padding: 6px 10px;
    font-size: 14px;
    cursor: pointer;
}

/* Content area */
.content {
    padding: 12px;
}

    .content.hidden {
        display: none;
    }

.page {
    width: 100vw;
    min-height: 100vh; /* ✅ can grow */
    height: auto; /* ✅ not locked */
    flex-shrink: 0;
    display: block; /* ✅ allow normal flow */
    overflow: visible; /* ✅ allow scroll */
}

.page-content {
    width: 100%; /* fill page width */
    max-width: 900px; /* optional: constrain content */
    padding: 20px;
    box-sizing: border-box;
    text-align: center; /* center text/video */
}

#homePage {
    background: lightblue;
}

#secondPage {
    background: lightgray;
}

.slider {
    min-height: 100vh; /* first screen full */
    height: auto; /* allow growth */
    overflow: visible;
}

.slider-container {
    display: flex;
    width: 200vw; /* 2 pages side by side */
    transition: transform 0.5s ease;
    transform: translate3d(0, 0, 0); /* start at first page */
}

.page {
    width: 100vw;
    min-height: 100vh;
    flex-shrink: 0;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#slideLeftBtn {
    left: 10px;
}

#slideRightBtn {
    right: 10px;
}

#slider-wrapper {
    position: relative;
    min-height: 100vh;
    height: auto; /* ✅ */
}

/* Specific button positions */
#slideLeftBtn {
    left: 10px; /* left side */
}

#slideRightBtn {
    right: 10px; /* right side */
}

.nav-btn {
    position: fixed; /* stick to viewport */
    top: 50%; /* vertically centered */
    transform: translateY(-50%);
    z-index: 9999; /* always on top */
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 12px 18px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 8px;
}

    .nav-btn.left {
        left: 15px;
    }

    .nav-btn.right {
        right: 15px;
    }

#pageWrapper {
    width: 100%;
    min-height: 100vh;
    position: relative;
    transition: transform 0.6s ease-in-out;
}

.BioWrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    flex-wrap: wrap; /* allow stacking on smaller screens */
    box-sizing: border-box;
    padding: 0 10px; /* prevent clipping on very small viewports */
}

.pageContent {
    width: 100%;
    max-width: 1200px; /* optional constraint */
    margin: 0 auto;
    box-sizing: border-box;
}

.BioLeft,
.BioRight {
    width: 450px;
    max-width: 100%; /* never overflow container */
    box-sizing: border-box;
    background: rgba(0,0,255,0.05); /* debug */
}

.nav-btn {
    position: fixed; /* stick to viewport */
    top: 50%; /* vertical center */
    transform: translateY(-50%);
    z-index: 9999; /* always on top */
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 12px 18px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 8px;
}

    .nav-btn.left {
        left: 15px;
    }

    .nav-btn.right {
        right: 15px;
    }

#onlineWidget {
    position: fixed; /* stick to viewport */
    bottom: 20px;
    right: 20px;
    z-index: 9999; /* above everything */
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-family: sans-serif;
    font-size: 16px;
    /* force GPU layer to reduce repaint jitter */
    transform: translateZ(0);
    will-change: transform;
}

@media (max-width: 768px) {
    #onlineWidget {
        bottom: 10px;
        right: 10px;
        font-size: 14px;
        padding: 8px 10px;
    }
}

.page-container {
    display: flex;
    width: 200%; /* double width for sliding effect */
    transition: transform 0.5s ease-in-out;
}

#homePage {
    background: #f0f0f0; /* optional */
}

#newspaperPage {
    background: #d0e0f0; /* optional */
}

.box {
    width: 788px;
    margin: 40px auto;
    border: 1px solid #ccc;
    padding: 15px;
    text-align: center;
    position: relative; /* 🔑 this is the fix */
    display: block;
    margin-bottom: 16px;
    padding: 12px;
}
}

.content {
    margin-top: 10px;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
}

    .content.hidden {
        max-height: 0;
        opacity: 0;
    }

h1 {
    text-align: center;
    font-size: 32px;
}

p {
    margin: 0;
}

    p.middleP {
        text-align: center;
    }

.BioLeftSide {
    width: 450px; /* match the iframe width */
    max-width: 100%;
    text-align: center; /* centers inline content AND text */
    margin: 0 auto; /* centers the whole div if needed */
}

    .BioLeftSide p {
        width: 100%;
        word-wrap: break-word;
        font-size: 15px;
        font-weight: normal;
        text-align: center; /* centers paragraph text */
    }

    .BioLeftSide h1 {
        width: 100%;
        word-wrap: break-word;
        font-size: 25px;
        font-weight: bold;
        text-align: center; /* centers paragraph text */
    }

/* This must wrap BOTH LeftSide and RightSide */
.container {
    display: flex;
    flex-direction: row;
    width: fit-content; /* shrink to wrap exactly both divs */
    margin: 0 auto; /* center the whole block IF desired */
}

.ProfileBegin .container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.LeftSide {
    flex: 0 0 auto; /* stays fixed width */
}

.RightSide {
    min-height: 0;
}

.LeftSide {
    flex: 0 0 auto;   /* stays fixed width */
}

.RightSide iframe {
    width: 100%;
    max-width: 100%;
    height: 400px; /* fixed maximum height */
    max-height: 400px; /* prevents it from going taller */
    display: block;
    margin: 0;
    padding: 0;
    border: none;
}

/* Remove background if you want no color */
.LeftSide, .RightSide {
    background: none;
}

/* THIS IS THE START OF THE CAROUSEL */

.carousel {
    width: 100%;
    height: 100vh; /* <- required */
    background: #222; /* helps visualize container */
    position: relative;
    overflow: hidden;
}

#carousel-image {
    border: 5px solid red !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    background: #000;
    transition: opacity 0.4s ease;
}

/* Arrow buttons */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: yellow;
    background: rgba(0,0,0,0.4);
    border: none;
    border-radius: 6px;
    padding: 8px 14px;
    cursor: pointer;
    z-index: 10;
}

    .arrow.left {
        left: 10px;
    }

    .arrow.right {
        right: 10px;
    }

    .arrow:hover {
        background: rgba(0,0,0,0.7);
    }

/* THIS IS THE END OF THE CAROUSEL */

h1:nth-of-type(1):hover {
    color: red;
}

h1:nth-of-type(4):hover {
    color: blue;
}

h1:nth-of-type(2):hover {
    color: green;
}

h1:nth-of-type(5):hover {
    color: purple;
}

h1:nth-of-type(3):hover {
    color: violet;
}

.myTest:nth-child(1) p:hover {
    color: red;
}

.myTest:nth-child(2) p:hover {
    color: blue;
}

.myTest:nth-child(3) p:hover {
    color: green;
}

.myProfilePicture {
    width: 250px !important;
    height: 250px !important;
    max-width: none !important;
    display: block;
    margin: 0 auto;
    flex-shrink: 0 !important;
}

.myRainbowTicket {
    width: 788px !important;
    height: 250px !important;
}

.fortniteKimKardashian {
    width: 788px !important;
    height: 500px !important;
}

.myBoxingGear {
    width: 788px !important;
    height: 500px !important;
}


.myMuseum {
    width: 788px !important;
    height: 488px !important;
}

.myHappening {
    width: 800px; /* any width less than parent */
    margin: 0 auto;
    text-align: center;
}

.myWattsgatta {
    width: 800px; /* any width less than parent */
    margin: 0 auto;
    text-align: center;
}

.myWashbag {
    width: 800px; /* any width less than parent */
    margin: 0 auto;
    text-align: center;
    font-weight: bold;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.button-frame {
    padding: 10px 20px;
    font-size: 16px;
    border: 2px solid black;
    border-radius: 8px;
    background: white;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    border: 2px solid black;
    border-radius: 8px;
    min-width: 160px;
    z-index: 10;
}

    .dropdown-content a {
        padding: 10px;
        display: block;
        text-decoration: none;
        color: black;
    }

        .dropdown-content a:hover {
            background: #eee;
        }

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* START OF BUTTON */

/* reset to avoid framework interference */
* {
    box-sizing: border-box;
}

/* The target button shape */
.button-frame {
    display: inline-block; /* so it sizes to content */
    padding: 12px 24px;
    background: #fff; /* inner fill */
    color: #111;
    border-radius: 12px; /* shape */
    border: 4px solid #111; /* visible frame around button */
    cursor: pointer;
    font-size: 16px;
    text-decoration: none; /* if using <a> */
    transition: transform .12s ease, box-shadow .12s ease;
}

    /* Hover/active states */
    .button-frame:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }

    .button-frame:active {
        transform: translateY(0);
    }

/* Extra: if element is an input/button tag, target that too */
button.button-frame, input.button-frame {
    -webkit-appearance: none;
    appearance: none;
}

/* END OF BUTTON */

.myDiv {
    max-width: 1500px; /* maximum width */
    width: 90%; /* responsive width */
    margin: 0 auto; /* centers horizontally */
    box-sizing: border-box; /* include padding in width */
}

.myTest {
    width: 800px; /* container width */
    margin: 0; /* no centering */
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

br {
    display: block;
    content: "";
    margin-bottom: 2rem;
}

.videoWrap {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
}

    .videoWrap iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

.myTest {
    display: flex;
    justify-content: center;
}

    .myTest h1 {
        max-width: 90%;
        margin: 0 auto; /* true centering */
        text-align: center;
        font-size: 18px;
        line-height: 1.4;
        white-space: normal;
        overflow-wrap: anywhere; /* 🔑 THIS is the key */
        word-break: normal; /* keep words readable */
        padding: 0 10px;
    }
    
.myTest p {
        max-width: 100%;
}

.myTestKim {
    text-align: center;
}

.myTestKim p {
    width: 800px;
    margin: 0 auto; /* makes sure the 800px block is centered */
    padding: 0;
 }

.myTestJT {
    margin: 0 auto; /* makes sure the 800px block is centered */
    padding: 0;
}

.jtWat {
    width: 788px !important;
    height: 400px !important;
}

.myTestAlways {
    margin: 0 auto; /* makes sure the 800px block is centered */
    padding: 0;
}

.alwaysADifferentSize {
    width: 788px !important;
    height: 800px !important;
}

.myTestEvie {
    margin: 0 auto; /* makes sure the 800px block is centered */
    padding: 0;
}

.myEvie {
    width: 788px !important;
    height: 900px !important;
}

.myGfsVagina {
    margin: 0 auto; /* makes sure the 800px block is centered */
    padding: 0;
}

.myGfsPussy {
    width: 788px !important;
    height: 1000px !important;
}

.myBigNeedle {
    margin: 0 auto; /* makes sure the 800px block is centered */
    padding: 0;
}

.myBigNeeds {
    width: 788px !important;
    height: 800px !important;
}

.myTest2 {
    width: 800px;
    margin: 0 auto;
    padding: 0;
    flex: 0 0 auto;
}

.myFortniteApp {
    width: 788px; /* MUST have a width */
    margin: 0 auto; /* centers it */
    padding: 0;
}

.myFortniteImg {
    width: 100%;
    height: auto; /* better than fixed height */
    display: block;
}


/* Upload section left-aligned */
.upload-section {
    display: inline-block; /* makes iframe hug left side */
    vertical-align: top;
    text-align: left;
    margin-bottom: 15px;
}

.upload-frame {
    width: 200px; /* or 100% if you want full width */
    height: 35px; /* just enough for buttons */
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden; /* hides anything outside */
    display: inline-block;
}

/* Gallery section */
.gallery-section {
    display: block;
    text-align: left;
    margin-top: 20px;
}

.gallery-frame {
    width: 100%;
    height: 600px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.myVideo {
    width: 800px; /* must NOT be 100% */
    margin: 0 auto; /* centers the div */
    border: 1px solid #ccc;
    vertical-align: top;
}

.myVideo iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

.myFullscreenVideo {
    width: 1900px; /* must NOT be 100% */
    margin: 0 auto; /* centers the div */
    border: 1px solid #ccc;
}

.myFullscreenVideo iframe {
    width: 100%;
    height: 860px;
    border: 0;
}

#listenerWindow {
    position: fixed !important;
    width: 10cm;
    height: 5cm;
    /* BOTTOM LEFT */
    bottom: 20px !important;
    left: 20px !important;
    background: #000;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(0,0,0,0.9);
    overflow: hidden;
    z-index: 2147483647 !important;
}

/* Header */
#listenerHeader {
    height: 26px;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    font-size: 13px;
}

    #listenerHeader button {
        background: none;
        border: none;
        color: #fff;
        font-size: 16px;
        cursor: pointer;
    }

/* iframe */
#listenerWindow iframe {
    width: 100%;
    height: calc(100% - 26px);
    border: none;
}

/* Minimized */
#listenerWindow.minimized {
    height: 26px;
    width: 4cm;
}

/* NEW WATTS BOX */

/* PANEL */
#warningPanel {
    position: absolute;
    top: 20px; /* push panel down a bit */
    left: 50%;
    transform: translateX(-50%); /* only horizontal center */
    width: 600px;
    z-index: 999;
}

/* HEADER */
#panelHeader {
    display: flex;
    justify-content: space-between; /* header text left, button right */
    align-items: center;
    padding: 12px 16px;
    font-weight: bold;
    font-size: 20px;
    background: #1a1a1a;
}

/* TOGGLE BUTTON */
#toggleBtn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: #333;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CONTENT */
#panelContent {
    padding: 16px;
}

/* COLLAPSED */
#warningPanel.minimized #panelContent {
    display: none;
}

/* LINES */
.main-title {
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
}

.title-red {
    font-size: 18px;
    color: #c40000;
    margin-bottom: 10px;
}

.title-yellow {
    font-size: 18px;
    color: #e0c000;
    margin-bottom: 10px;
}

.timer {
    font-size: 40px;
    margin-top: 6px;
}

.explosion {
    font-size: 54px;
    display: none;
    animation: flash 0.4s infinite;
}

@keyframes flash {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.title-green {
    font-size: 18px;
    color: #00c060;
    margin-top: 10px;
    display: none;
}

/* CONSOLE WINDOW BELOW PANEL */
#consoleWindow {
    width: 600px;
    height: 150px;
    background: #000;
    color: #0f0;
    font-family: monospace;
    font-size: 14px;
    border: 2px solid #333;
    border-radius: 6px;
    overflow-y: auto;
    padding: 8px;
}

/* NEW WATTS BOX END */