﻿
/* Header */
.custom-header {
    background: #000;
    border-bottom: 1px solid #151515;
    position: sticky;
    top: 0;
    z-index: 998;
}

.search-box {
    background: #2c2d2f00;
    border-radius: 50px;
    padding: 6px 14px;
    border: 1px solid #272727;
}

    .search-box input {
        background: transparent;
        border: none;
        outline: none;
        color: #fff;
        width: 100%;
    }

        .search-box input::placeholder {
            color: #777;
        }

/* Hero */
.hero-logo {
    width: 90px;
    height: 90px;
    border: 2px solid var(--gold);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    background: #000;
    box-shadow: 0 0 20px rgba(218,165,32,.2);
}

/* Cards */
.custom-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 9px !important;
    border: 1px solid #f3c10a;
}

/* Buttons */
/*.gold-btn {
    background: radial-gradient(ellipse farthest-corner at right bottom,#fedb37 0%,#fdb931 8%,#9f7928 30%,#8a6e2f 40%,transparent 80%),radial-gradient(ellipse farthest-corner at left top,#fff,#ffffac 8%,#d1b464 25%,#5d4a1f 62.5% 100%);
    border: none;
    color: #000;
    font-weight: 400 !important;
    border-radius: 50px;
}

.gold-btn:hover {
    color: #000000; 
}*/

.dark-btn {
    background: #2b2f36;
    border: none;
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
}

    .dark-btn:hover {
        background: linear-gradient(90deg, #b8860b 0%, #f7d559 50%, #b8860b 100%);
        color: #000000;
    }

/* Tabs */
.market-tab {
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
}

    .market-tab.active {
        color: #fff;
    }

        .market-tab.active::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 2px;
            background: var(--gold);
        }

.tab-pane-custom {
    display: none;
}

    .tab-pane-custom.active {
        display: block;
    }

/* Coin Row */
.coin-row {
    border-bottom: 1px solid #151515;
}

.coin-price {
    text-align: right;
}

.percent {
    min-width: 90px;
    text-align: center;
    padding: 8px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
}

.up {
    background: rgba(0,192,135,.12);
    color: #00c087;
}

.down {
    background: rgba(255,77,77,.12);
    color: #ff4d4d;
}


/* Swiper */
.swiper {
    border-radius: 18px;
    overflow: hidden;
}

.swiper-pagination {
    position: relative !important;
}

.swiper-pagination-bullet {
    background: #555 !important;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--gold) !important;
    width: 18px;
    border-radius: 10px;
}

.trading-table-heading {
    font-size: clamp(0.75rem, 1vw, 0.95rem);
    line-height: 1.6;
    font-weight: 400;
    color: rgb(176, 176, 176);
}


.view-all-btn {
    background-color: #2b2a2a;
    border: none;
    color: #ffffff;
    font-size: 13px;
    padding: 5px 20px;
    border-radius: 4px;
}

    .view-all-btn:hover {
        background-color: #d4af3740;
    }


.tab-pane-custom {
    width: 100%;
    overflow: auto;
}

.user-community-card {
    background-color: unset !important;
}

.accordion {
    --bs-accordion-border-color: #dee2e600;
}

.custom-accordion .accordion-item {
    background-color: unset;
    border: unset;
}

.custom-accordion .accordion-button {
    background-color: unset;
}

.accordion-button:focus {
    box-shadow: unset;
}

.dashboard-top-navigation {
    display: flex;
    justify-content: space-between;
    list-style: none;
}

    .dashboard-top-navigation li a i {
        background-color: #1a1a1a;
        padding: 10px 14px;
        border-radius: 30px;
        cursor: pointer;
    }

    .dashboard-top-navigation li a {
        text-decoration: none;
    }

        .dashboard-top-navigation li a span {
            line-height: 1.7;
            color: rgb(255, 255, 255);
            font-size: 0.75rem;
            font-weight: 500;
            margin-top: 15px;
            display: block;
        }

.accordion-button .top-accordion-header {
    display: none;
}

.accordion-button.collapsed .top-accordion-header {
    display: flex;
}

.accordion-button {
    padding:0px;
}



.accordion-button.collapsed {
    border: 1px solid #ffffff85;
    padding: 12px;
    border-radius: 5px;
}


.market-section {
    background: #000;
    font-family: Arial, sans-serif;
}

.market-tabs {
    display: flex;
    gap: 32px;
    padding: 0 16px;
    border-bottom: 1px solid #111827;
}

.tab-item {
    padding-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

    .tab-item.active {
        color: #d4a85f !important;
        border-color: #d4a85f;
    }

.market-header {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    font-size: 10px;
    color: #6b7280;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.col {
    width: 33.33%;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.market-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 16px;
    border-bottom: 1px solid #0a0a0a;
}

.market-col {
    width: 33.33%;
}

.pair-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.small-text {
    font-size: 10px;
    color: #6b7280;
    margin-top: 4px;
}

.price-text {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    font-family: monospace;
}

.change-btn {
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    padding: 8px 12px;
    border: none;
    border-radius: 8px;
    min-width: 80px;
    cursor: pointer;
}

.green-btn {
    background: #00c087;
}

.red-btn {
    background: #cf304a;
}

/* Flash animations */
.up-flash {
    animation: flash-green 0.8s ease-in-out;
}

.down-flash {
    animation: flash-red 0.8s ease-in-out;
}

@keyframes flash-green {
    0% {
        background-color: rgba(0, 192, 135, 0.2);
    }

    100% {
        background-color: transparent;
    }
}

@keyframes flash-red {
    0% {
        background-color: rgba(207, 48, 74, 0.2);
    }

    100% {
        background-color: transparent;
    }
}

/* Swiper Fixes */
.swiper-pagination-bullet {
    background: #333 !important;
    opacity: 1;
    width: 6px;
    height: 6px;
}

.swiper-pagination-bullet-active {
    background: #d4a85f !important;
    width: 16px;
    border-radius: 3px;
}


.footer-slider-wrapper {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    margin-top: 24px;
    margin-bottom: 40px;
}

.footer-stack {
    position: relative;
    width: 100%;
    min-height: 110px;
    cursor: pointer;
    user-select: none;
}

.footer-card {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 16px;
    transition: all 0.5s ease;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.45);
    will-change: transform, opacity;
}

.card-one {
    z-index: 40;
    border: 1px solid #2d2d2d;
    background: #121212;
}

.card-two {
    z-index: 30;
    border: 1px solid #1f1f1f;
    background: #0d0d0d;
}

.card-three {
    z-index: 20;
    border: 1px solid #1a1a1a;
    background: #080808;
}

.card-four {
    z-index: 10;
    border: 1px solid #141414;
    background: #050505;
}

.card-five {
    z-index: 0;
    border: 1px solid #111111;
    background: #000000;
}

.footer-card-content {
    flex: 1;
}

.footer-title {
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
}

.footer-desc {
    font-size: 11px;
    color: #b0b0b0;
    margin-top: 6px;
    font-weight: 500;
    line-height: 1.5;
}

.footer-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    z-index: 50;
}

.f-dot {
    width: 4px;
    height: 2px;
    border-radius: 999px;
    background: #b0b0b0;
    transition: all 0.3s ease;
}

    .f-dot.active-dot {
        width: 16px;
        background: #d4a85f;
    }


.slider-wrapper {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    margin-top: 16px;
    margin-bottom: 24px;
}

.card-stack {
    position: relative;
    width: 100%;
    min-height: 110px;
    cursor: pointer;
    user-select: none;
    perspective: 1000px;
}

.stack-card {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 16px;
    transition: all 0.5s ease-in-out;
    transform-origin: center right;
    backface-visibility: hidden;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.45);
}

.card-style {
    border: 1px solid #2d2d2d;
    background: #121212;
}

.card-1 {
    z-index: 40;
    border-color: #2d2d2d;
    background: #121212;
}

.card-2 {
    z-index: 30;
    border-color: #1f1f1f;
    background: #0d0d0d;
}

.card-3 {
    z-index: 20;
    border-color: #1a1a1a;
    background: #080808;
}

.card-content {
    flex: 1;
    padding-right: 8px;
}

.card-title {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    letter-spacing: 0.5px;
    margin: 0;
}

.card-desc {
    font-size: 11px;
    color: #b0b0b0;
    margin-top: 6px;
    font-weight: 500;
    line-height: 1.5;
}

.card-image-box {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    margin: 0;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.stack-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    z-index: 50;
}

.dot {
    height: 4px;
    width: 4px;
    border-radius: 999px;
    background: #b0b0b0;
    transition: all 0.3s ease;
}

.active-dot {
    width: 16px;
    background: #d4a85f;
}

.deposit-btn {
    background: rgb(26, 26, 26) !important;
    border: none;
    color: #ffffff !important;
    font-weight: 500 !important;
    border-radius: 50px;
}

    .deposit-btn:hover {
        background: rgb(42, 42, 42) !important;
    }















.top-navigation-modal .modal-fullscreen {
    width: 100vw !important;
    max-width: none !important;
    height: 100%;
    margin: 0;
}

.top-navigation-modal.modal {
    --bs-modal-bg: #0a0a0a;
}

.top-navigation-modal .modal-header {
    border-bottom: none;
}


.pointer {
    cursor: pointer !important;
}

.swich-account-link {
    font-size: clamp(0.75rem, 1vw, 0.95rem);
    line-height: 1.6;
    font-weight: 400;
    color: rgb(176, 176, 176);
    cursor: pointer;
    text-decoration-line: none;
}

.user-avtar {
    background-color: #d4a85f52;
    display: flex;
    justify-content: center;
    align-items: center;
    /*height: 40px;
    width: 40px;*/
    border-radius: 30px;
    color: #ffffff;
    cursor:pointer;
}
.user-avtar:hover {
    background-color: #f1ca1882;
}

#prof_pic img {
    width: 40px;
   height: 40px;

     border-radius: 30px;
}

.top-navigation-userid {
    font-size: clamp(0.65rem, 0.9vw, 0.85rem);
    line-height: 1.4;
    font-weight: 400;
    color: rgb(176, 176, 176);
}


.top-navigation-close {
    padding: 4px 6px;
    border-radius: 30px;
    color: #ffffff;
}

    .top-navigation-close:hover {
        background-color: #575757;
        padding: 4px 7px;
        border-radius: 30px;
    }



.top-modal-navlist {
    display: flex;
    justify-content: space-between;
    list-style: none;
}

    .top-modal-navlist li a {
        text-decoration-line: none;
    }

    .top-modal-navlist li {
        width:25%;
        display:flex;
        justify-content:center;
    }

        .top-modal-navlist li a i {
            /*background-color: #1a1a1a;*/
    padding: 12px 14px;
    border-radius: 30px;
    cursor: pointer;
    color: #ffffff;
}

        .top-modal-navlist li a span {
            font-size: clamp(0.65rem, 0.9vw, 0.85rem);
            font-weight: 400;
            color: rgb(176, 176, 176);
            line-height: 1.2;
            margin-top: 10px;
            display: block;
            text-align: center;
        }

@media (min-width: 576px) {
    .h1, h1 {
        font-size: 25px;
    }
}
