:root {
    --border: rgb(37, 37, 37);
    --accent: #ff2a00;
    --danger-bg: rgba(255, 0, 0, 0.07);
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a0a0a;
    color: #eee;
}

nav {
    background: #000;
    padding: 10px 20px;
    display: flex;
    gap: 15px;
    font-size: 14px;
    flex-wrap: wrap;
}

nav a {
    color: #aaa;
    text-decoration: none;
}

nav a:hover {
    color: #fff;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    padding: 10px 20px;
    flex-wrap: wrap;
    gap: 10px;
}

header a {
    color: #aaa;
    text-decoration: none;
}

header a:hover {
    color: #fff;
}

.active-status {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: limegreen;
    user-select: none;
}

.ball {
    position: relative;
    width: 8px;
    height: 8px;
    background-color: limegreen;
    border-radius: 50%;
    z-index: 2;
}

.ball::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background-color: limegreen;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite ease-out;
    opacity: 0.6;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

.title {
    text-align: center;
    color: #ffc400;
    font-size: clamp(24px, 5vw, 36px);
    margin: 40px 0 20px;
    font-weight: 550;
    padding: 0 20px;
    font-family: Arial, Helvetica, sans-serif;
}

.cards {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    gap: 30px;
    padding: 0 10vw 60px;
    box-sizing: border-box;
    flex-wrap: wrap;
}

.card {
    display: flex;
    flex-direction: column;
    background-color: #111;
    border: 1px solid #222;
    box-shadow: 0 0 20px rgba(255, 200, 0, 0.05);
    width: 300px;
    min-width: 250px;
    max-width: 400px;
    height: 500px;
    min-height: 350px;
    text-align: center;
    transition: transform 0.2s ease;
    overflow: hidden;
    flex: 1 1 300px;
}

.card:hover {
    transform: scale(1.02);
}

.card .imageBox {
    width: 100%;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card .imageBox img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.card h2 {
    background-image: linear-gradient(270deg, violet, rgb(149, 87, 194), rgb(81, 81, 240), rgb(27, 218, 27), yellow, orange, rgb(208, 65, 65), violet);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rgbShift 5s linear infinite;
    padding: 0;
    margin: 0;
}

.card .textPlace {
    border-top: 1px solid #302e2e;
    font-size: 14px;
    padding: 10px;
    box-sizing: border-box;
    color: #ccc;
    flex: 1;
    overflow-y: scroll;
}

.card h4 {
    margin-top: 4px;
    height: 20%;
    margin-bottom: 10px;
    border-bottom: 1px solid #302e2e;
}

.enterbox {
    position: fixed;
    display: flex;
    flex-direction: column;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.852);
    backdrop-filter: blur(8.1px);
    -webkit-backdrop-filter: blur(8.1px);
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.enterbox a {
    display: inline-block;
    text-decoration: none;
    position: relative;
    cursor: pointer;
}

.tos-link {
    color: rgb(84, 158, 255);
    transition: color .3s;
}

.enterbox .tos-link:hover {
    color: rgb(157, 217, 255);
}

.enterbox a::after {
    position: absolute;
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: rgb(94, 164, 255);
    transition: width .3s;
}

.enterbox a:hover::after {
    width: 100%;
}

.enterbox .btn::after {
    background: white;
}

.fade-out {
    transition: all .1s;
    opacity: 0;
    pointer-events: none;
}

.rgb {
    background-image: linear-gradient(270deg, violet, rgb(149, 87, 194), rgb(81, 81, 240), rgb(27, 218, 27), yellow, orange, rgb(208, 65, 65), violet);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rgbShift 5s linear infinite;
}

.itsathing {
    position: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    top: 0;
    left: 50%;
    transform: translate(-50%, 90vh);
    width: 500px;
    height: 70px;
}


.loginpart {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 2vh;
    margin-left: 2vw;
}

.loginpart input {
    width: 150px;
    padding: 6px 10px;
    border: 1px solid #282828;
    border-radius: 6px;
    font-size: 14px;
    background-color: #111;
    color: #fff;
}

.loginpart button {
    padding: 6px 12px;
    margin-left: 8px;
    font-size: 14px;
    border: none;
    border-radius: 6px;
    background-color: #28a745;
    color: white;
    cursor: pointer;
}

.postmenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 50%;
    transform: translateX(50%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    z-index: 9999;
    gap: 10px;
    box-sizing: border-box;
    height: 50px;
}

.hidden {
    display: none;
}

.postmenu input,
.postmenu textarea {
    box-sizing: border-box;
    padding: 6px 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    height: 32px;
    margin: 0;
}

.postmenu textarea {
    height: 32px;
    resize: none;
    overflow: auto;
    vertical-align: middle;
}


.usertable {
    display: flex;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.usergroup {
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    border: 1px solid var(--border);
    width: 100%;
    max-width: 700px;
    height: 85vh;
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 8px;
    background: #111;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.05);
    transform: translateY(-4vh);
}

.usergroup .centerlogin {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 20px;
    row-gap: 10px;
    padding-top: 10px;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.centerlogin input {
    box-sizing: border-box;
    padding: 6px 8px;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    background-color: #111;
    color: #FFF;
    height: 32px;
    margin: 0;
    border: none;
    outline: none;
    width: 85%;
    box-shadow: 0 0 0 1px #787878;
    transition: box-shadow 0.1s ease-in-out, font-size 0.1s ease-in-out;
}

.centerlogin button {
    padding: 6px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-family: inherit;
    box-sizing: border-box;
    background-color: #111;
    color: #FFF;
    outline: none;
    height: auto;
    width: 50%;
    margin-top: 5px;
    border: none;
    box-shadow: 0 0 0 1px #787878;
    transition: box-shadow 0.1s ease-in-out;
}

.centerlogin button:hover {
    box-shadow: 0 0 0 1px #a4a4a4;
}

.logongroup {
    height: auto;
    width: 300px;
}

.centerlogin h6 {
    margin: 0;
    padding: 0;
    color: #484848;
    font-size: 11px;
    font-weight: 900;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.scaleToMin {
    height: auto;
}

.scale30 {
    height: 30%;
}

.width30 {
    width: 30%;
}

.width14 {
    width: 14%;
}

.width90 {
    width: 90%;
}

.scale20 {
    height: 24%;
}

.padDown5 {
    padding: 0 0 5px;
}

.centerlogin input:hover {
    box-shadow: 0 0 0 1px #a4a4a4;
}

.centerlogin input:focus {
    box-shadow: 0 0 0 1px #ececec;
}

.usergroup .center .box {
    height: 60%;
    width: 100%;
    border: 1px dashed var(--border);
    background: #0e0e0e;
}

.usergroup h4 {
    font-weight: 600;
    text-align: center;
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    margin: 0;
    font-size: 1rem;
    background: #151515;
    border-bottom: 1px solid var(--border);
}

.usergroup .user {
    display: flex;
    align-items:center;
    flex-direction: row;
    padding: 10px 16px;
    border-bottom: 1px dashed var(--border);
    gap: 8px;
}

.tos {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 16px;
    border-bottom: 1px dashed var(--border);
    margin: 0;
}

.tos p {
    margin: 10px;
}

.tos h5 {
    border-bottom: 1px rgb(72, 72, 72) dashed;
    margin-bottom: 5px;
}

.usergroup .user img {
    height: 40px;
    width: 40px;
    border-radius: 4px;
    object-fit: cover;
    border: 1px solid rgb(255, 255, 255);
    box-shadow: 0 0 5px rgb(255, 255, 255);
}

.user .rank-owner {
    margin-left: auto;
    position: relative;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 0 0 6px #c00, 0 0 12px #900, 0 0 18px #f00;
    padding: 4px 10px;
    background: var(--danger-bg);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 5px;
    overflow: visible;
    z-index: 1;
}

.user .rank-casual {
    margin-left: auto;
    position: relative;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: #ccc;
    padding: 4px 10px;
    background: rgba(184, 92, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.04);
    transition: background 0.2s ease;
}

.user .rank-casual:hover {
    background: rgba(184, 92, 255, 0.07);
}


.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #ff2a00 0%, transparent 80%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

@keyframes drift1 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }

    25% {
        transform: translate(-25px, -10px) scale(1.2);
        opacity: 0.3;
    }

    50% {
        transform: translate(-10px, 20px) scale(1.1);
        opacity: 0.4;
    }

    75% {
        transform: translate(15px, -15px) scale(1.3);
        opacity: 0.2;
    }

    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
}

@keyframes drift2 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }

    25% {
        transform: translate(20px, 10px) scale(0.8);
        opacity: 0.2;
    }

    50% {
        transform: translate(-15px, 15px) scale(1.2);
        opacity: 0.5;
    }

    75% {
        transform: translate(5px, -20px) scale(0.9);
        opacity: 0.3;
    }

    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
}

@keyframes drift3 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }

    25% {
        transform: translate(-20px, 5px) scale(1.1);
        opacity: 0.2;
    }

    50% {
        transform: translate(10px, 15px) scale(1.3);
        opacity: 0.6;
    }

    75% {
        transform: translate(-5px, -10px) scale(0.9);
        opacity: 0.4;
    }

    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
}

@keyframes rgbShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.warning-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translate(-50%, -150%);
    padding: 15px 30px;
    font-family: Arial, sans-serif;
    font-size: clamp(14px, 2.5vw, 16px);
    color: white;
    text-align: center;
    z-index: 99999999;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    opacity: 0;
    max-width: 90vw;
}

.warning-bar.show {
    transform: translate(-50%, 0);
    opacity: 1;
    animation: bounceIn 0.6s ease-out;
}

@keyframes bounceIn {
    0% {
        transform: translate(-50%, -150%) scale(0.8);
        opacity: 0;
    }

    60% {
        transform: translate(-50%, 10px) scale(1.05);
        opacity: 1;
    }

    80% {
        transform: translate(-50%, -5px) scale(0.98);
    }

    100% {
        transform: translate(-50%, 0) scale(1);
    }
}

.warning-bar .icon {
    margin-right: 15px;
    font-size: 20px;
}

.warning-yellow {
    background-color: rgba(255, 235, 59, 0.2);
    border-color: rgba(255, 235, 59, 0.5);
    color: #FFEB3B;
}

.warning-red {
    background-color: rgba(244, 67, 54, 0.2);
    border-color: rgba(244, 67, 54, 0.5);
    color: #F44336;
}

.warning-blue {
    background-color: rgba(33, 150, 243, 0.2);
    border-color: rgba(33, 150, 243, 0.5);
    color: #2196F3;
}

@media (max-width: 768px) {
    nav {
        padding: 8px 15px;
        font-size: 13px;
        gap: 10px;
    }

    header {
        padding: 8px 15px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .title {
        font-size: clamp(20px, 6vw, 28px);
        margin: 30px 0 15px;
    }

    .cards {
        gap: 20px;
        padding: 0 3vw 40px;
    }

    .card {
        width: 280px;
        height: 380px;
        min-height: 320px;
        overflow: hidden;
    }

    .card h2 {
        font-size: clamp(14px, 4vw, 18px);
        margin: 12px 0 8px;
    }

    .card .textPlace {
        font-size: 13px;
        padding: 8px;
    }

    .warning-bar {
        padding: 12px 20px;
        top: 15px;
    }

    .warning-bar .icon {
        margin-right: 10px;
        font-size: 18px;
    }

    .itsathing {
        display: none;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 6px 10px;
        font-size: 12px;
        gap: 8px;
        justify-content: center;
    }

    header {
        padding: 6px 10px;
    }

    .title {
        font-size: clamp(18px, 7vw, 24px);
        margin: 20px 0 10px;
    }

    .cards {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 0 2vw 30px;
    }

    .card {
        width: 90vw;
        max-width: 350px;
        height: 350px;
        min-height: 300px;
        flex: none;
    }

    .card:hover {
        transform: scale(1.01);
    }

    .card h2 {
        font-size: clamp(16px, 5vw, 18px);
        margin: 10px 0 6px;
    }

    .card .textPlace {
        font-size: 12px;
        padding: 6px;
    }

    .enterbox {
        padding: 15px;
    }

    .warning-bar {
        padding: 10px 15px;
        top: 10px;
        border-radius: 8px;
    }

    .warning-bar .icon {
        margin-right: 8px;
        font-size: 16px;
    }
}

@media (max-width: 320px) {
    .title {
        font-size: 20px;
        margin: 15px 0 8px;
    }

    .card {
        width: 95vw;
        height: 320px;
        min-height: 280px;
    }

    .card h2 {
        font-size: 16px;
        margin: 8px 0 4px;
    }

    .card .textPlace {
        font-size: 11px;
        padding: 5px;
    }

    .warning-bar {
        padding: 8px 12px;
        font-size: 14px;
    }
}

.text-flicker-in-glow {
    -webkit-animation: text-flicker-in-glow 4s linear both;
    animation: text-flicker-in-glow 4s linear both;
}

.swing-out-top-bck {
    -webkit-animation: swing-out-top-bck 0.45s cubic-bezier(0.600, -0.280, 0.735, 0.045) both;
    animation: swing-out-top-bck 0.45s cubic-bezier(0.600, -0.280, 0.735, 0.045) both;
}

@-webkit-keyframes text-flicker-in-glow {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 0;
        text-shadow: none;
    }

    10.1% {
        opacity: 1;
        text-shadow: none;
    }

    10.2% {
        opacity: 0;
        text-shadow: none;
    }

    20% {
        opacity: 0;
        text-shadow: none;
    }

    20.1% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.25);
    }

    20.6% {
        opacity: 0;
        text-shadow: none;
    }

    30% {
        opacity: 0;
        text-shadow: none;
    }

    30.1% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.25);
    }

    30.5% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.25);
    }

    30.6% {
        opacity: 0;
        text-shadow: none;
    }

    45% {
        opacity: 0;
        text-shadow: none;
    }

    45.1% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.25);
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.25);
    }

    55% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.25);
    }

    55.1% {
        opacity: 0;
        text-shadow: none;
    }

    57% {
        opacity: 0;
        text-shadow: none;
    }

    57.1% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.35);
    }

    60% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.35);
    }

    60.1% {
        opacity: 0;
        text-shadow: none;
    }

    65% {
        opacity: 0;
        text-shadow: none;
    }

    65.1% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.35), 0 0 100px rgba(255, 255, 255, 0.1);
    }

    75% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.35), 0 0 100px rgba(255, 255, 255, 0.1);
    }

    75.1% {
        opacity: 0;
        text-shadow: none;
    }

    77% {
        opacity: 0;
        text-shadow: none;
    }

    77.1% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.4), 0 0 110px rgba(255, 255, 255, 0.2), 0 0 100px rgba(255, 255, 255, 0.1);
    }

    85% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.4), 0 0 110px rgba(255, 255, 255, 0.2), 0 0 100px rgba(255, 255, 255, 0.1);
    }

    85.1% {
        opacity: 0;
        text-shadow: none;
    }

    86% {
        opacity: 0;
        text-shadow: none;
    }

    86.1% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 0 60px rgba(255, 255, 255, 0.45), 0 0 110px rgba(255, 255, 255, 0.25), 0 0 100px rgba(255, 255, 255, 0.1);
    }

    100% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 0 60px rgba(255, 255, 255, 0.45), 0 0 110px rgba(255, 255, 255, 0.25), 0 0 100px rgba(255, 255, 255, 0.1);
    }
}

@keyframes text-flicker-in-glow {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 0;
        text-shadow: none;
    }

    10.1% {
        opacity: 1;
        text-shadow: none;
    }

    10.2% {
        opacity: 0;
        text-shadow: none;
    }

    20% {
        opacity: 0;
        text-shadow: none;
    }

    20.1% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.25);
    }

    20.6% {
        opacity: 0;
        text-shadow: none;
    }

    30% {
        opacity: 0;
        text-shadow: none;
    }

    30.1% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.25);
    }

    30.5% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.25);
    }

    30.6% {
        opacity: 0;
        text-shadow: none;
    }

    45% {
        opacity: 0;
        text-shadow: none;
    }

    45.1% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.25);
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.25);
    }

    55% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.25);
    }

    55.1% {
        opacity: 0;
        text-shadow: none;
    }

    57% {
        opacity: 0;
        text-shadow: none;
    }

    57.1% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.35);
    }

    60% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.35);
    }

    60.1% {
        opacity: 0;
        text-shadow: none;
    }

    65% {
        opacity: 0;
        text-shadow: none;
    }

    65.1% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.35), 0 0 100px rgba(255, 255, 255, 0.1);
    }

    75% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.35), 0 0 100px rgba(255, 255, 255, 0.1);
    }

    75.1% {
        opacity: 0;
        text-shadow: none;
    }

    77% {
        opacity: 0;
        text-shadow: none;
    }

    77.1% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.4), 0 0 110px rgba(255, 255, 255, 0.2), 0 0 100px rgba(255, 255, 255, 0.1);
    }

    85% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.4), 0 0 110px rgba(255, 255, 255, 0.2), 0 0 100px rgba(255, 255, 255, 0.1);
    }

    85.1% {
        opacity: 0;
        text-shadow: none;
    }

    86% {
        opacity: 0;
        text-shadow: none;
    }

    86.1% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 0 60px rgba(255, 255, 255, 0.45), 0 0 110px rgba(255, 255, 255, 0.25), 0 0 100px rgba(255, 255, 255, 0.1);
    }

    100% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 0 60px rgba(255, 255, 255, 0.45), 0 0 110px rgba(255, 255, 255, 0.25), 0 0 100px rgba(255, 255, 255, 0.1);
    }
}

@-webkit-keyframes swing-out-top-bck {
    0% {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 1;
    }

    100% {
        -webkit-transform: rotateX(-100deg);
        transform: rotateX(-100deg);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 0;
    }
}

@keyframes swing-out-top-bck {
    0% {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 1;
    }

    100% {
        -webkit-transform: rotateX(-100deg);
        transform: rotateX(-100deg);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 0;
    }
}