/* Root */

:root {
    --default-color: #fed800;
}

html,
body {
    font-family: 'Rajdhani', sans-serif;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
    /* background-color: var(--default-color-body, rgba(15, 15, 15, 0.589)); */
    color: #ffffff;
    scroll-behavior: smooth;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.336), rgba(0, 0, 0, 0.336)),
        url(/static/img/background/background-body.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    min-height: 100vh;
    height: auto;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scrollbar-width: thin !important;
    scrollbar-color: #fed800 #000000 !important;
}

.grecaptcha-badge {
    /* bottom: 10px !important; */
    /* right: 10px !important; */
    visibility: hidden;
    /* z-index: 999999; */
}




main {
    padding-top: calc(var(--bs-navbar-height, 70px) + 20px);
}



/* Navbar Professional */
.navbar {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 193, 7, 0.1);
    padding: 0.8rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.6rem;
    color: #fff !important;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand i {
    color: #ffca2c;
    filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.5));
}

.navbar-brand span {
    color: #ffca2c;
    font-size: 0.8em;
    display: block;
    line-height: 1;
}

.nav-item {
    margin: 0 5px;
}

.nav-link {
    color: #e0e0e0 !important;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
    position: relative;
    padding: 8px 12px !important;
}

/* Animated Underline for Links */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #ffca2c;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: #fff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}


.logo-icon {
    transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}

.logo-icon:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.logo-icon-spin {
    width: 150px;
    margin: 0 auto;
    perspective: 800px;
}

.logo-icon-spin img {
    width: 100%;
    animation: iconspin 5s linear infinite;
    transform-style: preserve-3d;
}

/* Animação contínua */
@keyframes iconspin {
    0% {
        transform: rotateY(0deg) rotateX(0deg);
    }

    25% {
        transform: rotateY(90deg) rotateX(10deg);
    }

    50% {
        transform: rotateY(180deg) rotateX(0deg);
    }

    75% {
        transform: rotateY(270deg) rotateX(-10deg);
    }

    100% {
        transform: rotateY(360deg) rotateX(0deg);
    }
}






.bg-section {
    /* background: url('/static/img/background/11740843_4826101.jpg') no-repeat center center/cover; */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    padding: 10px;
}

@media (max-width: 768px) {
    .bg-section {
        background-position: center top;
        padding: 20px;
    }
}

@media(max-width: 400px) {
    .bg-section {
        flex-direction: column;
        text-align: center;
    }
}

.border-line-top {
    border-top: 0.1rem solid #fed800;
    padding-top: 10px;
}

.border-line-bottom {
    border-bottom: 0.1rem solid #fed800;
    padding-bottom: 10px;
}

.border-line-tb {
    border-bottom: 0.1rem solid #fed800;
    border-top: 0.1rem solid #fed800;
    padding-bottom: 5px;
    padding-top: 5px;
}

.border-elite {
    border: 0.1rem solid #fed800;
}

.shadow-elite {
    box-shadow: 0 5px 10px -3px rgba(254, 216, 0, 0.308),
        0 4px 6px -2px rgba(254, 216, 0, 0.267);
}

.badge-elite {
    display: inline-block;
    vertical-align: top;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    letter-spacing: 0.02em;
    border-radius: 5px;
    padding: 0.1rem 0.2rem 0.1rem;
    text-transform: uppercase;
    border: 0.1rem solid var(--default-color);
    font-size: 10px;
}

.b-discount {
    color: #50C878;
    border-color: #39af61;
}

.b-new {
    color: #FF7F50;
    border-color: #e65f2e;
}

.b-promo {
    color: #87CEEB;
    border-color: #54bbe4;
}


.py-10 {
    padding-top: 1rem !important;
}

.py-15 {
    padding-top: 5rem !important;
}

.py-50 {
    padding-top: 10rem !important;
}

.py-80 {
    padding-top: 10rem !important;
}

.py-100 {
    padding-top: 15rem !important;
}

.bg-card {
    background-color: #caac03fa !important;
}

.bg-table {
    background-color: #b8a01cd8 !important;
}

.bg-container {
    background-color: #b8a01cd8 !important;
}

.bg-elite {
    background-color: #b8a01cd8 !important;
    border-bottom: 2px solid #fed800 !important;
}

.bg-elite-2 {
    background-color: #b8a01cd8 !important;
    border-top: 1px solid #fff !important;
    border-bottom: 1px solid #fff !important;
    border-right: 1px solid #fff !important;
    border-left: 1px solid #fff !important;
    border-radius: 50px;
}

.text-elite {
    color: #ffffff !important;
}

.btn-elite {
    background-color: #cc8c14bb;
    color: #ffffff;
    font-weight: bold;
    padding: 5px 10px;
    border: 1px solid #fed800;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
}

.btn-elite:hover {
    background-color: var(--default-nav-footer);
    color: #2b2828;
    border-color: #fed800;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.btn-elite:focus {
    outline: 2px solid var(--default-nav-footer);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.15);
}

/* BTN-TEUS */
.btn-teus {
    background-color: #fed800;
    color: #fff;
    padding: 5px 10px;
    font-weight: 600;
    border: 1px solid #fed800;
    border-radius: 5px;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-teus:hover {
    background-color: #fff;
    font-weight: bold;
    color: #fed800;
    border-color: #fed800;
    transform: scale(1.1);
}

.btn-teus:focus {
    outline: 2px solid #fed800;
    outline-offset: 2px;
}

.text-teus {
    font-size: 1.5rem;
    color: #ffffff;
}

.text-teus-muted {
    color: #f00;
    opacity: 0.6;
}

/* BTN-TEUS END */

.text-btn {
    font-size: 1.2rem !important;
}

.btn-new {
    background-color: #cc8c14bb;
    font-weight: bold;
    padding: 5px 10px;
    border: 1px solid #cc8c14bb;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
}

.btn-new:hover {
    background-color: var(--default-color);
    color: #ffffff;
    border-color: #fed800;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.btn-new:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.15);
}

.alert-elite {
    background-color: #b8a01cd8;
}

.dropdown-elite {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown-elite.show {
    opacity: 1;
    transform: translateY(0);
}

.table {
    width: 100% !important;
}

.text-alternate-muted {
    color: #ffffff;
    opacity: 0.6;
}

.text-muted-new {
    color: var(--default-color) !important;
}

.tooltip-container {
    position: relative;
    display: inline-block;
}

.tooltip-elite .tooltiptext {
    visibility: hidden;
    max-width: 300px;
    background-color: #383838ea;
    color: #ffffff;
    text-align: center;
    border-radius: 4px;
    padding: 4px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 120%;
    margin-left: -220px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip-elite:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.hero-review {
    height: 20vh;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.200), rgba(0, 0, 0, 0.200));
    /* background-image: 
             linear-gradient(#fed800, var(--default-color-elite0-rgba));  */
    /* url(/static/img/background/331255811_82d826c9-3a63-4b1a-a9bb-5cb1a66f3855.jpg); */
    /* background-size: 100% 100%;
            background-repeat: no-repeat;
            background-position: center center; */

    border-bottom: 1px solid #b8a11c;
}





#countdown .text-center {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

#countdown .text-center:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#countdown h3 {
    font-size: 3rem;
    margin-bottom: 5px;
    font-weight: bold;
}

#countdown small {
    font-size: 0.8rem;
}

.carousel-slide {
    object-fit: cover;
    max-height: 330px;
}


.carousel-inner {
    position: relative;
    max-height: 500px;
    overflow: hidden;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 10px;
    transition: background-color 0.3s;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.carousel-control-prev,
.carousel-control-next {
    z-index: 10;
}

.carousel-item a {
    border-radius: 10px;
    overflow: hidden;
}

.container .strengthMeter {
    position: relative;
    width: 100%;
    height: 5px;
    background: #333;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 10px;
}

.container .strengthMeter::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: #f00;
    transition: width 0.5s ease, background 0.5s ease;
    border-radius: 5px;
}

.container .strengthMeter::after {
    content: attr(data-strength);
    position: absolute;
    top: -25px;
    left: 0;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    transition: color 0.5s ease;
}

/* Estilos para força fraca */
.container.weak .strengthMeter::before {
    width: 30%;
    background: #f00;
    filter: drop-shadow(0 0 5px #f00) drop-shadow(0 0 10px #f00);
}

.container.weak .strengthMeter::after {
    content: "Fraca";
    color: #f00;
    filter: drop-shadow(0 0 5px #f00);
}

/* Estilos para força moderada */
.container.moderate .strengthMeter::before {
    width: 70%;
    background: #ffcc00;
    filter: drop-shadow(0 0 5px #ffcc00) drop-shadow(0 0 10px #ffcc00);
}

.container.moderate .strengthMeter::after {
    content: "Moderada";
    color: #ffcc00;
    filter: drop-shadow(0 0 5px #ffcc00);
}

/* Estilos para força forte */
.container.strong .strengthMeter::before {
    width: 100%;
    background: #18e605;
    filter: drop-shadow(0 0 5px #18e605) drop-shadow(0 0 10px #18e605);
}

.container.strong .strengthMeter::after {
    content: "Forte";
    color: #18e605;
    filter: drop-shadow(0 0 5px #18e605);
}

.show-password {
    /* background: #272101f2; */
    cursor: pointer;
}

.table-elite {
    background-color: var(--default-color) !important;
    color: #ffffff;
    border-color: #fed800 !important;
}

.table-elite th {
    background-color: var(--default-color) !important;
    color: #ffffff;
}

.table-elite td {
    border-top: 1px solid #fed800 !important;
}

.countCart {
    font-size: 0.8rem;
    min-width: 20px;
    min-height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.message-container {
    border-top: 1px solid #fed800;
    border-bottom: 1px solid #fed800;
    padding: 20px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    background-image: linear-gradient(to right, #b8a11c, #635506c4);
}

.coins {
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url('/static/img/favicon/favicon-16x16.png');
    background-position: center;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
    animation: fall 5s linear infinite;
    will-change: transform;
    top: -50px;
    z-index: 0;
}

@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(100vh) rotate(360deg);
    }
}

.btn-payment.disabled,
.btn-payment:disabled {
    background-color: #d10a0a !important;
    border-color: #e90f0f !important;
    color: white !important;
    cursor: not-allowed;
    opacity: 1;
}

.btn-checkout.disabled,
.btn-checkout:disabled {
    background-color: #d10a0a !important;
    border-color: #e90f0f !important;
    color: white !important;
    cursor: not-allowed;
    opacity: 1;
}

.payment-icon-checkout {
    width: 25%;
    height: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.payment-icon-checkout:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.payment-icon {
    width: 10%;
    height: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}


.payment-icon:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}


.form-card {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9));
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgb(254, 216, 0);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* .form-card:hover {
            border-top: 0.1rem solid #fed800;
            border-bottom: 0.1rem solid #fed800;
        } */


.dataTables_paginate .paginate_button {
    background-color: #fed800 !important;
    color: #000 !important;
    border-radius: 5px !important;
    padding: 6px 12px !important;
    margin: 2px;
}

.dataTables_paginate .paginate_button:hover {
    background-color: #fed800b2 !important;
    color: #000 !important;
}

.divider {
    display: flex;
    align-items: center;
    margin: 2rem 0;
    color: gray;
    font-size: 0.9rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 215, 0, 0.25);
}

.divider::before {
    margin-right: 1.5rem;
}

.divider::after {
    margin-left: 1.5rem;
}

.form-control-new {
    background: rgba(10, 10, 20, 0.5) !important;
    color: rgb(245, 245, 245) !important;
    padding: 0.85rem 1.25rem;
    border-radius: 10px !important;
    transition: all 0.3s;
    font-size: 1rem;
}

.form-control-new::placeholder {
    color: #ffc107 !important;
    opacity: 0.8;
}

.form-control-new:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25) !important;
    border-color: #ffc107 !important;
    background: rgba(15, 15, 25, 0.7) !important;
    color: lightgray !important;
}

.input-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffc107;
    font-size: 1.1rem;
}

/* === SWEETALERT2 ELITE THEME CSS === */
/* Container Principal */
div:where(.swal2-container) div:where(.swal2-popup) {
    background: rgba(15, 15, 15, 0.925) !important;
    backdrop-filter: blur(5px) !important;
    border: 1px solid #ffc10725 !important;
    border-radius: 12px !important;
    color: #ffffff !important;
    width: 600px !important;
    max-width: 95% !important;
}

/* Títulos */
div:where(.swal2-container) h2:where(.swal2-title) {
    font-weight: 800 !important;
    text-transform: uppercase !important; 
    color: #fff !important;
    letter-spacing: 1px !important;
}

/* Conteúdo HTML */
div:where(.swal2-container) div:where(.swal2-html-container) {
    color: #ffffff !important;
    font-size: 1rem !important;
}

/* Botão Confirmar (Dourado) */
div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm {
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    border-radius: 5px !important;
    padding: 12px 30px !important;
    font-size: 1.1rem !important;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm:hover {
    background-color: #f8c322 !important;
     font-size: 1.2rem !important;
    color: #ffffff !important;

}

/* Botão Cancelar (Outline) */
div:where(.swal2-container) button:where(.swal2-styled).swal2-cancel {
    background-color: transparent !important;
    border: 1px solid #e22323 !important;
    color: #ffffff !important;

    font-weight: 700 !important;
    text-transform: uppercase !important;
    border-radius: 4px !important;
    padding: 12px 20px !important;
    font-size: 1rem !important;
    transition: 0.3s !important;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-cancel:hover {
    border-color: #971313 !important;
    color: #ffffff !important;
}

/* Ícones Customizados */
div:where(.swal2-icon).swal2-success {
    border-color: #ffc107 !important;
    color: #ffc107 !important;
}

div:where(.swal2-icon).swal2-success [class^=swal2-success-line] {
    background-color: #ffc107 !important;
}



div:where(.swal2-icon).swal2-success .swal2-success-ring {
    border: .25em solid rgba(255, 193, 7, 0.3) !important;
}

.swal2-success-circular-line-left,
.swal2-success-circular-line-right,
.swal2-success-fix {
    background-color: transparent !important;
}


@keyframes fadeInPop {
    from {
        opacity: 0;
        transform: scale(0.96);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.swal-toast {
    max-width: 500px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px !important;
}

.swal-toast-title {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: black !important;
}

.swal-toast-message {
    font-size: 14px !important;
    color: black !important;
    margin-top: 4px;
}

/* Section */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-weight: bold;
    font-size: 2.2rem;
    background: linear-gradient(to right, #FFD700, #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

/* Discord */
.discord-badge {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    width: 248px;
    height: 60px;
    background: #FFD700;
    border-radius: 4px;
    box-shadow: 0 0 5px gray;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: right 0.3s;
    font-family: sans-serif;
    overflow: hidden;
}

.discord-badge a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000000;
    width: 100%;
    padding: 10px;
}

.discord-badge img {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.discord-badge span {
    font-size: 14px;
    font-weight: bold;
}

.discord-badge {
    right: -186px;
}

.discord-badge:hover {
    right: 14px;
}


.user-pill {
    background: #151515;
    border-radius: 50px;
    padding: 4px 15px 4px 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #e0e0e0;
}

.user-pill-normal {
    border: 1px solid #ffca2c;
}

.user-pill-normal:hover {
    color: #ffca2c;
}

.user-pill-premium {
    border: 1px solid #F47FFF !important;
}

.user-pill-premium:hover {
    color: #F47FFF !important;
}


/* .user-pill:hover,
.user-pill.show {
    border-color: #ffca2c;
    background: #222;
    color: #fff;
} */

/* Avatar Decoration Styles (Discord Style) */
.user-avatar-container {
    position: relative;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-avatar-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.user-avatar-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    /* Glow effect on the decoration */
    filter: drop-shadow(0 0 3px rgba(255, 193, 7, 0.6));
}

.user-name {
    font-weight: 700;
    font-size: 0.95rem;
}

/*New*/

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background: #111;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1055;
    /* Maior que o Discord Badge */
}

.cart-sidebar.show {
    transform: translateX(0);
}

.cart-header,
.cart-footer {
    padding: 1rem;
    border-bottom: 1px solid #333;
}

.cart-footer {
    border-top: 1px solid #333;
    border-bottom: none;
}

.cart-body {
    padding: 1rem;
    height: calc(100% - 160px);
    overflow-y: auto;
}

/* .spoiler {
    background-color: #444;
    color: transparent;
    border-radius: 3px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.spoiler:hover {
    color: #fff;
} */


.btn-lr {
    padding: 1rem;
    border-radius: 10px;
    width: 100%;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-lr:not(:first-child) {
    margin-top: 1rem;
}

.system-alert {
    max-width: 350px;
    padding: 0;
    margin-top: 10px;
}

.system-alert+.system-alert {
    bottom: auto !important;
}

.loading-spinner {
    width: 100%;
    height: 120px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: url('/static/upload/default_load.gif') center center no-repeat;
    background-size: 60px;
}


/* Novos buttons v1 */
.btn-elite-v1 {
    background-color: #ffca2c;
    ;
    color: #000;
    font-weight: 700;
    border: none;
    padding: 0.6rem 1.5rem;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    transition: all 0.3s ease;
}

.btn-elite-v1:hover {
    background-color: #ffca2c;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
    color: #000;
}


/* Professional Footer */
footer {
    background: linear-gradient(180deg, #0b0b0b 0%, #000000 100%);
    border-top: 1px solid rgba(255, 193, 7, 0.1);
    padding-top: 80px;
    margin-top: auto;
    position: relative;
}

/* Top Glow Line on Footer */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffca2c, transparent);
    opacity: 0.5;
}

.footer-logo {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
}

.footer-logo span {
    color: #ffca2c;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: 0.3s;
    text-decoration: none;
}

.social-link:hover {
    background-color: #ffca2c;
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
    border-color: #ffca2c;
}

.footer-links h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffca2c;
    transform: translateX(5px);
}

/* Newsletter in Footer */
.footer-newsletter input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    color: #fff;
    border-radius: 4px 0 0 4px;
    padding: 10px 15px;
}

.footer-newsletter input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffca2c;
    box-shadow: none;
    color: #fff;
}

.footer-newsletter button {
    background: #ffca2c;
    color: #000;
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 0 20px;
    font-weight: 700;
    transition: 0.3s;
}

.footer-newsletter button:hover {
    background: #fff;
}

.payment-icons {
    display: flex;
    gap: 15px;
    font-size: 2rem;
    color: #666;
    margin-bottom: 20px;
}

.payment-icons i {
    transition: 0.3s;
}

.payment-icons i:hover {
    color: #fff;
}

.copyright-text {
    border-top: 1px solid #222;
    margin-top: 40px;
    padding-top: 25px;
    color: #666;
    font-size: 0.85rem;
}


/* Partner Toast (Banner) Styles - Enhanced Design */
.partner-toast {
    position: fixed;
    bottom: 30px;
    left: 30px;
    /* Opposite of Discord button */
    background: rgba(12, 12, 12, 0.9);
    /* Darker, slightly transparent */
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 12px;
    padding: 15px 20px 15px 20px;
    color: #fff;
    z-index: 9999;
    display: none;
    /* Hidden by default */

    max-width: 340px;
    overflow: hidden;
}

/* Decorative glowing line on the left */
.partner-toast::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #ffca2c, transparent);

}

.partner-toast-content {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.partner-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #222, #111);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffca2c;
    border: 2px solid rgba(255, 193, 7, 0.4);
    font-size: 1.4rem;
    position: relative;

    flex-shrink: 0;
}

.partner-text {
    display: flex;
    flex-direction: column;
}

.partner-text h6 {
    margin: 0;
    font-size: 0.75rem;
    color: #aaa;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.partner-text strong {
    color: #fff;

    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.2);
}

.btn-close-partner {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #666;
    font-size: 0.7rem;
    cursor: pointer;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
}

.btn-close-partner:hover {
    background-color: rgba(220, 53, 69, 0.2);
    color: #fff;
    border-color: rgba(220, 53, 69, 0.4);
}

@keyframes slideInLeft {
    from {
        transform: translateX(-120%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}


/* === COOKIE ALERT BAR === */
.cookie-alert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111;
    border-top: 1px solid #ffca2c;
    padding: 15px 20px;
    z-index: 10000;

    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.cookie-text {
    color: #ccc;
    font-size: 0.9rem;
    flex: 1;
    min-width: 300px;
}

.cookie-text a {
    color: #ffca2c;
    text-decoration: none;
    font-weight: 600;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-btn {
    background-color: #ffca2c;
    color: #000;
    border: none;
    padding: 8px 25px;

    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}

.cookie-btn:hover {
    background-color: #fff;
    transform: translateY(-2px);
}