.mt-3 {
    margin-top: 12px !important;
}/* BNB Chain Heist CSS - Cyberpunk Theme */

:root {
    /* Cyberpunk Color Palette */
    --neon-red: #ff2a6d;
    --neon-pink: #d162cb;
    --neon-blue: #05d9e8;
    --neon-teal: #01c0c8;
    --dark-purple: #1a1a2e;
    --dark-blue: #16213e;
    --dark-bg: #0f0e17;
    --dark-panel: #1a1821;
    --light-text: #f8f8ff;
    --error-red: #ff5050;
    --success-green: #00ff9f;

    /* Gradients */
    --gradient-primary: linear-gradient(45deg, var(--neon-red), var(--neon-blue));
    --gradient-secondary: linear-gradient(45deg, var(--neon-teal), var(--neon-pink));
    --gradient-dark: linear-gradient(135deg, #121212, var(--dark-blue));
    --gradient-box: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));

    /* Box Shadows */
    --glow-blue: 0 0 10px rgba(5, 217, 232, 0.7);
    --glow-red: 0 0 10px rgba(255, 42, 109, 0.7);
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Base Styles */
body {
    background-color: var(--dark-bg);
    background-image: linear-gradient(135deg, rgba(15, 14, 23, 0.95), rgba(26, 26, 46, 0.95));
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    font-family: 'Rajdhani', 'Inter', sans-serif;
    color: var(--light-text);
    margin: 0;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 14, 23, 0.92), rgba(26, 26, 46, 0.92));
    z-index: -1;
}

/* Glitch overlay effect */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.15) 1px,
            transparent 1px,
            transparent 2px
    );
    pointer-events: none;
    z-index: 1000;
    opacity: 0.3;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.8em;
}

.section-title {
    font-size: 2.5rem;
    display: inline-block;
    position: relative;
    color: var(--light-text);
    text-shadow: 0 0 10px rgba(255, 42, 109, 0.5);
    margin-bottom: 30px;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 5px;
}

/* Header & Navigation */
.section.header-warpper {
    background-color: rgba(15, 14, 23, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--neon-blue);
}

.logo img {
    height: 50px;
    filter: drop-shadow(0 0 5px var(--neon-blue));
}

.navigation {
    gap: 24px;
}

.nav-item {
    color: var(--light-text);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 0 5px rgba(248, 248, 255, 0.3);
}

.nav-item:after {
    background-color: var(--neon-red);
    box-shadow: 0 0 10px var(--neon-red);
}

.nav-item:hover {
    color: var(--neon-red);
    text-shadow: 0 0 8px rgba(255, 42, 109, 0.7);
}

/* Buttons */
.button {
    background: var(--gradient-primary);
    color: var(--light-text);
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 12px 24px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 1;
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
    z-index: -1;
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.5);
}

.button:hover::before {
    left: 100%;
}

.button:active {
    transform: translateY(0);
}

.button.green {
    background: linear-gradient(45deg, var(--success-green), var(--neon-teal));
    color: var(--dark-purple);
}

.button.red {
    background: linear-gradient(45deg, var(--neon-red), var(--error-red));
}

.button.white {
    background: linear-gradient(45deg, #e6e6e6, #ffffff);
    color: var(--dark-purple);
}

.button.icon-only {
    padding: 12px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-ico {
    width: 20px;
    height: 20px;
    filter: brightness(1.5);
}

/* Main Container */
.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 24px;
    margin: 0 auto;
}

.container.app {
    display: flex;
    gap: 24px;
    padding: 24px;
}

/* Box styles */
.box {
    background: var(--gradient-box);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--box-shadow);
    backdrop-filter: blur(5px);
    margin-bottom: 24px;
    position: relative;
    overflow: visible;
    transition: all 0.3s ease;
}

.box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
}

.box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.box-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
}

.box-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
}

.box-item:last-child {
    border-bottom: none;
}

/* Box variants */
.box.heist-stats {
    background-image: url('../images/stats-overlay.svg'), var(--gradient-box);
    background-position: bottom right, center;
    background-repeat: no-repeat, no-repeat;
    background-size: contain, cover;
}

.box.rewards {
    background-image: url('../images/loot-overlay.svg'), var(--gradient-box);
    background-position: bottom right, center;
    background-repeat: no-repeat, no-repeat;
    background-size: contain, cover;
}

.box.crew {
    background-image: url('../images/crew-overlay.svg'), var(--gradient-box);
    background-position: bottom right, center;
    background-repeat: no-repeat, no-repeat;
    background-size: contain, cover;
}

.box.event {
    background-image: url('../images/event-overlay.svg'), var(--gradient-box);
    background-position: bottom right, center;
    background-repeat: no-repeat, no-repeat;
    background-size: contain, cover;
}

/* Input field styling */
.input-field {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.input-field:focus-within {
    border-color: var(--neon-blue);
    box-shadow: 0 0 0 2px rgba(5, 217, 232, 0.3);
}

.input {
    background: transparent;
    border: none;
    padding: 12px 16px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: var(--light-text);
    flex: 1;
    outline: none;
}

.input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Event styles */
.event-banner {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    animation: pulse 2s infinite;
}

.event-banner.normal {
    background: linear-gradient(45deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    border: 1px solid var(--neon-blue);
}

.event-banner.cops {
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.2), rgba(100, 0, 0, 0.3));
    border: 1px solid var(--error-red);
}

.event-banner.big-score {
    background: linear-gradient(45deg, rgba(0, 255, 159, 0.2), rgba(0, 100, 50, 0.3));
    border: 1px solid var(--success-green);
}

.event-icon {
    font-size: 2rem;
}

.event-info {
    flex: 1;
}

.event-timer {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.2rem;
    text-align: center;
}

/* Stats and indicators */
.value-indicator {
    font-family: 'Share Tech Mono', monospace;
    font-weight: 700;
    color: var(--neon-blue);
    text-shadow: 0 0 5px rgba(5, 217, 232, 0.5);
}

.stat-value {
    font-family: 'Share Tech Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--light-text);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Progress bar styling */
.progress-container {
    width: 100%;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin: 16px 0;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    border-radius: 4px;
    background: var(--gradient-primary);
    width: 0%;
    transition: width 0.3s ease;
    position: relative;
    overflow: hidden;
    display: block;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
    );
    animation: progress-shine 2s infinite linear;
}

/* Glitch effects and animations */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

@keyframes progress-shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

.glitch-text {
    position: relative;
    display: inline-block;
}

.glitch-text:hover {
    animation: glitch 0.3s cubic-bezier(.25, .46, .45, .94) both infinite;
    color: var(--neon-red);
}

/* Master Thief Badge */
.master-thief-badge {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-left: 8px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* FAQ Section */
.accord-item {
    background-color: rgba(26, 26, 46, 0.8);
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accord-top-bar {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.05);
}

.accord-title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.accord-ico {
    transition: transform 0.3s ease;
}

.accord-ico.active {
    transform: rotate(180deg);
}

.accord-paragraph {
    padding: 0 16px 16px;
    line-height: 1.6;
}

.accord-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    width: 100%;
}

/* Responsive adjustments */
@media screen and (max-width: 991px) {
    .container.app {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media screen and (max-width: 767px) {
    .mobile-hidden {
        display: none;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .box-title {
        font-size: 1.5rem;
    }

    .navigation.mobile-show {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        right: 20px;
        background: rgba(15, 14, 23, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px;
        border-radius: 8px;
        border: 1px solid var(--neon-blue);
        z-index: 1000;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    }
}

@media screen and (max-width: 479px) {
    .section-title {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 16px;
    }

    .box {
        padding: 16px;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--neon-blue), var(--neon-red));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(var(--neon-red), var(--neon-blue));
}