.betting-notice {
    position: absolute;
    top: 57px;
    left: 50%;
    transform: translateX(-50%);
    
    background: linear-gradient(90deg, #ff4d4d, #ff0000);
	background: rgba(255, 0, 0, 0.8);
    color: #fff;
    
    padding: 6px 14px;
    font-size: 12px;
    font-weight: bold;
    
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(255,0,0,0.7);
    
    z-index: 10;
    
    animation: noticePulse 1s infinite alternate;
    white-space: nowrap;
}

@keyframes noticePulse {
    0% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 5px rgba(255,0,0,0.5);
    }
    100% {
        transform: translateX(-50%) scale(1.08);
        box-shadow: 0 0 15px rgba(255,0,0,1);
    }
}

.odds-down { 
    font-size: 12px;
    margin-left: 4px;
    display: inline-block;

    background: linear-gradient(180deg, #6ea8ff, #1e3cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: arrowDown 0.8s infinite alternate;
}

@keyframes arrowDown {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(3px);
        opacity: 0.7;
    }
}

.SingUpHelpMessage{
	color:#ff0000;
}

/* ARBITRAGE logo sizing */
.logo-box {
    position: relative;
    height: 62px !important;
    width: auto !important;
    display: flex;
    align-items: center;
}
.logo-box a {
    display: inline-flex;
    align-items: center;
    height: 100%;
}
.logo-box img {
    display: block;
    height: 62px !important;
    width: auto !important;
    max-width: none;
}
.bottom-container .conts-area .conts-area__item .brand-box img {
    height: 40px;
    width: auto;
    margin-bottom: 12px;
}
.bottom-container .links-box.partners img.partner-solaire {
    height: 38px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

/* === ARBITRAGE: prevent text wrapping globally === */
.nowrap { white-space: nowrap !important; }

/* User page table style */
.arb-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(0,0,0,0.4);
    border-radius: 8px;
    margin-top: 10px;
}
.arb-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}
.arb-table th, .arb-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid #2a2a2e;
    font-size: 13px;
}
.arb-table th {
    color: #888;
    font-weight: 600;
    background: rgba(0,0,0,0.5);
    text-transform: uppercase;
    font-size: 11px;
}
.arb-table td { color: #ddd; }
.badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    white-space: nowrap;
}
.badge-active, .badge-approved, .badge-settled, .badge-answered { background: #16a34a; color: #fff; }
.badge-blocked, .badge-rejected, .badge-lost, .badge-closed { background: #dc2626; color: #fff; }
.badge-pending, .badge-open, .badge-betting { background: #f59e0b; color: #fff; }
.badge-ended { background: #475569; color: #fff; }

/* User-side forms */
.arb-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 500px;
    margin: 0 auto;
}
.arb-form-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.arb-form-row label {
    color: #888;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}
.arb-form-row input, .arb-form-row select, .arb-form-row textarea {
    background: #161618;
    border: 1px solid #333;
    color: #fff;
    padding: 10px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
}
.arb-form-row textarea { resize: vertical; }

/* Contact list */
.arb-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 14px;
}
.arb-contact-item {
    background: rgba(0,0,0,0.4);
    border: 1px solid #2a2a2e;
    border-radius: 8px;
    padding: 16px;
}
.arb-contact-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.arb-contact-body {
    background: #0e0e10;
    padding: 12px;
    border-radius: 4px;
    white-space: pre-wrap;
    word-wrap: break-word;
    color: #ccc;
}
.arb-contact-answer {
    background: #0c2818;
    border-left: 4px solid #16a34a;
    padding: 12px;
    border-radius: 4px;
    margin-top: 10px;
}
.arb-contact-answer strong {
    color: #16a34a;
    display: block;
    margin-bottom: 6px;
}
.arb-contact-answer p {
    color: #ddd;
    white-space: pre-wrap;
}

/* Bet action button on cards */
.bet-action {
    padding: 10px;
    text-align: center;
}
.btn-place-bet {
    width: 100%;
    cursor: pointer;
}

/* === Mobile responsiveness for user page === */
@media (max-width: 1280px) {
    .contents-container .contents-container__conts {
        flex-wrap: wrap;
    }
    .contents-block.center {
        width: 100%;
    }
    .contents-block.side {
        width: 100% !important;
    }
}
@media (max-width: 768px) {
    .top-message { display: none; }
    .top-utils { margin-left: auto; }
    .contents-block.side.left {
        position: fixed;
        left: -300px;
        top: 0;
        width: 280px !important;
        height: 100vh;
        background: #0e0e10;
        z-index: 999;
        overflow-y: auto;
        transition: left 0.25s;
        padding: 20px;
    }
    .contents-block.side.left.show { left: 0; }
    .top-hamburger { display: block !important; }
    .grid-block.three { flex-direction: column; gap: 10px; }
    .arb-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .conts-title { font-size: 16px; }
    .arb-table th, .arb-table td { padding: 8px; font-size: 12px; }
}

/* === Mobile sidebar close button + backdrop overlay === */
.mobile-backdrop { display: none; }
.sidebar-close-btn { display: none; }

@media (max-width: 768px) {
    .mobile-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        z-index: 998;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease-in-out;
    }
    .mobile-backdrop.show {
        opacity: 1;
        pointer-events: auto;
    }
    .contents-block.side.left,
    .contents-block.side.right {
        z-index: 999;
    }
    .contents-block.side.left {
        padding-top: 64px;
    }
    body.no-scroll {
        overflow: hidden;
    }
    .sidebar-close-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 12px;
        right: 12px;
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 50%;
        color: #fff;
        font-size: 30px;
        line-height: 1;
        padding: 0;
        cursor: pointer;
        z-index: 1001;
        -webkit-tap-highlight-color: transparent;
    }
    .sidebar-close-btn:hover,
    .sidebar-close-btn:active {
        background: rgba(255, 255, 255, 0.18);
    }
}

/* Sold-out gauge (betting card bottom) */
.soldout-block {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    margin-top: 8px;
    width: 100%;
    box-sizing: border-box;
}
.soldout-block .label {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    min-width: 90px;
}
.soldout-block .bar {
    flex: 1;
    height: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    overflow: hidden;
    padding: 0;
}
.soldout-block .bar__fill {
    height: 100%;
    background: linear-gradient(90deg, #ff8a3d, #ff3d3d);
    border-radius: 5px;
    transition: width 0.3s ease;
}
.soldout-block .max {
    color: #888;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.soldout-block .max.full {
    color: #ff3d3d;
}