@import url('https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap');

:root {
    --primary-color: #ff8c00;
    --secondary-color: #ffb347;
    --accent-color: #ffe0b2;
    --dark-bg: #1a1a1a;
    --card-bg: rgba(255, 255, 255, 0.95);
}

body {
    font-family: "Prompt", sans-serif !important;
    background-color: #fff;
    overflow-x: hidden;
}

body, * {
    cursor: none !important;
}

body h1, h2, h3, h4, h5, h6 {
    font-family: "Prompt", sans-serif !important;
}

a {
    text-decoration: none;
}

#custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 35px;
    height: 35px;
    z-index: 100000;
    pointer-events: none;
    background-image: url('../images/cursor/cursor.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 1;
    transition: opacity 0.1s ease;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.5));
}

body.is-hovering #custom-cursor, body.hover-active #custom-cursor {
    background-image: url('../images/cursor/activec.png');
    transform: scale(1.2);
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.8));
}

body.is-iframe-hover #custom-cursor {
    opacity: 0 !important;
}

.click-ring {
    position: fixed;
    border: 2px solid #ffb546;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 99999;
    box-shadow: 0 0 10px #ffb546, inset 0 0 10px #ffb546;
    animation: ro-click 0.5s ease-out forwards;
}

@keyframes ro-click {
    0% {
        width: 10px;
        height: 10px;
        opacity: 1;
        transform: translate(-50%, -50%) rotate(0deg);
    }

    50% {
        opacity: 0.8;
    }

    100% {
        width: 50px;
        height: 50px;
        opacity: 0;
        transform: translate(-50%, -50%) rotate(180deg);
        border-width: 0;
    }
}

@keyframes liquid-move {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(5px, -8px) rotate(2deg);
    }

    50% {
        transform: translate(0, -15px) rotate(0deg);
    }

    75% {
        transform: translate(-5px, -8px) rotate(-2deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

.anim-liquid {
    animation: liquid-move 6s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    transition: all 0.5s ease;
}

.anim-liquid:hover {
    animation-play-state: paused;
    transform: scale(1.15) translateY(-5px);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
    z-index: 50;
}

@keyframes sway-float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(1deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.anim-sway {
    animation: sway-float 4s ease-in-out infinite;
}

.anim-sway-delayed {
    animation: sway-float 4.5s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes logo-enter {
    0% {
        transform: scale(0.5) translateY(50px);
        opacity: 0;
        filter: blur(5px);
    }

    60% {
        transform: scale(1.1);
        opacity: 1;
        filter: blur(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

.logo-animate {
    animation: logo-enter 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.logo-pulse {
    animation: heartbeat 3s ease-in-out infinite 1.2s;
    display: inline-block;
}

@keyframes shimmer {
    0% {
        left: -100%;
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

.btn-shine {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
}

.btn-shine:hover {
    transform: scale(1.08);
    filter: brightness(1.1);
    z-index: 20;
}

.btn-shine:hover::before {
    animation: shimmer 0.7s;
}

header-main {
    width: 100%;
    overflow: hidden;
    display: block;
    position: relative;
}

header-main img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.discord-box-h {
    top: 0px;
    left: 17%;
    width: auto;
    z-index: 3;
    position: absolute;
}

.fanpage-box-h {
    top: 10px;
    right: 15%;
    width: auto;
    z-index: 3;
    position: absolute;
}

.logo-h {
    position: absolute;
    top: 1%;
    left: 50%;
    transform: translate(-50%, -0%);
    width: 25%;
    z-index: 2;
}

.register-container {
    background-image: linear-gradient(to right, #fcd377, #f9a33c);
    border-radius: 30px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.register-card {
    background-color: #fff9e6;
    border-radius: 25px;
    padding: 40px;
    border: 2px solid #fff;
}

.form-control-custom {
    border-radius: 50px;
    border: 2px solid #fcd377;
    padding: 12px 20px;
    background-color: #fff;
    color: #555;
    font-weight: bold;
}

.form-control-custom:focus {
    border-color: #f9a33c;
    box-shadow: 0 0 10px rgba(249, 163, 60, 0.3);
    outline: none;
}

.reg-title {
    text-align: center;
    font-weight: 900;
    color: #d35400;
    text-shadow: 2px 2px 0px #fff;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.gender-select {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-register {
    background: linear-gradient(to bottom, #ff99cc, #ff66b2);
    border: 4px solid #fff;
    border-radius: 50px;
    color: white;
    font-weight: 900;
    font-size: 1.5rem;
    padding: 10px 50px;
    box-shadow: 0 5px 15px rgba(255, 102, 178, 0.4);
    width: 100%;
    margin-top: 20px;
}

.turnstile-wrapper {
    display: inline-block;
    position: relative;
    cursor: auto !important;
    padding: 5px;
    border-radius: 5px;
}

.form-text-custom {
    font-size: 0.8rem;
    margin-top: 4px;
    display: block;
}

.custom-footer {
    background-color: #2b2b2b;
    color: #fff;
    padding-top: 60px;
    padding-bottom: 30px;
    border-top: 5px solid #f9a33c;
    position: relative;
    z-index: 10;
}

.footer-heading {
    color: #f9a33c;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #f9a33c;
    transform: translateX(5px);
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    background: #f9a33c;
    color: #fff;
    transform: translateY(-3px);
}

.copyright-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    top: -10px;
    animation: fall linear infinite;
}

@keyframes fall {
    to {
        transform: translateY(110vh);
    }
}

.loader {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f9a33c;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999999;
    transition: opacity .4s ease-in-out, visibility .4s ease-in-out;
    pointer-events: none;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-text {
    color: white;
    font-size: 14pt;
    font-weight: 600;
    margin-left: 10px;
}

.loader-decoration {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 28px;
}

.dot {
    margin-left: 3px;
    animation: blink 1.5s infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.3s;
}

.dot:nth-child(3) {
    animation-delay: 0.6s;
}

.loading-bar-background {
    display: flex;
    align-items: center;
    padding: 5px;
    width: 15%;
    height: 30px;
    background-color: #212121;
    border-radius: 15px;
    box-shadow: inset -2px 2px 4px #0c0c0c;
}

.loading-bar {
    display: flex;
    justify-content: center;
    width: 0%;
    height: 20px;
    position: relative;

    overflow: hidden;
    background: linear-gradient(0deg, rgb(252, 211, 119) 0%, rgb(249, 163, 60) 100%);
    border-radius: 10px;
    /* animation: loading .6s ease-out;*/
    transition: width 0.2s ease-out;
    width: 0%;
}

.white-bars-container {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 18px;

    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    justify-content: center;
}

.white-bar {
    background: linear-gradient(-45deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 70%);
    width: 10px;
    height: 45px;
    opacity: 0.3;
    rotate: 45deg;
}

@keyframes loading {
    0% {
        width: 0;
    }

    80% {
        width: 100%;
    }

    100% {
        width: 100%;
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

.con-show {
    background-image: url(../images/bg_down.png);
    width: 100%;
    top: 0;
    left: 0;
    background-size: 100% 100%;
}

.btn-pink {
    --bs-btn-color: #fff;
    --bs-btn-bg: #f9a33c;
    --bs-btn-border-color: #f9a33c;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #e6912e;
    --bs-btn-hover-border-color: #f9a33c;
}

.card {
    border-radius: 1.25rem !important;
}

.hide::-webkit-scrollbar {
    display: none;
}

.hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.swal2-popup {
    border-radius: 30px !important;
}

.image-container {
    position: relative;
    display: inline-block;
}

.custom-topbar {
    background: rgba(15, 15, 15, 0.9);
    color: #ffffff;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 2px solid #f9a33c;
    position: relative;
    z-index: 1000;
}

.custom-topbar a {
    color: #fcd377;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.custom-topbar a:hover {
    color: #ffffff;
    text-shadow: 0 0 5px #fcd377;
}

.status-dot {
    height: 10px;
    width: 10px;
    background-color: #4CAF50;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 5px #4CAF50;
    margin-right: 5px;
}

.status-dot2 {
    height: 10px;
    width: 10px;
    background-color: #e42e28;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 5px #e42e28;
    margin-right: 5px;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

img {
    -webkit-user-drag: none;
    user-select: none;
}

body, a, button, input, textarea, select, .pointer {
    cursor: none !important;
}

body {
    user-select: none;
    -webkit-user-select: none;
}

iframe, .turnstile-wrapper, .turnstile-wrapper * {
    cursor: auto !important;
}

#custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    transition: opacity 0.2s ease;
    pointer-events: none !important;
}

#custom-cursor.is-hidden {
    opacity: 0 !important;
}