/* Unique container styling */
.unique-container {
    width: 450px;
    height: 200px;
    border: 1px solid #ccc;
    position: absolute;
    right: 16px;
    top: 46px;
}

/* Unique tabs container */
.unique-tabs {
    display: flex;
    justify-content: space-between;
    background-color: #f1f1f1;
}

/* Unique tab button styling */
.unique-tab {
    width: 20%;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    background-color: #ddd;
    border: none;
    border-right: 1px solid #bbb;
}

.unique-tab:last-child {
    border-right: none;
}

/* Active tab styling */
.unique-tab.active {
    background-color: #fff;
    border-bottom: 2px solid #fff;
    color: black;
}

/* Unique content container styling */
.unique-tab-content {
    display: none;
    padding: 0;
    box-sizing: border-box;
}

.unique-tab-content.active {
    display: block;
}

/* Video container styling */
.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding-top: 56.25%;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 162px;
    object-fit: cover;
}

.spoiler {
    display: none;
}

.spoiler-button {
    cursor: pointer;
    color: green;
    text-decoration: underline;
    border: none;
    background: none;
    font-size: inherit;
    padding: 3px;
}

.sticky1 {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    text-align: center;
    height: auto;
    z-index: 1999;
}

.sticky2 {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    background-color: white;
    z-index: 1998;
    display: inline-block;
    height: auto;
    padding-left: 50px;
    padding-top: 5px;
    padding-bottom: 2px;
    display: flex;
}

#container > div.wheel > div.turret {
    position: relative;
    z-index: -1999;
}

/* CSS Reset */
body, h1, p, input, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: white;
    color: #333;
}

.timer {
    font-size: 16px;
    text-align: center;
}

.controls {
    text-align: center;
    margin-top: 10px;
}

label {
    font-size: 14px;
    margin-right: 5px;
}

input[type="number"] {
    width: 85px;
    padding: 3px;
    font-size: 14px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-right: 5px;
}

button {
    padding: 5px 10px;
    font-size: 14px;
    background-color: #4CAF50;
    color: #fff;
    border-width: 1px;
    border-color: white;
    border-radius: 3px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

.flashing {
    animation: flash 1s infinite alternate;
}

@keyframes flash {
    0% {
        background-color: #ff3b3b;
    }
    100% {
        background-color: #9333ea;
    }
}

/* Style the scrollbar background */
::-webkit-scrollbar {
    background: white;
}

/* Style the scrollbar handle */
::-webkit-scrollbar-thumb {
    background: #93f291;
}

.button-86 {
    all: unset;
    width: 100px;
    height: 30px;
    font-size: 16px;
    background: transparent;
    border: none;
    position: relative;
    color: #f0f0f0;
    cursor: pointer;
    z-index: 1;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    user-select: none;
}

.button-86::after,
.button-86::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -99999;
    transition: all .4s;
}

.button-86::before {
    transform: translate(0%, 0%);
    width: 100%;
    height: 100%;
    background: #28282d;
    border-radius: 10px;
}

.button-86::after {
    transform: translate(10px, 10px);
    width: 35px;
    height: 35px;
    background: #ffffff15;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 50px;
}

.button-86:hover::before {
    transform: translate(5%, 20%);
    width: 110%;
    height: 110%;
}

.button-86:hover::after {
    border-radius: 10px;
    transform: translate(0, 0);
    width: 100%;
    height: 100%;
}

.button-86:active::after {
    transition: 0s;
    transform: translate(0, 5%);
}

.button-57 {
    position: relative;
    overflow: hidden;
    border: 1px solid #18181a;
    color: #18181a;
    display: inline-block;
    font-size: 15px;
    line-height: 15px;
    padding: 18px 18px 17px;
    text-decoration: none;
    cursor: pointer;
    background: #fff;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-57 span:first-child {
    position: relative;
    transition: color 600ms cubic-bezier(0.48, 0, 0.12, 1);
    z-index: 10;
}

.button-57 span:last-child {
    color: white;
    display: block;
    position: absolute;
    bottom: 0;
    transition: all 500ms cubic-bezier(0.48, 0, 0.12, 1);
    z-index: 100;
    opacity: 0;
    top: 50%;
    left: 50%;
    transform: translateY(225%) translateX(-50%);
    height: 14px;
    line-height: 13px;
}

.button-57:after {
    content: "";
    position: absolute;
    bottom: -50%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    transform-origin: bottom center;
    transition: transform 600ms cubic-bezier(0.48, 0, 0.12, 1);
    transform: skewY(9.3deg) scaleY(0);
    z-index: 50;
}

.button-57:hover:after {
    transform-origin: bottom center;
    transform: skewY(9.3deg) scaleY(2);
}

.button-57:hover span:last-child {
    transform: translateX(-50%) translateY(-100%);
    opacity: 1;
    transition: all 900ms cubic-bezier(0.48, 0, 0.12, 1);
}

.popup {
    position: relative;
    display: inline-block;
    cursor: pointer;
    user-select: none;
}

.popup .popuptext {
    visibility: hidden;
    min-width: 300px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
    resize: both;
    overflow: hidden;
}

.popup .popuptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.popup .show {
    visibility: visible;
    opacity: 1;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

textarea {
    width: 100%;
    height: 200px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    resize: both;
}

.banner {
    background-color: #FF3636;
    padding: 9px;
    height: 25px;
    text-align: center;
    top: -8px;
    position: relative;
}

.banner a {
    color: white;
    text-decoration: none;
}

.banner:hover {
    background-color: #46D241;
}
