:root {
    --tblr-font-sans-serif: 'Inter', -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif;
}

body {
    font-feature-settings: "cv03", "cv04", "cv11";
    background-color: var(--body-bg);
    font-family: Poppins, sans-serif;
}

.card {
    --tblr-card-border-radius: 0.5rem;
    background-color: var(--main-bg-2);
    border-color: var(--main-bg-2);
    box-shadow: none !important;
}

.markdown > table thead th, .table thead th {
    background-color: var(--main-bg-2);
}

[x-cloak] {
    display: none !important;
}

.section {
    margin: 3rem 0;
}

.border-input {
    border-color: #dadfe5 !important;
}

.card-header {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.fs-100 {
    font-size: 100%;
}

.primary {
    color: var(--primary);
    transition: 150ms;
}

.primary:hover {
    color: var(--primary);
    filter: brightness(0.8);
    transition: 150ms;
}

a:hover {
    text-decoration: none;
}

.alert-success {
    color: #fff;
    background-color: var(--tblr-success) !important;
}

.alert-danger {
    color: #fff;
    background-color: var(--tblr-danger) !important;
}

.alert-warning {
    color: #fff;
    background-color: var(--tblr-warning) !important;
}

.alert-info {
    color: #fff;
    background-color: var(--tblr-info) !important;
}

.widget-title {
    color: inherit;
    margin-bottom: 0.5rem;
}

.widget-link {
    --tblr-text-opacity: 1;
    color: rgba(var(--tblr-muted-rgb), var(--tblr-text-opacity)) !important;
}

[data-bs-theme=dark] .widget-link {
    color: rgba(255, 255, 255, 0.5) !important;
}

.widget-link:hover {
    text-decoration: none;
    color: inherit !important;
}

.footer {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a, #2d2d2d);
    color: #ffffff;
    padding: 1.5rem 0 1rem 0;
    margin-top: 3rem;
    border-top: 4px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Small Logo in Footer Bottom */
.footer-logo-small {
    display: flex;
    align-items: center;
    order: 1;
    flex: 0 0 auto;
}

.footer-logo {
    max-height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(124, 58, 237, 0.3));
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

/* Footer Cards Row */
.footer-cards-row {
    display: flex;
    align-items: stretch;
}

/* Footer Sections */
.footer-section {
    padding: 0 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.footer-section:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(124, 58, 237, 0.3);
}

.footer-title {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.footer-title i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.footer-description {
    margin-bottom: 1rem;
}

.footer-description p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.server-ip-display {
    background: linear-gradient(135deg, var(--primary), rgba(124, 58, 237, 0.8));
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.server-ip-display .highlight {
    color: #ffffff !important;
}

.footer-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    background: rgba(124, 58, 237, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(124, 58, 237, 0.2);
    transform: translateY(-2px);
}

.feature-item i {
    color: var(--primary);
    margin-right: 0.5rem;
    font-size: 1rem;
}

.feature-item span {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #ffc107;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.footer-disclaimer:hover {
    background: rgba(255, 193, 7, 0.2);
    transform: translateY(-2px);
}

.footer-disclaimer i {
    color: #ffc107;
    font-size: 1rem;
}

.footer-disclaimer .highlight {
    color: #ffc107;
    font-weight: 600;
}

/* Company Info */
.company-info {
    margin-bottom: 1rem;
}

.company-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    padding: 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary);
    transition: all 0.3s ease;
}

.company-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.company-item i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-right: 1rem;
    min-width: 20px;
}

.company-details {
    display: flex;
    flex-direction: column;
}

.company-label {
    color: #cccccc;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}

.company-value {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
}

.footer-disclaimer {
    margin-top: 1rem;
    padding: 0.8rem;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 8px;
    border-left: 3px solid #ffc107;
}

.footer-disclaimer p {
    color: #ffc107;
    font-size: 0.9rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.footer-disclaimer i {
    margin-right: 0.5rem;
}

.highlight {
    color: var(--primary);
    font-weight: 600;
}

.footer-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin: 2rem 0 1.5rem 0;
    border-radius: 1px;
}

.footer-bottom-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin: 1rem 0;
    width: 100%;
    position: relative;
}

/* Ensure all footer cards are side by side on larger screens */
.footer-bottom-cards > * {
    flex: 0 0 auto;
    min-width: fit-content;
}

.edited-by {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    border: 1px solid rgba(124, 58, 237, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.edited-by:hover {
    background: rgba(124, 58, 237, 0.2);
    transform: translateY(-2px);
    text-decoration: none;
    color: inherit;
}

.edited-text {
    color: #cccccc;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.disclaimer-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 193, 7, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #ffc107;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.disclaimer-card:hover {
    background: rgba(255, 193, 7, 0.2);
    transform: translateY(-2px);
}







/* Powered by LeaderOS Button - Subtle Version */
.powered-by-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 170, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    border: 1px solid rgba(0, 170, 255, 0.3);
    color: #00aaff;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}


/* Hover effects */
.powered-by-card:hover {
    background: rgba(0, 170, 255, 0.2);
    transform: translateY(-2px);
    text-decoration: none;
    color: #00aaff;
}

/* Text styling */
.powered-text {
    color: #00aaff;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    display: inline;
    background: transparent;
    border: none;
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.powered-text .highlight {
    color: #00aaff;
    font-weight: 600;
}

.powered-by-card:hover .powered-text {
    color: #00aaff;
}

.powered-by-card:hover .powered-text .highlight {
    color: #00aaff;
}

.theme-credit-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    border: 1px solid rgba(124, 58, 237, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.theme-credit-card:hover {
    background: rgba(124, 58, 237, 0.2);
    transform: translateY(-2px);
    text-decoration: none;
    color: inherit;
}

.theme-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.theme-link:hover {
    color: var(--primary);
    text-decoration: none;
}

/* Responsive Design */

/* Large screens - all cards side by side */
@media (min-width: 1200px) {
    .footer-bottom-cards {
        flex-wrap: nowrap;
        gap: 0.8rem;
        justify-content: center;
        align-items: center;
    }
    
    .footer-bottom-cards > * {
        flex: 0 0 auto;
        min-width: fit-content;
    }
    
    .footer-logo-small {
        order: 0;
        margin-right: 1rem;
    }
}

/* Medium screens - 2 rows */
@media (max-width: 1199px) and (min-width: 992px) {
    .footer-bottom-cards {
        flex-wrap: wrap;
        gap: 0.8rem;
        justify-content: space-between;
    }
    
    .footer-bottom-cards > * {
        flex: 0 0 calc(50% - 0.4rem);
        margin-bottom: 0.8rem;
        min-width: 0;
        max-width: calc(50% - 0.4rem);
    }
}

/* Small screens - 2-3 per row */
@media (max-width: 991px) and (min-width: 769px) {
    .footer-bottom-cards {
        flex-wrap: wrap;
        gap: 0.6rem;
        justify-content: center;
    }
    
    .footer-bottom-cards > * {
        flex: 0 0 calc(33.333% - 0.4rem);
        margin-bottom: 0.6rem;
        min-width: 0;
        max-width: calc(33.333% - 0.4rem);
    }
}

/* Mobile screens - stacked */
@media (max-width: 768px) {
    .footer {
        padding: 1rem 0 0.5rem 0;
    }
    
    .footer-logo {
        max-height: 40px;
    }
    
    .footer-cards-row {
        flex-direction: column;
    }
    
    .footer-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .footer-section {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .footer-features {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .company-item {
        padding: 0.6rem;
    }
    
    .footer-bottom-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
        align-items: center;
        justify-items: center;
        margin: 1rem 0;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-logo-small {
        grid-column: 1 / -1;
        order: -1;
        margin-bottom: 0.5rem;
    }
    
    .edited-by,
    .powered-by-card,
    .theme-credit-card {
        padding: 0.6rem 0.8rem;
        font-size: 0.75rem;
        width: 100%;
        max-width: 100%;
        text-align: center;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    /* Ensure all buttons are visible */
    .footer-bottom-cards > * {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .footer-bottom-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        align-items: center;
        justify-items: center;
        margin: 1rem 0;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-logo-small {
        grid-column: 1 / -1;
        order: -1;
        margin-bottom: 0.5rem;
    }
    
    .edited-by,
    .powered-by-card,
    .theme-credit-card {
        padding: 0.5rem 0.6rem;
        font-size: 0.7rem;
        width: 100%;
        max-width: 100%;
        text-align: center;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    /* Ensure all buttons are visible */
    .footer-bottom-cards > * {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

ul {
    padding: 0;
    margin: 0;
}

/* Gaming Countdown Mini - Header Version */
.gaming-countdown-mini {
    margin-top: 0.8rem;
    width: 100%;
    max-width: 400px;
}

.gaming-countdown-mini-container {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(168, 85, 247, 0.1) 50%, rgba(124, 58, 237, 0.15) 100%);
    border: 2px solid rgba(124, 58, 237, 0.4);
    border-radius: 15px;
    padding: 0.8rem 1rem;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 6px 24px rgba(124, 58, 237, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    position: relative;
    overflow: hidden;
}

.gaming-countdown-mini-title {
    font-size: 1.2rem;
    color: #ff6b35;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.8);
    background: linear-gradient(45deg, #ff6b35, #ff8c42, #ffa726);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    line-height: 1;
}

.gaming-countdown-mini-title i {
    font-size: 1.1rem;
    color: #ff6b35;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.8);
    vertical-align: middle;
    margin-right: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gaming-countdown-mini-container:hover {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(168, 85, 247, 0.15) 50%, rgba(124, 58, 237, 0.2) 100%);
    border-color: rgba(124, 58, 237, 0.6);
    box-shadow: 
        0 12px 40px rgba(124, 58, 237, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.02);
}

.gaming-countdown-mini-title {
    color: #ff6b35;
    font-size: 1.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.6rem;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.8);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gaming-countdown-mini-timer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.mini-tick-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.mini-tick-group::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, rgba(124, 58, 237, 0.1), rgba(168, 85, 247, 0.1));
    border-radius: 8px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mini-tick-group:hover::before {
    opacity: 1;
}

.mini-tick-value {
    background: linear-gradient(135deg, #4c1d95 0%, #6d28d9 50%, #4c1d95 100%);
    border: 1px solid #8b5cf6;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    padding: 0.4rem 0.6rem;
    min-width: 2.5rem;
    box-shadow: 
        0 0 10px rgba(139, 92, 246, 0.3),
        inset 0 0 10px rgba(255, 255, 255, 0.1);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-tick-group:hover .mini-tick-value {
    transform: scale(1.05);
    box-shadow: 
        0 0 15px rgba(139, 92, 246, 0.5),
        inset 0 0 15px rgba(255, 255, 255, 0.2);
}

.mini-tick-label {
    color: #c084fc;
    font-size: 0.65rem;
    font-weight: 600;
    text-align: center;
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 0 5px rgba(192, 132, 252, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pulse animation for active mini digits */
.mini-tick-group.active .mini-tick-value {
    animation: miniDigitPulse 0.6s ease-in-out;
}

@keyframes miniDigitPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Gaming Night Active Status */
.gaming-active-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.8rem;
    height: 100%;
    min-height: 60px;
    position: relative;
}

.gaming-active-status::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 20px;
    z-index: -1;
    animation: backgroundPulse 3s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0% { opacity: 0.3; }
    50% { opacity: 0.6; }
    100% { opacity: 0.3; }
}


.gaming-active-header {
    font-size: 0.8rem;
    color: #c084fc;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-shadow: 0 0 10px rgba(192, 132, 252, 0.5);
    background: linear-gradient(135deg, #c084fc 0%, #a855f7 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

.gaming-active-icon {
    font-size: 1.5rem;
    color: #ff6b35;
    margin-bottom: 0.5rem;
    animation: flamePulse 1.5s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.6));
}

@keyframes flamePulse {
    0% { transform: scale(1); color: #ff6b35; }
    50% { transform: scale(1.1); color: #ff8c42; }
    100% { transform: scale(1); color: #ff6b35; }
}

.gaming-active-text {
    font-size: 1.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
    animation: textGlow 2s ease-in-out infinite alternate;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.8);
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.6));
    letter-spacing: 1.5px;
}

@keyframes textGlow {
    0% { text-shadow: 0 0 10px rgba(255, 107, 53, 0.6); }
    100% { text-shadow: 0 0 20px rgba(255, 107, 53, 0.9); }
}

.gaming-active-subtitle {
    font-size: 0.7rem;
    color: #e0e7ff;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(224, 231, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: linear-gradient(135deg, #e0e7ff 0%, #c084fc 50%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

/* Active status hover effect */
.gaming-countdown-mini-container:hover .gaming-active-icon {
    animation-duration: 0.8s;
}

/* SweetAlert2 Custom Styling for IP Copy Notification */
.swal2-container {
    z-index: 99999 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(5px) !important;
}

.swal2-popup {
    z-index: 100000 !important;
    position: relative !important;
    margin: 0 !important;
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b69 50%, #1a0b2e 100%) !important;
    border: 2px solid rgba(124, 58, 237, 0.8) !important;
    border-radius: 20px !important;
    box-shadow: 
        0 20px 60px rgba(124, 58, 237, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px) !important;
    padding: 2rem !important;
    max-width: 400px !important;
    width: 90% !important;
}

.swal2-title {
    color: #c084fc !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    text-align: center !important;
    text-shadow: 0 0 10px rgba(192, 132, 252, 0.5) !important;
    background: linear-gradient(135deg, #c084fc 0%, #a855f7 50%, #c084fc 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.swal2-html-container {
    color: #e0e7ff !important;
    font-size: 1.1rem !important;
    text-align: center !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.5 !important;
}

.swal2-actions {
    margin: 0 !important;
    justify-content: center !important;
}

.swal2-confirm {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #7c3aed 100%) !important;
    border: none !important;
    border-radius: 12px !important;
    color: white !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    padding: 0.75rem 2rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.swal2-confirm:hover {
    background: linear-gradient(135deg, #8b5cf6 0%, #c084fc 50%, #8b5cf6 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4) !important;
}

.swal2-confirm:active {
    transform: translateY(0) !important;
}

/* Remove default SweetAlert2 styles that might interfere */
.swal2-popup .swal2-icon {
    display: none !important;
}

.swal2-popup .swal2-close {
    display: none !important;
}

/* Sliding Copy Notification - Force to top */
body .copy-notification {
    position: fixed !important;
    top: 20px !important;
    right: -400px !important;
    z-index: 9999999 !important;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #8b5cf6 100%) !important;
    border: 2px solid rgba(124, 58, 237, 0.8) !important;
    border-radius: 15px !important;
    padding: 1rem 1.5rem !important;
    box-shadow: 
        0 10px 30px rgba(124, 58, 237, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(15px) !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    min-width: 300px !important;
    max-width: 400px !important;
    transform: translateX(0) !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    animation: slideInFromRight 0.5s ease-out forwards !important;
    margin: 0 !important;
    padding: 0 !important;
    pointer-events: auto !important;
    left: auto !important;
    bottom: auto !important;
    width: auto !important;
    height: auto !important;
}

body .copy-notification.show {
    right: 20px !important;
    top: 20px !important;
    position: fixed !important;
    z-index: 9999999 !important;
    animation: slideInFromRight 0.5s ease-out forwards !important;
}

body .copy-notification.hide {
    right: -400px !important;
    top: 20px !important;
    position: fixed !important;
    z-index: 9999999 !important;
    animation: slideOutToRight 0.3s ease-in forwards !important;
}

.copy-notification-icon {
    font-size: 1.5rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    animation: iconPulse 1s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.copy-notification-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.copy-notification-title {
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
}

.copy-notification-message {
    color: #ffffff !important;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0;
    opacity: 0.9;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

@keyframes slideInFromRight {
    0% {
        right: -400px;
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        right: 20px;
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutToRight {
    0% {
        right: 20px;
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        right: -400px;
        opacity: 0;
        transform: translateX(100px);
    }
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
    50% {
        transform: scale(1.1);
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    }
    100% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .copy-notification {
        top: 10px;
        right: -350px;
        min-width: 280px;
        max-width: 350px;
        padding: 0.8rem 1.2rem;
    }
    
    .copy-notification.show {
        right: 10px;
    }
    
    .copy-notification.hide {
        right: -350px;
    }
}

.gaming-countdown-mini-container:hover .gaming-active-text {
    color: #ff8c42;
    transform: scale(1.05);
}

/* Responsive design for mini countdown */
@media (max-width: 768px) {
    .gaming-countdown-mini {
        max-width: 350px;
    }
    
    .gaming-countdown-mini-container {
        padding: 0.6rem 0.8rem;
    }
    
    .gaming-countdown-mini-title {
        font-size: 1rem;
    }
    
    .gaming-countdown-mini-title i {
        font-size: 0.9rem;
    }
    
    .mini-tick-value {
        font-size: 1rem;
        padding: 0.3rem 0.5rem;
        min-width: 2rem;
    }
    
    .mini-tick-label {
        font-size: 0.6rem;
    }
    
    .gaming-active-icon {
        font-size: 1.8rem;
    }
    
    .gaming-active-text {
        font-size: 1.2rem;
    }
    
    .gaming-active-subtitle {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .gaming-countdown-mini {
        max-width: 300px;
    }
    
    .gaming-countdown-mini-title {
        font-size: 0.9rem;
    }
    
    .gaming-countdown-mini-title i {
        font-size: 0.8rem;
    }
    
    .gaming-countdown-mini-timer {
        gap: 0.3rem;
    }
    
    .mini-tick-value {
        font-size: 0.9rem;
        padding: 0.25rem 0.4rem;
        min-width: 1.8rem;
    }
    
    .mini-tick-label {
        font-size: 0.55rem;
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.fade-in {
    transform: translateY(30px);
}

.animate-on-scroll.slide-left {
    transform: translateX(-50px);
}

.animate-on-scroll.slide-right {
    transform: translateX(50px);
}

.animate-on-scroll.scale-in {
    transform: scale(0.8);
}

.animate-on-scroll.scale-in.animated {
    transform: scale(1);
}

/* Staggered Animation Delays */
.animate-on-scroll.delay-1 {
    transition-delay: 0.1s;
}

.animate-on-scroll.delay-2 {
    transition-delay: 0.2s;
}

.animate-on-scroll.delay-3 {
    transition-delay: 0.3s;
}

.animate-on-scroll.delay-4 {
    transition-delay: 0.4s;
}

.animate-on-scroll.delay-5 {
    transition-delay: 0.5s;
}

/* Special Animations for Cards */
.card-animate {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-animate.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Button Animations */
.btn-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
}

.btn-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Text Animations */
.text-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.text-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Logo Animation */
.logo-animate {
    opacity: 0;
    transform: scale(0.8) translateY(-20px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.logo-animate.animated {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Footer Animation */
.footer-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.footer-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

/* News Section Animations */
.news-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

.news-card-animate {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news-card-animate.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Player List Animations */
.player-list-animate {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease-out;
}

.player-list-animate.animated {
    opacity: 1;
    transform: translateX(0);
}

.player-profile-animate {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease-out;
}

.player-profile-animate.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Discord Section Animations */
.discord-animate {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.discord-animate.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* General Page Content Animations */
.page-content-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.page-content-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Widget Animations */
.widget-animate {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.5s ease-out;
}

.widget-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Section Title Animations */
.section-title-animate {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.6s ease-out;
}

.section-title-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

ul li {
    list-style: none;
}

/* Body Loading Fix */
body {
    opacity: 1 !important;
}

body.loaded {
    opacity: 1;
}

.breadcrumb {
    background-color: var(--main-bg-2);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--main-bg-2) !important;
    margin-bottom: 0.75rem;
}

.breadcrumb-item a {
    color: inherit;
}

.breadcrumb-item.active {
    --tblr-text-opacity: 1;
    font-weight: normal;
    color: rgba(var(--tblr-muted-rgb), var(--tblr-text-opacity)) !important;
}

[data-bs-theme=dark] .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.5) !important;
}

.dropdown-item:hover, .dropdown-item:focus, .dropdown-item:active {
    color: var(--primary) !important;
    text-decoration: none;
    background-color: var(--body-bg);
    border-radius: 9px;
}

[data-bs-theme=dark] .dropdown-item.active, .dropdown-item:active,
[data-bs-theme=dark] .dropdown-item:hover {
    color: #fff;
}

[data-bs-theme=dark] .text-muted {
    color: rgba(255, 255, 255, 0.5) !important;
}

.btn-transparent {
    background-color: transparent;
    border-color: transparent !important;
    box-shadow: none;
    color: inherit;
}

@media (min-width: 768px) {
    .navbar-expand-md .nav-item:hover {
        position: relative;
    }
}

.ti {
    font-size: 20px;
}

.page-center {
    justify-content: center;
}

.card-header .ck-content p:last-child,
.card-body .ck-content p:last-child {
    margin-bottom: 0;
}

.superWheel .sWheel-inner {
    background-color: #d2a100;
    border-radius: 100%;
}

.input-group.input-icon {
    margin-left: 1px;
}

.input-group.input-icon .input-icon-addon {
    z-index: 6;
}

.input-group.input-icon .form-control {
    height: calc(2.25rem + 2px);
}

.table a:not(.btn) {
    color: inherit;
}

.table a:hover {
    text-decoration: none;
}

.btn-group-sm > .btn, .btn-sm {
    --tblr-btn-line-height: 1.625;
    --tblr-btn-icon-size: 0.813rem;
}

tbody td {
    vertical-align: middle;
}

.btn-icon .ti {
    font-size: 1rem;
}

.bg-surface {
    background-color: var(--main-bg-2);
}

.card-product .stock {
    position: absolute;
    top: -.75rem;
    left: -0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    padding: .325rem .625rem;
    font-size: 90%;
    color: #ffffff;
    border-radius: .375rem;
    z-index: 2;
}

.card-product .stock.stock-sm {
    top: -0.5rem;
    left: -0.5rem;
    font-size: 85%;
    padding: .25rem .5rem;
}

.card-product .stock.have-stock {
    background-color: #fb6340;
}

.card-product .stock.stock-out {
    background-color: #f5365c;
}

.card-product .discount {
    position: absolute;
    top: -1.25rem;
    right: -0.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    font-weight: 600;
    color: #ffffff;
    background-color: var(--secondary);
    border-radius: 50%;
    z-index: 2;
}

.card-product .discount.discount-sm {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 90%;
    font-weight: 600;
    top: -0.75rem;
    right: -0.5rem;
}


.card-product .price {
    font-size: 1.125rem;
    font-weight: 600;
}

.card-product .old-price {
    font-size: 80%;
    font-weight: 700;
    color: #f5365c;
    text-decoration: line-through;
}

.card-product {
    height: 100%;
}

.card-product .card-img-top {
    height: auto;
}

.card-product .card-body {
    display: flex;
    flex-direction: column;
    position: initial;
}

.border-bottom-separator > * {
    padding-top: .875rem;
    padding-bottom: .875rem;
    border-bottom: 1px solid var(--tblr-border-color) !important;
}

.border-bottom-separator > *:last-child {
    border-bottom: 0 !important;
}

.no-underline:hover {
    text-decoration: none;
}

.icon-sm {
    font-size: 1rem !important;
}

.card-img-right {
    border-radius: var(--tblr-card-border-radius) var(--tblr-card-border-radius) 0 0;
    object-fit: cover;
    object-position: center;
}
@media (max-width:992px) {
    .footer {
        width: 95% !important;
    }
    .btn-donor {
        margin-bottom:1rem;
    }
}
@media (min-width: 992px) {
    .home-slider .carousel-inner, .home-slider .carousel-item {
        height: 400px;
        overflow: hidden;
    }

    .home-slider .carousel-item img {
        height: 400px;
        object-fit: cover;
        overflow: hidden;
    }
}

/* BROADCAST */
.broadcast {
    width: 100%;
    height: 44px;
    background-color: var(--main-bg-2);
    overflow: hidden;
}

.broadcast-item {
    display: inline-block;
    padding: 10px 600px 10px 0;
}

@media (max-width: 768px) {
    .broadcast-item {
        padding-right: 400px;
    }
}

.broadcast-link {
    color: var(--tblr-body-color);
}

.shopping-cart-count-circle {
    width: 18px;
    height: 18px;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    border-radius: 50%;
    font-size: 80%;
    background-color: var(--tblr-primary);
    color: #fff;
}

/*NAV-TABS*/
.nav-tabs {
    margin-bottom: 0;
}

.nav-tabs .nav-link {
    display: block;
    text-align: center;
    padding: 1rem;
    font-weight: 500;
    color: var(--tblr-body-color);
    border: 0;
    border-radius: 0;
    border-bottom: 2px solid var(--body-bg);
}

.nav-tabs .nav-link:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.nav-tabs .nav-link:first-child {
    border-top-left-radius: 10px;
}

.nav-tabs .nav-link:last-child {
    border-top-right-radius: 10px;
}

.nav-tabs .nav-link.active {
    border: 0;
    border-bottom: 2px solid var(--tblr-primary);
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: var(--primary);
    border-color: var(--primary);
    background-color: transparent;
}

.btn.disabled, .btn:disabled, fieldset:disabled .btn {
    --tblr-btn-disabled-border-color: var(--tblr-btn-disabled-bg);
}

@media (min-width: 768px) {
    .termsfeed-com---nb .cc-nb-main-container {
        padding: 2rem !important;
    }

    .termsfeed-com---nb-simple {
        bottom: 20px !important;
        right: 20px !important;
        border-radius: 0.625rem !important;
    }
}

.cc-cp-foot-byline {
    visibility: hidden;
}

.cc-pc-head-close:focus {
    border: none !important;
}

.termsfeed-com---palette-dark *:focus {
    box-shadow: none !important;
}

.cc-nb-okagree, .cc-cp-foot-save {
    color: #fff !important;
    background-color: var(--tblr-primary) !important;
}

.btn-link {
    color: rgba(var(--tblr-link-color-rgb), var(--tblr-link-opacity, 1));
}

.btn-link:hover {
    color: rgba(var(--tblr-link-hover-color-rgb), var(--tblr-link-opacity, 1));
}

.role__default {
    display: inline-block;
    justify-content: center;
    align-items: center;
    background: var(--tblr-bg-surface-secondary);
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    min-width: 1.35714285em;
    font-size: 85%;
    font-weight: var(--tblr-font-weight-bold);
    letter-spacing: .04em;
    vertical-align: bottom;
    line-height: 1;
    padding: 0.25rem 0.5rem;
    text-align: center;
    white-space: nowrap;
    border-radius: 0.25rem;
}

.forum-online-users a:hover {
    text-decoration: none;
}

.forum-online-users a:not(:last-child)::after {
    margin-left: -3px;
    content: ",";
    font-size: 90%;
    color: rgb(var(--tblr-body-color-rgb)) !important;
}

.select2-container--bootstrap4 .select2-selection--single {
    height: calc(1.875em + .75rem + 2px) !important;
}

.select2-container--bootstrap4 .select2-selection--single .select2-selection__rendered {
    line-height: calc(1.875em + .75rem);
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 12px;
}

.select2-container--bootstrap4 .select2-selection {
    background-color: var(--input-bg);
    border-color: var(--input-bg);
}

.select2-results__option {
    background-color: var(--input-bg);
}

.select2-results__option:focus {
    background-color: var(--input-bg);
}

.select2-container--bootstrap4 .select2-dropdown {
    border-color: var(--tblr-border-color);
}

/* ckeditor */
.ck-editor__editable {
    min-height: 150px !important;
}

[data-bs-theme=dark] .ck-editor .ck-content {
    background: var(--main-bg-2) !important;
    border-color: var(--tblr-border-color-translucent) !important;
}

[data-bs-theme=dark] .card .ck-editor .ck-content {
    background: var(--body-bg) !important;
    border-color: var(--body-bg) !important;
}

[data-bs-theme=dark] .ck-editor .ck-toolbar {
    background: #171a21 !important;
    border-color: #171a21 !important;
}

[data-bs-theme=dark] .ck-editor .ck-toolbar__items * {
    color: #FFF !important;
}

[data-bs-theme=dark] .ck-editor .ck-button:hover {
    background: #111111 !important;
}

[data-bs-theme=dark] .ck-editor .ck-button:focus {
    background: #111111 !important;
}

[data-bs-theme=dark] .ck-editor .ck-list__item {
    background: #171a21 !important;
    border-color: #171a21 !important;
}

.ck-editor.ck-toolbar {
    border: 1px solid #efefef !important;
}

.header-banner {
    position: relative;
    overflow: hidden;
    height: 750px;
    background-size: cover;
    background-position: center;
}

.header-image {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 330px;
}

.header-image img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.header-banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    color: #fff;
    font-weight: 600;
    height: 750px;
}

@media (max-width: 768px) {
    .header-banner-content {
        width: 100%;
        justify-content: center;
    }
}

.zoom-hover {
    transition: transform .3s;
    transform: scale(1.0);
}

.zoom-hover:hover {
    transform: scale(1.1);
}

.header-banner-logo {
    max-height: calc(var(--logo-size) * 1.5);
    width: auto;
    transition: transform 0.3s ease;
}

.header-side-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: #fff;
}

.header-side-icon svg {
    fill: white;
    width: 30px;
    height: 30px;
}

.navbar {
    z-index: 111111;
    width: 100%;
}

.navbar .nav-item.active .nav-link {
    background-color: var(--primary);
    margin: 0 !important;
    display: flex;
    height: 0 !important;
    padding: 20px 15px !important;
    margin:10px !important;
}

.header-banner-content:before {
    content: "";
    width: 100%;
    height: 300px;
    background: linear-gradient(0deg, var(--primary), black);
    right: 0;
    left: 0;
    margin: auto;
    position: absolute;
    bottom: -3rem;
    filter: blur(100px);
    rotate: 180deg;
    opacity: .8;
}

.navbar .navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #FFF;
    display: inline-block;
    padding: 20px 15px;
    -webkit-transition: .25s;
    -o-transition: .25s;
    transition: .25s;
}
header.navbar {
    padding-top: 1rem;
}
.dropdown-menu {
    background-color: var(--main-bg-2);
    width: 250px;
    padding: .7rem;
    border-radius: 18px;
    font-size: 15px;
}

.navbar .navbar-nav .nav-link i {
    color: var(--primary);
}
.navbar-nav .nav-item:hover .nav-link {
    background: var(--primary) !important;
    padding: 20px 15px !important;
    height: 0;
    display: flex;
}
.navbar-nav .nav-item .nav-link {
    padding: 20px 15px !important;
    height: 0;
    display: flex;
}
.header-subNav {
    z-index: 9999;
    position: relative;
    background: rgba(0, 0, 0, .075);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.header-subNav .p-header-inner {
    height: 75px;
}

.p-header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.p-header-inner {
    max-width: 1200px;
    padding: 0 10px;
    margin: 0 auto;
}

.header-subNav .block.block--ip {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: right;
}

.header-subNav .block {
    width: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-subNav .block.block--ip .block-content {
    cursor: pointer;
}

.header-subNav .block.block--ip .block-content h3 {
    color: var(--primary);
    display: block;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0px;
    font-size: 23px;
    font-weight: 550;
    font-family: Poppins, sans-serif;
}

.header-subNav .block.block--ip .block-content span {
    display: block;
    text-transform: capitalize;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .5);
}

.header-subNav .block.block--logocube {
    width: 209px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}

.header-subNav .block {
    width: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.block {
    position: relative;
    margin: 0;
}

.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--primary-text) !important;
    padding: .7rem 1.3rem;
    border-radius: 500px;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--primary-text) !important;
    border-radius: 500px;
}

.btn-transparent:hover {
    background-color: none !important;
    background: none !important;
    color: var(--primary) !important;
    border-radius: 500px;
}

.login-img-header-bottom {
    width: 128px;
    height: 128px;
    background-size: contain !important;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.login-left-header .hexagon {
    width: 120px;
    height: 138.56px;
    background-color: var(--primary);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    position: relative;
}

.login-left-header .login-img-bottom-skin img {
    width: 150px;
    background-size: cover;
    object-fit: cover;
    position: absolute;
    top: 1.5rem;
}

.non-login-left-header .hexagon {
    width: 120px;
    height: 138.56px;
    background-color: #333;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    position: relative;
    filter: grayscale(1);
}

.non-login-left-header .login-img-bottom-skin img {
    width: 150px;
    background-size: cover;
    object-fit: cover;
    position: absolute;
    top: 1.5rem;
    filter: grayscale(1);
}

.hexagon::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    width: 132px;
    height: 152px;
    background-color: transparent;
    border: 6px solid #666;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: -1;
}

.header-cartAndUser .cartAndUser__cartContainer {
    margin-bottom: auto;
    margin-top: auto;
    position: relative;
    font-family: Poppins, sans-serif;
}

.header-cartAndUser .cartAndUser__cart {
    background: linear-gradient(90deg, #7289da, #7289da);
    -webkit-clip-path: polygon(9% 0, 91% 0, 100% 50%, 91% 100%, 9% 100%, 0 50%);
    clip-path: polygon(9% 0, 91% 0, 100% 50%, 91% 100%, 9% 100%, 0 50%);
    display: inline-block;
    height: 92px;
    padding-bottom: .75rem;
    padding-top: .75rem;
    width: 315px;
}

.header-cartAndUser .cartAndUser__cart:before {
    --tw-bg-opacity: 1;
    background: linear-gradient(174deg, #3f4b7b, #3f4b7b);
    background-color: rgb(219 74 74 / var(--tw-bg-opacity));
    bottom: 0;
    -webkit-clip-path: polygon(8.5% 0, 91.5% 0, 100% 50%, 91.5% 100%, 8.5% 100%, 0 50%);
    clip-path: polygon(8.5% 0, 91.5% 0, 100% 50%, 91.5% 100%, 8.5% 100%, 0 50%);
    content: "";
    display: block;
    height: calc(100% - 10px);
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: calc(100% - 12px);
    z-index: 2;
}

.header-cartAndUser .cartAndUser__cart .cart__diamond-container {
    -webkit-clip-path: polygon(0 0, 77% 0, 100% 50%, 77% 100%, 0 100%);
    clip-path: polygon(0 0, 77% 0, 100% 50%, 77% 100%, 0 100%);
    height: 82px;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    right: 6px;
    top: 5px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.header-cartAndUser .cartAndUser__cart:focus .cart__diamond-container img, .header-cartAndUser .cartAndUser__cart:hover .cart__diamond-container img {
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.header-cartAndUser .cartAndUser__cart .cart__diamond-container img {
    height: 110px;
    position: relative;
    right: -31px;
    top: -10px;
    transition-duration: .2s;
}

.z-99 {
    z-index: 99;
}

.header-cartAndUser .cartAndUser__cartContainer .big span {
    font-size: 16px;
    font-weight: bold;
}

.absolute-header-right {
    position: absolute;
    width: 90px;
    height: 90px;
    z-index: 111;
    right: 25px;
}

button.cartAndUser__cart {
    text-align: start;
    padding-left: 3rem;
}

.footer-selector-line {
    background-color: var(--main-bg-2);
    position: relative;
    height: 2px;
    width: 100%;
}

.absolute-selector-img {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    left: 0;
}

.absolute-selector-img {
    position: absolute;
    width: 20%;
    height: 40px;
    z-index: 1;
    top: -21px;
    left: 11rem;
    border: none !important;
    background: var(--body-bg);
    display: flex;
    justify-content: center;
    object-fit: contain;
    align-items: center;
}

.widget ul > li {
    padding-top: 11px;
    font-size: 15px;
}

.btn-light {
    background-color: var(--main-bg) !important;
    border-color: var(--main-bg-2) !important;
    color: #FFF !important;
}

.news-left-date {
    background: rgba(255, 255, 255, .1);
    width: 57px;
    margin-right: 12px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    padding: 10px 12px;
    border-radius: 3px;
}

.news-info-text {
    color: var(--main-bg-2-muted) !important;
}

.height-news-top {
    min-height: 80px;
    max-height: 80px;
}

.news-desc {
    color: var(--main-bg-2-muted) !important;
    line-height: 1.5;
}

.news-img .card-img {
    min-height: 151px !important;
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.active > .page-link,
.page-link.active {
    z-index: 3;
    color: var(--tblr-pagination-active-color);
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-control {
    color: var(--input-text-color) !important;
    background-color: var(--input-bg) !important;
    border-color: #80aad3;
    outline: 0;
}

.input-group-flat .input-group-text {
    background: var(--input-bg);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn:hover {
    color: var(--tblr-btn-hover-color);
    text-decoration: none;
    background-color: var(--tblr-btn-hover-bg);
    border-color: var(--tblr-btn-hover-border-color);
}

.btn {
    border-radius: 12px !important;
    padding: .7rem !important;
}

.form-check-input:focus {
    border-color: var(--input-bg) !important;
    outline: 0;
    background-color: var(--input-bg) !important;
}

.form-check-input {
    border-color: var(--input-bg) !important;
    outline: 0;
    background-color: var(--input-bg) !important;
}

.card-btn:hover {
    text-decoration: none;
    background: var(--primary);
}

input.select2-search__field {
    background: var(--input-bg) !important;
}

.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice {
    color: #343a40;
    border: 1px solid #bdc6d0;
    border-radius: .2rem;
    padding: 0 5px 0 0;
    cursor: pointer;
    float: left;
    margin-top: .3em;
    margin-right: 5px;
    color: #FFF !important;
}

.bazaar-img-gap {
    min-height: 170px;
    max-height: 170px;
    object-fit: contain;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.chestDecreaseButton {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    vertical-align: middle;
}

.chestIncreaseButton {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    vertical-align: middle;
}

#ariaSearch {
    padding: .55rem !important;
}

[data-bs-theme=dark] .table-header {
    background-color: var(--body-bg) !important;
    border: none;
}

.img-store-in-page {
    width: 100%;
    max-height: 100% !important;
    object-fit: contain;
    border-radius: 12px;
}

.border-primary {
    border-color: var(--primary) !important;
}
.header-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 2px 90px 105px rgb(0 0 0);
    z-index: 1;
}
div#menuCanvas {
    z-index: 9999999;
    background-color: var(--main-bg-2);
    width:300px;
}
.absolute-canvas {
    position: absolute;
    width: 30%;
    opacity: 0.3;
    bottom: 2rem;
    right: 0;
    left: 0;
    margin: auto;
}
.secondary {
    color: var(--secondary);
}
.offcanvas-body .nav-item:hover .nav-link {
    background: transparent !important;
    border-right: 4px solid var(--primary);
    color: var(--primary) !important;
}
.offcanvas-body .nav-item.active .nav-link {
    background: var(--primary) !important;
}
.offcanvas-body button.dropdown-item:hover {
    background: transparent !important;
}
.btn-cart {
    width: 100%;
    height: 50px !important;
    background: var(--primary) !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
}
.btn-cart:focus {
    width: 100%;
    height: 50px !important;
    background: var(--primary) !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
}
.btn-cart:hover {
    width: 100%;
    height: 50px !important;
    background: var(--primary) !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
}
.canvas-col-last {
    display: flex;
    justify-content: end;
    padding-right: 2rem;
}
.modal-backdrop {
    display: none !important;
}
.btn-copy-ip {
    background: linear-gradient(135deg, var(--secondary), rgba(124, 58, 237, 0.8));
    color: #ffffff;
    width: fit-content;
    min-width: 300px;
    padding: 1rem 2rem;
    margin: auto;
    margin-top: 2rem;
    border-radius: 12px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    letter-spacing: 1px;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.btn-copy-ip:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
    filter: brightness(1.1);
}

.btn-player-count {
    background: linear-gradient(135deg, var(--secondary), rgba(124, 58, 237, 0.8));
    color: #ffffff;
    width: fit-content;
    min-width: 200px;
    padding: 0.8rem 1.5rem;
    margin: 0;
    border-radius: 12px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    letter-spacing: 1px;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-player-count:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
    filter: brightness(1.1);
}
.offcanvas-backdrop.show {
    opacity: 0.7 !important;
    background: var(--body-bg) !important;
}
.col-lg-10.news img {
    border-radius: 18px;
}


.primary-text {
    color: var(--primary-text);
}

.bg-secondary-special {
    background-color: var(--secondary);
    color: var(--secondary-text);
}
/*television*/
.main_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30em;
    height: 30em;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 5em;
}

.antenna {
    width: 5em;
    height: 5em;
    border-radius: 50%;
    border: 2px solid black;
    background-color: var(--primary);;
    margin-bottom: -6em;
    margin-left: 0em;
    z-index: -1;
}
.a1 {
    position: relative;
    top: -102%;
    left: -130%;
    width: 12em;
    height: 5.5em;
    border-radius: 50px;
    background-image: linear-gradient(
            #171717,
            #171717,
            #353535,
            #353535,
            #171717
    );
    transform: rotate(-29deg);
    clip-path: polygon(50% 0%, 49% 100%, 52% 100%);
}
.a1d {
    position: relative;
    top: -211%;
    left: -35%;
    transform: rotate(45deg);
    width: 0.5em;
    height: 0.5em;
    border-radius: 50%;
    border: 2px solid black;
    background-color: #979797;
    z-index: 99;
}
.a2 {
    position: relative;
    top: -210%;
    left: -10%;
    width: 12em;
    height: 4em;
    border-radius: 50px;
    background-color: #171717;
    background-image: linear-gradient(
            #171717,
            #171717,
            #353535,
            #353535,
            #171717
    );
    margin-right: 5em;
    clip-path: polygon(
            47% 0,
            47% 0,
            34% 34%,
            54% 25%,
            32% 100%,
            29% 96%,
            49% 32%,
            30% 38%
    );
    transform: rotate(-8deg);
}
.a2d {
    position: relative;
    top: -294%;
    left: 94%;
    width: 0.5em;
    height: 0.5em;
    border-radius: 50%;
    border: 2px solid black;
    background-color: #979797;
    z-index: 99;
}

.notfound_text {
    background-color: black;
    padding-left: 0.3em;
    padding-right: 0.3em;
    font-size: 1.75em;
    color: white;
    letter-spacing: 0;
    border-radius: 5px;
    z-index: 10;
}
.tv {
    width: 17em;
    height: 9em;
    margin-top: 3em;
    border-radius: 15px;
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    border: 2px solid var(--primary);
    box-shadow: inset 0.2em 0.2em var(--primary);
}
.tv::after {
    content: "";
    position: absolute;
    width: 17em;
    height: 9em;
    border-radius: 15px;
    background:
            repeating-radial-gradient(var(--primary), 0 0.0001%, var(--primary), 0 0.0002%) 50% 0/2500px
            2500px,
            repeating-conic-gradient(var(--primary), 0 0.0001%, var(--primary), 0 0.0002%) 60% 60%/2500px
            2500px;
    background-blend-mode: difference;
    opacity: 0.09;
}
.curve_svg {
    position: absolute;
    margin-top: 0.25em;
    margin-left: -0.25em;
    height: 12px;
    width: 12px;
}
.display_div {
    display: flex;
    align-items: center;
    align-self: center;
    justify-content: center;
    border-radius: 15px;
    box-shadow: 3.5px 3.5px 0px var(--primary);;
}
.screen_out {
    width: auto;
    height: auto;

    border-radius: 10px;
}
.screen_out1 {
    width: 11em;
    height: 7.75em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}
.screen {
    width: 13em;
    height: 7.85em;
    font-family: Montserrat;
    border: 2px solid #1d0e01;
    background:
            repeating-radial-gradient(#000 0 0.0001%, #ffffff 0 0.0002%) 50% 0/2500px
            2500px,
            repeating-conic-gradient(#000 0 0.0001%, #ffffff 0 0.0002%) 60% 60%/2500px
            2500px;
    background-blend-mode: difference;
    animation: b 0.2s infinite alternate;
    border-radius: 10px;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #252525;
    letter-spacing: 0.15em;
    text-align: center;
}
@keyframes b {
    100% {
        background-position:
                50% 0,
                60% 50%;
    }
}

/* Another Error Screen to Use

.screen {
  width: 13em;
  height: 7.85em;
  position: relative;
  background: linear-gradient(to right, #002fc6 0%, #002bb2 14.2857142857%, #3a3a3a 14.2857142857%, #303030 28.5714285714%, #ff0afe 28.5714285714%, #f500f4 42.8571428571%, #6c6c6c 42.8571428571%, #626262 57.1428571429%, #0affd9 57.1428571429%, #00f5ce 71.4285714286%, #3a3a3a 71.4285714286%, #303030 85.7142857143%, white 85.7142857143%, #fafafa 100%);
  border-radius: 10px;
  border: 2px solid black;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #252525;
  letter-spacing: 0.15em;
  text-align: center;
  overflow: hidden;
}
.screen:before, .screen:after {
  content: "";
  position: absolute;
  left: 0;
  z-index: 1;
  width: 100%;
}
.screen:before {
  top: 0;
  height: 68.4782608696%;
  background: linear-gradient(to right, white 0%, #fafafa 14.2857142857%, #ffe60a 14.2857142857%, #f5dc00 28.5714285714%, #0affd9 28.5714285714%, #00f5ce 42.8571428571%, #10ea00 42.8571428571%, #0ed600 57.1428571429%, #ff0afe 57.1428571429%, #f500f4 71.4285714286%, #ed0014 71.4285714286%, #d90012 85.7142857143%, #002fc6 85.7142857143%, #002bb2 100%);
}
.screen:after {
  bottom: 0;
  height: 21.7391304348%;
  background: linear-gradient(to right, #006c6b 0%, #005857 16.6666666667%, white 16.6666666667%, #fafafa 33.3333333333%, #001b75 33.3333333333%, #001761 50%, #6c6c6c 50%, #626262 66.6666666667%, #929292 66.6666666667%, #888888 83.3333333333%, #3a3a3a 83.3333333333%, #303030 100%);
}

  */

.lines {
    display: flex;
    column-gap: 0.1em;
    align-self: flex-end;
}
.line1,
.line3 {
    width: 2px;
    height: 0.5em;
    background-color: black;
    border-radius: 25px 25px 0px 0px;
    margin-top: 0.5em;
}
.line2 {
    flex-grow: 1;
    width: 2px;
    height: 1em;
    background-color: black;
    border-radius: 25px 25px 0px 0px;
}

.buttons_div {
    width: 4.25em;
    align-self: center;
    height: 8em;
    background-color: var(--primary);;
    border: 2px solid var(--primary);;
    padding: 0.6em;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 0.75em;
    box-shadow: 3px 3px 0px var(--primary);;
}
.b1 {
    width: 1.65em;
    height: 1.65em;
    border-radius: 50%;
    background-color: #7f5934;
    border: 2px solid black;
    box-shadow:
            inset 2px 2px 1px #b49577,
            -2px 0px #513721,
            -2px 0px 0px 1px black;
}
.b1::before {
    content: "";
    position: absolute;
    margin-top: 1em;
    margin-left: 0.5em;
    transform: rotate(47deg);
    border-radius: 5px;
    width: 0.1em;
    height: 0.4em;
    background-color: #000000;
}
.b1::after {
    content: "";
    position: absolute;
    margin-top: 0.9em;
    margin-left: 0.8em;
    transform: rotate(47deg);
    border-radius: 5px;
    width: 0.1em;
    height: 0.55em;
    background-color: #000000;
}
.b1 div {
    content: "";
    position: absolute;
    margin-top: -0.1em;
    margin-left: 0.65em;
    transform: rotate(45deg);
    width: 0.15em;
    height: 1.5em;
    background-color: #000000;
}
.b2 {
    width: 1.65em;
    height: 1.65em;
    border-radius: 50%;
    background-color: #7f5934;
    border: 2px solid black;
    box-shadow:
            inset 2px 2px 1px #b49577,
            -2px 0px #513721,
            -2px 0px 0px 1px black;
}
.b2::before {
    content: "";
    position: absolute;
    margin-top: 1.05em;
    margin-left: 0.8em;
    transform: rotate(-45deg);
    border-radius: 5px;
    width: 0.15em;
    height: 0.4em;
    background-color: #000000;
}
.b2::after {
    content: "";
    position: absolute;
    margin-top: -0.1em;
    margin-left: 0.65em;
    transform: rotate(-45deg);
    width: 0.15em;
    height: 1.5em;
    background-color: #000000;
}
.speakers {
    display: flex;
    flex-direction: column;
    row-gap: 0.5em;
}
.speakers .g1 {
    display: flex;
    column-gap: 0.25em;
}
.speakers .g1 .g11,
.g12,
.g13 {
    width: 0.65em;
    height: 0.65em;
    border-radius: 50%;
    background-color: #7f5934;
    border: 2px solid black;
    box-shadow: inset 1.25px 1.25px 1px #b49577;
}
.speakers .g {
    width: auto;
    height: 2px;
    background-color: #171717;
}

.bottom {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 8.7em;
}
.base1 {
    height: 1em;
    width: 2em;
    border: 2px solid #171717;
    background-color: #4d4d4d;
    margin-top: -0.15em;
    z-index: -1;
}
.base2 {
    height: 1em;
    width: 2em;
    border: 2px solid #171717;
    background-color: #4d4d4d;
    margin-top: -0.15em;
    z-index: -1;
}
.base3 {
    position: absolute;
    height: 0.15em;
    width: 17.5em;
    background-color: #171717;
    margin-top: 0.8em;
}

.text_404 {
    position: absolute;
    display: flex;
    flex-direction: row;
    column-gap: 6em;
    z-index: -5;
    margin-bottom: 2em;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    font-family: Montserrat;
}
.text_4041 {
    transform: scaleY(24.5) scaleX(9);
}
.text_4042 {
    transform: scaleY(24.5) scaleX(9);
}
.text_4043 {
    transform: scaleY(24.5) scaleX(9);
}
.all-widget-sidebar.position-relative.overflow-hidden {
    background-color: var(--main-bg-2);
    border-radius: 24px;
    padding:1rem;
}
.all-widget-sidebar .donor-img {
    position: absolute;
    right: -5rem;
    top: 0;
	width:35%;
}
.donor-card.card {
    background: var(--input-bg);
    padding: 1rem;
    border-radius: 12px;
}
.donor-card.card .card-title {
    margin: 0rem !important;
}
.donor-card.active {
    background-color: var(--secondary);
    color: var(--secondary-text);
}
.donor-card.active svg {
    background-color: var(--secondary);
    color: var(--secondary-text);
}
.donor-card img {
    border-radius: 500px;
}
.btn-donor {
    border: 2px dashed var(--secondary);
    background-color: transparent;
}
.btn-donor:hover {
    background-color: var(--secondary) !important;
    border: 2px dashed var(--secondary) !important;
    transform: none !important;
    color: var(--secondary-text) !important;
}
.btn-donor:focus {
    background-color: var(--secondary) !important;
    border: 2px dashed var(--secondary) !important;
    transform: none !important;
    color: var(--secondary-text) !important;
}
.btn-donor.active {
    color: var(--secondary-text);
    background-color: var(--secondary);
    border: 2px dashed var(--secondary) !important;
    border: none;
}
.btn-donor {
    border: 2px dashed var(--secondary);
    background-color: transparent;
    display: block;
}
.info-donor {
    padding-right: 7rem;
    padding-top: 3rem;
}
.list-group-item.active {
    background-color: var(--secondary);
    border-left-color: #0054a6;
    border-left-width: 2px;
}
.list-group-item.active a {
    color: var(--secondary-text);
}
.list-group-item a {
    color: var(--primary-text);
}
.nav-tabs {
    border-bottom:none;
}
.profile-card {
    background-color: var(--main-bg) !important;
}
div#account-menu h4 {
    color: var(--main-color);
}
.sidebar-link {
    padding: 6px 12px 10px 26px !important;
}
.card-title {
    font-size: 1.20rem !important;
    margin-bottom: 0 !important;
    font-weight: 500;
}
a.sidebar-link {
    color: var(--main-bg-2-muted) !important;
}
a.sidebar-link.active {
    color: var(--primary) !important;
}
a.sidebar-link:hover {
    color: var(--primary) !important;
}
.change-profile-absolute {
    position: absolute;
    top: -8px;
    right: -20px;
    min-width: 30px;
    min-height: 30px;
    border-radius: 500px;
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor:pointer !important;
}
.change-profile-absolute i {
    cursor: pointer;
}
.bg-body {
    color: var(--primary) !important;
    background-color: transparent !important;
}
.avatar-150px {
    width: 150px;
    height: 150px;
}

/* Style the duplicate Powered by LeaderOS text that appears at bottom */
body > div:last-child {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(0, 50, 100, 0.8) !important;
    border: 2px solid #00aaff !important;
    border-radius: 25px !important;
    padding: 0.8rem 1.2rem !important;
    margin: 1rem auto !important;
    max-width: fit-content !important;
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.3) !important;
    text-align: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    z-index: 1 !important;
}

body > div:last-child * {
    color: #00aaff !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    background: transparent !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

body > div:last-child:hover {
    background: rgba(0, 70, 140, 0.9) !important;
    border-color: #00ccff !important;
    box-shadow: 0 0 20px rgba(0, 170, 255, 0.5) !important;
    transform: translateY(-2px) !important;
}

body > div:last-child:hover * {
    color: #00ccff !important;
}

/* Additional force styling for powered_by_leaderos output */
a.powered-by-card,
a.powered-by-card:visited,
a.powered-by-card:active,
a.powered-by-card:focus {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(0, 50, 100, 0.8) !important;
    padding: 0.8rem 1.2rem !important;
    border-radius: 25px !important;
    border: 2px solid #00aaff !important;
    color: #00aaff !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    cursor: pointer !important;
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.3) !important;
    position: relative !important;
    z-index: 1 !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    line-height: 1.2 !important;
}

/* Override any inline styles */
a.powered-by-card[style] {
    display: inline-flex !important;
    background: rgba(0, 50, 100, 0.8) !important;
    padding: 0.8rem 1.2rem !important;
    border-radius: 25px !important;
    border: 2px solid #00aaff !important;
    color: #00aaff !important;
    text-decoration: none !important;
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.3) !important;
}

/* Universal styling for any text containing "Powered by LeaderOS" */
*:contains("Powered by LeaderOS"),
*:contains("powered by leaderos"),
*:contains("LeaderOS"),
*:contains("leaderos") {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(0, 50, 100, 0.8) !important;
    padding: 0.8rem 1.2rem !important;
    border-radius: 25px !important;
    border: 2px solid #00aaff !important;
    color: #00aaff !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    cursor: pointer !important;
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.3) !important;
    position: relative !important;
    z-index: 1 !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    line-height: 1.2 !important;
}

/* Force styling for any element that might contain "Powered by LeaderOS" */
div:has-text("Powered by LeaderOS"),
span:has-text("Powered by LeaderOS"),
p:has-text("Powered by LeaderOS"),
a:has-text("Powered by LeaderOS"),
strong:has-text("Powered by LeaderOS"),
b:has-text("Powered by LeaderOS"),
em:has-text("Powered by LeaderOS"),
i:has-text("Powered by LeaderOS") {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(0, 50, 100, 0.8) !important;
    padding: 0.8rem 1.2rem !important;
    border-radius: 25px !important;
    border: 2px solid #00aaff !important;
    color: #00aaff !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    cursor: pointer !important;
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.3) !important;
    position: relative !important;
    z-index: 1 !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    line-height: 1.2 !important;
}

/* Target specific classes that might be generated by powered_by_leaderos() */
.leaderos-credit,
.leaderos-link,
.leaderos-text,
.powered-by,
.powered-by-leaderos,
.credit-text,
.credit-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(0, 50, 100, 0.8) !important;
    padding: 0.8rem 1.2rem !important;
    border-radius: 25px !important;
    border: 2px solid #00aaff !important;
    color: #00aaff !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    cursor: pointer !important;
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.3) !important;
    position: relative !important;
    z-index: 1 !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    line-height: 1.2 !important;
}
