/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Segoe+UI:wght@400;500;700&display=swap'); */
/*@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');*/

:root {
    --dark-bg: #101010;
    --secondary-bg: #121212;
    --text-primary: #FFFFFF;
    --text-secondary: #A8B5C7;
    --accent-primary: #007BFF;
    --accent-secondary: #00C4CC;
    --border: #151515;
    --error: #FF4D4F;
    --success: #52C41A;
    --warning: #FFC107;
    --highlight: #40C4FF;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Arial", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
}



a {
    text-decoration: none;
    color: white;
}

.footer-blog{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding: 20px;
}

/* Navbar Styles */
.navbar {
    width: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 3000;
}

.logo {
    flex: 0 0 10%;

}

.logo img {
    width: 100px;
    margin-top: 5px;
}

.menu {
    flex: 0 0 70%;
    display: flex;
    align-items: center;
    gap: 5px;
}

.header.mobile {
    display: none !important;
}

.menu-item {
    cursor: pointer;
    padding: 10px 10px;
    list-style-type: none;
    transition: .3s all;
    border-radius: 10px;
    margin-bottom: 10px;
}

.menu-item.active {
    color: var(--accent-primary);
    font-size: 16px;
    font-weight: bold;
}

.menu-item.active:hover {
    background-color: var(--accent-primary);
    color: white;
}

.menu-item:hover {
    background-color: var(--accent-primary);
}

.menu-item-nav {
    position: relative;
}

.menu-item-nav>a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 10px;
    font-weight: 500;
    padding: 10px 12px;
    transition: color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.menu-item-nav>a:hover {
    color: var(--accent-primary);
    transform: translateY(-2px);
}

.menu-item-nav.active>a {
    color: var(--accent-primary);
    font-weight: bold;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--secondary-bg);
    border-radius: 8px;
    flex-direction: column;
    width: 200px;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
}

.menu-item-nav:hover .dropdown {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown a {
    padding: 10px 18px;
    font-size: 10px;
    text-decoration: none;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    /* transition: all 0.3s ease; */
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown a:hover {
    padding-left: 22px;
}

.dropdown a:last-child {
    border-bottom: none;
}

.dropdown a i {
    font-size: 10px;
}

.right {
    flex: 0 0 20%;
    display: flex;
    align-items: center;
    gap: 20px;
}

.search {
    position: relative;
    flex: 0 0 150px;
}

.search input {
    width: 100%;
    padding: 4px 15px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--secondary-bg);
    color: var(--text-secondary);
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s;
}

.search input:focus {
    border-color: var(--accent-primary);
    background: #232a3d;
}

.icon-circle,
.user-avatar {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.icon-circle:hover,
.user-avatar:hover {
    transform: scale(1.1);
}

.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
}

.dropdown-box {
    position: absolute;
    right: 0;
    top: 100%;
    background: var(--secondary-bg);
    border-radius: 8px;
    width: 280px;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s ease;
    flex-direction: column;
    overflow: hidden;
    z-index: 2000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
}

.dropdown-box.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-header {
    padding: 15px;
    border-bottom: 1px solid var(--border);
    background: #111;
}

.dropdown-header h4 {
    margin: 0;
    font-size: 15px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-primary);
}

.dropdown-header .balance,
.dropdown-header .email,
.dropdown-header .uid {
    margin-top: 6px;
    font-size: 13px;
    color: var(--text-secondary);
}

.btn-group {
    display: flex;
    gap: 10px;
    padding: 12px 15px;
}

.btn-group button {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--secondary-bg);
    color: var(--text-secondary);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-group button:hover {
    background: var(--accent-primary);
    color: var(--text-primary);
    border-color: var(--accent-primary);
}

.dropdown-box a {
    padding: 12px 18px;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease, color 0.3s ease, padding-left 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-box a:hover {
    background: var(--accent-primary);
    color: var(--text-primary);
    padding-left: 22px;
}

.dropdown-box .logout {
    text-align: center;
    padding: 12px 18px;
    border-top: 1px solid var(--border);
    cursor: pointer;
    color: var(--text-secondary);
    transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-box .logout:hover {
    background: var(--accent-primary);
    color: var(--text-primary);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: var(--secondary-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8);
    transform: scale(0.8) translateY(50px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.show .modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
}

.modal-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-primary);
}

.modal-close {
    cursor: pointer;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-secondary);
    transition: color 0.2s ease, transform 0.2s ease;
}

.modal-close:hover {
    color: var(--accent-primary);
    transform: scale(1.1);
}

.modal-body {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.modal-body p {
    margin-bottom: 15px;
}

.modal-body ul {
    list-style: none;
    padding: 0;
}

.modal-body li {
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.modal-body li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.modal-footer {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.modal-btn {
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    color: var(--text-primary);
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.5);
    background: linear-gradient(90deg, var(--accent-secondary), var(--accent-primary));
}

.open-modal-btn {
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    color: var(--text-primary);
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.open-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.5);
}

@keyframes modalIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes modalOut {
    0% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }

    100% {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }
}

.modal.show .modal-content {
    animation: modalIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.modal:not(.show) .modal-content {
    animation: modalOut 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Popup Styles */
.popup {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--secondary-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 15px;
    max-width: 350px;
    width: 90%;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    transform: translateY(-30px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
}

.popup.show {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.popup-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-primary);
}

.popup-close {
    cursor: pointer;
    font-size: 20px;
    color: var(--text-secondary);
    transition: color 0.2s ease, transform 0.2s ease;
}

.popup-close:hover {
    color: var(--accent-primary);
    transform: scale(1.1);
}

.popup-body {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 15px;
}

.popup-body strong {
    color: var(--accent-primary);
}

.popup-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.popup-btn {
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    color: var(--text-primary);
    padding: 8px 15px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}

.popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.5);
    background: linear-gradient(90deg, var(--accent-secondary), var(--accent-primary));
}

.open-popup-btn {
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    color: var(--text-primary);
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.open-popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.5);
}

@keyframes popupIn {
    0% {
        transform: translateY(-30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes popupOut {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(-30px);
        opacity: 0;
    }
}

.popup.show {
    animation: popupIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.popup:not(.show) {
    animation: popupOut 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Main Content */
.main-content {
    text-align: center;
    padding: 60px 20px;
}

.main-content h1 {
    font-size: 48px;
    margin: 10px 0;
    color: var(--accent-primary);
}

.main-content p {
    font-size: 18px;
    color: var(--text-secondary);
}

.trade-btn {
    background: var(--accent-primary);
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.trade-btn:hover {
    background: var(--highlight);
    transform: translateY(-3px);
}

.container {
    /* background-color: var(--secondary-bg); */
    padding: 40px;
    border-radius: 8px;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5); */
    margin: 20px;
}

.dashboard-container {
    display: flex;
    flex-direction: row;
    padding: 30px;
    border-radius: 16px;
}

.container.ticket {
    max-width: 600px;
    background: var(--secondary-bg);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
}

.setting-item-container {
    display: flex;
    padding: 10px 20px;
    flex-direction: column;
    border-bottom: 2px solid var(--border);
}

.setting-item-container h2 {
    font-size: 1.5rem;
}

.grid-blog {
    display: grid;

    /* grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); */
    gap: 20px;
    padding: 20px;

}

.container.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--dark-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
    width: 700px;
    height: 500px;
}

.kyc-container {
    background: linear-gradient(135deg, #1e1f2e, #2a2d3d);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--border);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.kyc-container:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.kyc-container.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 50px;
}

.asside {
    width: 20%;
    padding: 10px 30px 10px 10px;
}

.asside ul {
    margin-top: 20px;

}

.asside ul a {
    text-decoration: none;
    color: white;
}

.account-item {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 1.3rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid var(--border);
    transition: .3s all;
}

.account-item:hover {
    background: var(--secondary-bg);
}

.card p {
    /* font-size: 1.8rem; */
    margin-top: 10px;
}

.panel {
    width: 80%;
}


.card {
    background: linear-gradient(135deg, #1e1f2e, #2a2d3d);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 10px 12px rgba(0, 0, 0, 0.5);
    margin: 10px;
}

.card .two-sides {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-actions hr {
    outline: none;
    border: 1px solid var(--accent-primary);
}

.card-title {
    display: flex;
    flex-direction: column;
}

.card-title p {
    font-size: .8rem;
}

.card-actions {
    display: flex;
    flex-direction: row;
    gap: 5px;

}

.card.transparent {
    background: transparent !important;
    /* border: 2px solid var(--border) !important; */
}

.card:hover {
    border-color: var(--accent-primary);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #2a2a2a;
}

.pagination button {
    background-color: #2a2a2a;
    color: #a8b5c7;
    border: none;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.pagination button:hover {
    background-color: #007bff;
    color: #ffffff;
    transform: translateY(-2px);
}

.pagination button:disabled {
    background-color: #3c3c3c;
    color: #666;
    cursor: not-allowed;
    transform: none;
}

.pagination button.active {
    background-color: #00c4cc;
    color: #ffffff;
    font-weight: bold;
}

.pagination span {
    color: #a8b5c7;
    margin: 0 15px;
    font-size: 14px;
}

.wallet-container,
.table-container,
.chat-container,
.messages-container,
.report-container,
.rating-container,
.start-chat-container,
.order-container,
.message-container {
    background-color: #1e1e1e;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}

.chat-container,
.chat-box {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--dark-bg);
    padding: 16px;
}

/* Form Elements */
.form-group,
.input-group {
    margin-bottom: 20px;
    position: relative;
    width: 100%;
}

.form-section {
    border-radius: 20px;
    height: 90%;
    padding: 20px;
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #0e121d, #0d0f18);
}

.form-section h2 {
    margin-bottom: 15px;
    font-size: 22px;
    color: var(--text-primary);
}

label {
    display: inline;
    margin-bottom: 8px;
    font-size: 10px;
    font-weight: 500;
    color: var(--text-secondary);
}

.checkbox-label {
    display: flex;
    align-items: center;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.checkbox-label input {
    margin-right: 8px;
}

.custom-input,
.code-input,
.input-group input,
.chat-input input,
input,
select,
textarea {
    width: 100%;
    background-color: var(--dark-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    color: var(--text-primary);
    outline: none !important;
    transition: border-color 0.2s ease, box-shadow 0.3s;
}

input[type="file"] {
    padding: 0;
}

.code-input {
    width: 40px;
    height: 40px;
    padding: 10px;
    background: #1a1f2e;
    font-size: 18px;
    text-align: center;
    border: none;
}

.custom-input:focus,
.code-input:focus,
.input-group input:focus,
.chat-input input:focus,
input:focus,
select:focus,
textarea:focus {
    border-color: var(--accent-primary);
    background: #232a3d;
    box-shadow: 0 0 0 2px var(--accent-primary), 0 0 10px rgba(0, 123, 255, 0.3);
}

.custom-input::placeholder,
.input-group input::placeholder,
.chat-input input::placeholder {
    color: #555;
}

.custom-input.error {
    border-color: var(--error);
}

.error-message {
    color: var(--error);
    font-size: 12px;
    margin-top: 4px;
    display: none;
}

.code-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.input-group .toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--accent-primary);
    cursor: pointer;
    font-size: 12px;
}

.checkbox {
    font-size: 11px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.checkbox input {
    margin-right: 8px;
    margin-top: 2px;
}

/* Tabs */
.tabs {
    display: flex;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    justify-content: center;
}

.tab {
    /* padding: 10px; */
    background: #1a1f2e;
    border: none;
    height: auto;
    margin: 10px 0px;
    padding: 10px 15px;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    transition: all 0.3s, transform 0.2s;
    text-align: center;
}

.tab:hover {
    transform: scale(1.1);
}

.tab.active {
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
}

.tab:first-child {
    border-right: 1px solid #0d0f18;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.tab:nth-child(2) {
    border-right: 1px solid #0d0f18;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

/* Select Dropdown */
.custom-select,
.id-photo select {
    position: relative;
    width: 200px;
    background-color: var(--dark-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    color: var(--text-primary);
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.select-container {
    width: 100%;

}

.custom-select {
    width: 100%;

}

.custom-select .selected {
    display: flex;
    align-items: center;
    gap: 8px;
}

.custom-select img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}

.select-options {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background-color: #1e1e1e;
    border: 1px solid var(--border);
    border-radius: 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.select-options div {
    padding: 10px 12px;
    display: flex;
    align-items: center;
    height: 50px;
    gap: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.select-options div img {
    height: 30px;
}

.select-options div:hover,
.select-options div:focus {
    background-color: #2a2a2a;
}

/* security */

.security-level {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.profile {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 10px;
}

.profile-picture {
    border-radius: 100%;
    width: 50px;
    height: 50px;
    background-color: white;
}

.security-level span {
    margin-right: 10px;
}

.progress {
    /* flex-grow: 1; */
    height: 10px;
    width: 500px;
    border-radius: 100%;
    background: #333;
    margin-top: 20px;
}

.progress .low {
    width: 33%;
    background: var(--error);
    height: 100%;
    box-shadow: 0px 0px 5px 2px var(--error);
}

.progress .medium {
    width: 66%;
    background: var(--accent-secondary);
    height: 100%;
    box-shadow: 0px 0px 5px 2px var(--accent-secondary);
}


.progress .high {
    width: 100%;
    background: var(--success);
    height: 100%;
    border-top-right-radius: 100%;
    border-bottom-right-radius: 100%;
    box-shadow: 0px 0px 5px 2px var(--success);
}

.verification-methods .card {
    margin-bottom: 10px;
}

.verification-methods .card-title p {
    color: var(--success);
}

.verification-methods .btn {
    background: var(--success);
}

/* Buttons */

.btn {
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    color: var(--text-primary);
    /* padding: 10px; */
    padding: 2px 10px !important;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border: none;
    gap: 5px;
    transition: .3s all;
}


.btn.btn-2 {
    height: 20px;
    font-size: .8rem;
    padding: 2px 10px !important;
}

.btn.btn-3 {
    height: 30px;
    width: auto;
    font-size: 1rem;
    padding: 2px 14px !important;
}

.sell-btn,
.report-btn,
.btn-primary,
.btn-secondary,
.chat-input button {
    height: 40px;
    width: auto;
    padding: 0px 14px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    flex: none;
    box-shadow: none;
    transition: background-color 0.2s ease, transform 0.1s ease, opacity 0.3s, box-shadow 0.3s;
}

.btn-primary {
    display: flex;
    align-items: center;
    margin: 10px 5px;
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    transition: .3s all;
    box-shadow: none !important;
}

.sell-btn {
    background-color: var(--accent-primary);
    color: var(--text-primary);
    /* font-family: "Noto Sans JP", sans-serif; */
    /* margin-top: 10px; */
}

.sell-btn:hover:not(:disabled) {
    background-color: var(--accent-secondary);
    transform: translateY(-1px);
}

.sell-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.report-btn {
    background-color: var(--error);
    color: var(--text-primary);
    margin-top: 10px;
}

.report-btn:hover:not(:disabled) {
    background-color: #e60000;
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    color: var(--text-primary);
    padding: 14px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
    text-align: center;
}

.btn-primary:hover {
    background: linear-gradient(90deg, var(--accent-secondary), var(--accent-primary));
    transform: scale(1.05);
}

.btn:hover,
.chat-input button:hover {
    opacity: 0.95;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.5);
}

.btn-secondary {
    background: #1f2937;
    border: 1px solid var(--border);
    padding: 12px 25px;
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 15px;
}

.btn-secondary:hover {
    background: #374151;
    color: var(--text-primary);
}

.btn-view {
    padding: 6px 12px;
    background-color: var(--accent-primary);
    color: var(--text-primary);
    border-radius: 6px;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.btn-view:hover {
    background-color: var(--accent-secondary);
}

.btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.recommended {
    background: linear-gradient(to right, var(--accent-primary), var(--accent-secondary));
    color: var(--text-primary);
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 12px;
    margin-left: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.chat-input button {
    background: var(--accent-primary);
    padding: 12px 20px;
    width: auto;
    color: var(--text-primary);
}

.chat-input button:hover {
    background: var(--accent-secondary);
}

/* Order Status and Steps */
.order-status {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--accent-primary);
}

.order-steps,
.progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 10px;
    background-color: #1e1e1e;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.step {
    display: none;
}

.step.active {
    display: block;
}

.progress-step {
    text-align: center;
    flex: 1;
    color: var(--text-secondary);
    font-size: 14px;
    position: relative;
}

.progress-step::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--border);
    z-index: -1;
}

.progress-step:first-child::before {
    left: 50%;
}

.progress-step:last-child::before {
    right: 50%;
}

.progress-circle {
    background-color: var(--border);
    color: var(--text-secondary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-weight: bolder;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}

.progress-step.active .progress-circle {
    background-color: var(--accent-primary);
    color: var(--text-primary);
}

.progress-step.completed .progress-circle {
    background-color: var(--success);
}

.progress-step.completed::before {
    background-color: var(--success);
}

/* Receipt and Confirm Boxes */
.receipt-box,
.confirm-box,
.upload-box {
    margin-top: 20px;
    padding: 16px;
    background-color: #1e1e1e;
    border: 1px solid var(--border);
    border-radius: 8px;
}

.receipt-box img {
    max-width: 100%;
    border-radius: 8px;
    cursor: pointer;
}

/* Table Styles */
.table-container {
    overflow-x: auto;
}

.custom-table,
table {
    width: 100%;
    border-collapse: collapse;
    background-color: #1e1e1e;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
}

.custom-table th,
.custom-table td,
table th,
table td {
    padding: 12px 14px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}

.custom-table th,
table th {
    background-color: var(--secondary-bg);
    color: var(--text-secondary);
    font-weight: 500;
}

.custom-table tr:hover {
    background-color: #2a2a2a;
}

.status-badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    min-width: 80px;
    text-align: center;
}

.status-badge.completed {
    background-color: #1a3d00;
    color: var(--success);
}

.status-badge.pending {
    background-color: #3d3000;
    color: var(--warning);
}

.status-badge.canceled {
    background-color: #3d0000;
    color: var(--error);
}

/* Order Card */
.order-card {
    display: none;
    background-color: #1e1e1e;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px;
    margin-top: 14px;
}

.order-card p {
    margin: 6px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

/* Breadcrumb */
.breadcrumb {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Header */
.header,
.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
}

nav.header {
    background: var(--dark-bg);
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 3000;
    margin-bottom: 0px;
}

.header h1,
.ticket-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
}

.header a {
    font-size: 10px;
    text-decoration: none;
    color: var(--text-secondary);
    transition: color 0.3s;
}


/* KYC Specific */
.kyc-container {
    background: linear-gradient(135deg, #1e1f2e, #2a2d3d);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--border);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.kyc-container:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.kyc-container.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 50px;
}

/* Requirements Section */
.requirements {
    background-color: #1e1e1e;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--border);
    margin-bottom: 25px;
}

.requirements ul {
    list-style: none;
    padding: 0;
}

.requirements li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-primary);
}

.requirements li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* ID Photo Section */
.id-photo {
    margin-top: 30px;
}

.id-photo p {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.id-photo .photo-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.id-photo select {
    background: var(--dark-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px;
    color: var(--text-primary);
    font-size: 14px;
    width: 200px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.id-photo select:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.3);
}

/* Photo Requirements */
.photo-requirements {
    background-color: #1e1e1e;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--border);
    margin-top: 20px;
}

.photo-requirements h1 {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 15px;
    text-align: center;
}

.photo-requirements ul {
    list-style: none;
    padding: 0;
}

.photo-requirements li {
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.photo-requirements .desc {
    color: var(--text-primary);
    font-weight: 500;
}

.photo-requirements .info-text {
    color: var(--text-secondary);
    font-size: 13px;
}

/* Status Section */
.id-photo .status {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 25px;
}

.id-photo .status div {
    text-align: center;
    flex: 1 1 100px;
    max-width: 120px;
}

.id-photo .status img {
    width: 80px;
    height: 50px;
    object-fit: cover;
    border: 2px solid var(--border);
    border-radius: 6px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.id-photo .status img:hover {
    transform: scale(1.05);
    border-color: var(--accent-primary);
}

.id-photo .status p {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* Upload Section */
.id-photo .upload {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.upload .front-id,
.upload .back-id {
    text-align: center;
    flex: 1 1 200px;
    background-color: #1e1e1e;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.upload .front-id:hover,
.upload .back-id:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.upload img {
    width: 100%;
    max-width: 150px;
    height: auto;
    border-radius: 6px;
    margin-bottom: 10px;
}

.upload p {
    font-size: 14px;
    color: var(--text-primary);
}

/* Review Time Text */
.kyc-container .review-time {
    font-size: 12px;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 15px;
    opacity: 0.8;
}

/* FAQ */
.faq {
    max-width: 900px;
    margin: 0 auto;
}

.faq h2 {
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border);
    padding-bottom: 10px;
}

.faq-item {
    background: #111827;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.faq-question {
    padding: 18px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #1f2937;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #1f2937;
    padding: 0 18px;
    font-size: 15px;
    color: var(--text-secondary);
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 250px;
    padding: 18px;
}


/* blog */
.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background-color: var(--secondary-bg);
    border: 2px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {

    box-shadow: 0px 0px 100px 1000px inset black,
        2px 10px 10px 5px rgba(0, 0, 0, .4);
}

.blog-card img {
    width: 100%;
    height: 250px;
    min-height: 250px;
    object-fit: contain;
    padding: 0px 10px;
}

.blog-card-content {
    padding: 0px 20px 15px 20px;
}

.blog-card-content h3 {
    color: var(--text-primary);
    font-size: 18px;
    margin-bottom: 10px;
}

.blog-card-content a {
    color: white;
}

.blog-card-content p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 10px;
}

.blog-card-content .info {
    color: var(--text-secondary);
    font-size: 12px;
    margin-top: 10px;
}

.blog-card-content a {
    /* color: var(--accent-primary); */
    font-size: 14px;
    text-decoration: none;

    margin-top: 20px !important;
}

.blog-header {
    border-bottom: 1px solid var(--border);
    background-color: var(--dark-bg);
}

.blog-header h2 {
    color: var(--text-primary);
    font-size: 24px;
    margin-bottom: 10px;
}

.blog-search {
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
}

.blog-search input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--secondary-bg);
    color: var(--text-secondary);
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.blog-search input:focus {
    border-color: var(--accent-primary);
}

.featured-post {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background-color: var(--secondary-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 20px;
}

.featured-post img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.featured-post-content {
    flex: 1;
}

.featured-post-content span {
    color: var(--text-secondary);
    font-size: 14px;
}

.featured-post-content h3 {
    color: var(--text-primary);
    font-size: 22px;
    margin: 10px 0;
}

.featured-post-content p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 10px;
}

.featured-post-content .date {
    color: var(--text-secondary);
    font-size: 12px;
}

.categories {
    display: flex;
    gap: 10px;
    padding: 10px 20px;
    border-top: 1px solid var(--border);
    background-color: var(--dark-bg);
    flex-wrap: wrap;
    justify-content: center;
}

.categories a {
    color: var(--text-secondary);
    font-size: 14px;
    border-radius: 15px;
    background-color: var(--secondary-bg);
    padding: 7px 15px;
    transition: all 0.3s ease;
    border: 1px transparent solid;

}

.categories a:hover {
    color: var(--accent-primary);
    border: 1px var(--accent-primary) solid;
}

.categories a.active{
    color: var(--accent-primary);
    box-shadow: 0px 1px 5px 1px inset var(--accent-primary);
    border: 2px var(--accent-primary) solid;
}


/* article */
.container.article {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px;
    gap: 10px;
}

.article-container {
    width: 80%;
}

.article-sidebar {
    padding: 20px;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 80px;

    gap: 20px;
}

.article-sidebar-item {
    /* min-height: 400px; */
    /* background-color: var(--secondary-bg); */
}

.article-sidebar-item.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    transition: .3s all;
}
#scrollToTop {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* padding: 8px 12px; */
    background-color: var(--accent-primary);
    color: var(--text-primary);
    border: none;
    border-radius: 20px;
    width: 100%;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background-color: var(--dark-bg);
    border-radius: 5px;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Wallet */
.wallet-header {
    font-size: 18px;
    font-weight: bold;
    color: var(--accent-primary);
    margin-bottom: 10px;
}

.wallet-balance {
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.wallet-balance span {
    color: var(--text-secondary);
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    z-index: 3100;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.hamburger.active div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active div:nth-child(2) {
    opacity: 0;
}

.hamburger.active div:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Animation for Menu Opening */
@keyframes slideIn {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}


/* Chat */
.chat-input {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.message {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    padding: 10px 14px;
    border-radius: 12px;
}

.message.seller {
    background: var(--accent-primary);
    margin-left: auto;
}

.message.merchant {
    background: var(--border);
    margin-right: auto;
}

.message.sent {
    align-items: end;
}

.message.received {
    align-items: flex-start;
}

.message-content {
    max-width: 75%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
}

.message.sent .message-content,
.message.seller .message-content {
    background-color: var(--accent-primary);
    color: var(--text-primary);
}

.message.received .message-content,
.message.merchant .message-content {
    background-color: #2a2a2a;
    color: var(--text-primary);
}

.message-meta,
.timestamp {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* Rating */
.rating-container {
    background-color: #1e1e1e;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}

.rating-stars {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.rating-stars input {
    display: none;
}

.rating-stars label {
    font-size: 24px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.2s ease;
}

.rating-stars input:checked~label,
.rating-stars label:hover,
.rating-stars label:hover~label {
    color: var(--accent-primary);
}

/* Report and Order */
.report-container,
.order-container {
    background-color: #1e1e1e;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}

.order-info,
.order-details {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.order-header {
    font-size: 18px;
    font-weight: bold;
    color: var(--accent-primary);
    margin-bottom: 10px;
}

.order-file {
    margin: 10px 0;
}

.order-file img {
    max-width: 100%;
    border-radius: 8px;
    cursor: pointer;
}

/* Socials */
.socials {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.socials button {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    background: #1a1f2e;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
}

.socials button:hover {
    background: #232a3d;
    transform: scale(1.05);
}

.socials img {
    width: 18px;
    height: 18px;
}

/* Deposit */
.table-records {
    margin: 20px 0px;
}

.tips-section {
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.7);
    margin-left: 20px;
    max-width: 300px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.tips-section h3 {
    color: var(--accent-primary);
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.tips-section ul {
    list-style: none;
    padding: 0;
}

.tips-section li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
}

.tips-section li::before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: var(--warning);
    font-weight: bold;
}

.container-deposit {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 10px;
}

.center-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    background: var(--secondary-bg);
}

.banner {
    height: 500px;
}

.banner img {
    height: 100% !important;
}

/* Navigation */
.navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.navigation button {
    background-color: var(--accent-primary);
    color: var(--text-primary);
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.navigation button:hover {
    background-color: var(--accent-secondary);
}

.navigation button:disabled {
    background-color: var(--text-secondary);
    cursor: not-allowed;
}

/* Media Queries */
@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
    }

    nav.menu {
        display: none !important;
    }


    .asside {
        display: none;
    }

    .panel {
        width: 100%;
    }

    .menu {
        display: none;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
    }

    .hamburger div {
        width: 25px;
        height: 3px;
        background: var(--text-primary);
        transition: all 0.3s;
    }

    .hamburger:hover div {
        background: var(--accent-primary);
    }

    .menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--secondary-bg);
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    }

    .menu-item-nav {
        width: 100%;
        display: none;
    }

    .menu-item-nav>a {
        font-size: 14px;
        padding: 12px;
    }

    .dropdown {
        position: static;
        width: 100%;
        background: #1e1f2e;
    }

    .right {
        flex: 1;
        justify-content: flex-end;
    }



    .search {
        flex: 0 0 100%;
        margin-top: 10px;
    }

    .center-container {
        display: grid;
        grid-template-columns: 1fr;
    }

    .banner {
        display: none;
    }

    .kyc-container {
        padding: 20px;
    }

    .kyc-container.grid {
        grid-template-columns: 1fr;
    }

    .container.grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 20px;
        margin: 10px;
    }

    .container.ticket {
        padding: 20px;
    }

    .header,
    .ticket-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .header h1,
    .ticket-header h1 {
        font-size: 24px;
    }

    .card {
        padding: 20px;
    }

    .id-photo .status {
        flex-direction: column;
        align-items: center;
    }

    .id-photo select {
        width: 100%;
    }

    .progress-bar {
        flex-wrap: wrap;
    }

    .progress-step {
        flex: 0 1 20%;
    }

    .id-photo .upload {
        flex-direction: column;
        align-items: center;
    }

    .upload .front-id,
    .upload .back-id {
        width: 100%;
        max-width: 300px;
    }

    .container-deposit {
        flex-direction: column;
    }

    .tips-section {
        margin-left: 0;
        margin-top: 20px;
    }
}

@media (max-width: 600px) {
    .container {
        margin: 20px;
        padding: 16px;
    }

    .container.ticket {
        margin: 20px;
        padding: 16px;
    }

    .custom-table {
        display: none;
    }

    .order-card {
        display: block;
    }

    .dropdown-box {
        width: 100%;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .navigation {
        flex-direction: column;
    }

    .navigation button {
        margin-bottom: 10px;
        width: 100%;
    }

    .kyc-container h2 {
        font-size: 20px;
    }

    .photo-requirements h1 {
        font-size: 18px;
    }

    .id-photo .status img {
        width: 60px;
        height: 40px;
    }

    .upload img {
        max-width: 120px;
    }

    .modal-content {
        width: 95%;
        padding: 15px;
    }

    .modal-header h2 {
        font-size: 18px;
    }

    .modal-body p {
        font-size: 14px;
    }

    .modal-btn {
        padding: 10px 15px;
        font-size: 13px;
    }

    .popup {
        max-width: 95%;
        right: 10px;
        top: 10px;
        padding: 12px;
    }

    .popup-header h3 {
        font-size: 16px;
    }

    .popup-body {
        font-size: 13px;
    }

    .popup-btn {
        padding: 7px 12px;
        font-size: 12px;
    }

    .main-content h1 {
        font-size: 32px;
    }

    .main-content p {
        font-size: 16px;
    }

    .trade-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}
.blog-header {
    border-bottom: 1px solid var(--border);
    background-color: var(--dark-bg);
}

.blog-header h2 {
    color: var(--text-primary);
    font-size: 24px;
    margin-bottom: 10px;
}

.blog-search {
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
}

.blog-search input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--secondary-bg);
    color: var(--text-secondary);
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.blog-search input:focus {
    border-color: var(--accent-primary);
}

.featured-post {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background-color: var(--secondary-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 20px;
}

.featured-post img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.featured-post-content {
    flex: 1;
}

.featured-post-content span {
    color: var(--text-secondary);
    font-size: 14px;
}

.featured-post-content h3 {
    color: var(--text-primary);
    font-size: 22px;
    margin: 10px 0;
}

.featured-post-content p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 10px;
}

.featured-post-content .date {
    color: var(--text-secondary);
    font-size: 12px;
}

.categories {
    display: flex;
    gap: 10px;
    padding: 10px 20px;
    border-top: 1px solid var(--border);
    background-color: var(--dark-bg);
    flex-wrap: wrap;
    justify-content: center;
}

.categories a {
    color: var(--text-secondary);
    font-size: 14px;
    border-radius: 15px;
    background-color: var(--secondary-bg);
    padding: 7px 15px;
    transition: all 0.3s ease;
    border: 1px transparent solid;

}

.categories a:hover {
    color: var(--accent-primary);
    border: 1px var(--accent-primary) solid;
}

@media (max-width: 768px) {
    .blog-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .blog-container {
        grid-template-columns: 1fr;
    }

    .blog-card img {
        height: 150px;
    }
}
.article-container {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-top: 20px;

}

.article-header {
    text-align: center;
    margin-bottom: 20px;

}

.article-article-sidebar-item {
    margin-bottom: 20px;
}

.btn.btn-3:hover {
    background-color: var(--accent-secondary);
}

.timeline-item:hover {
    color: var(--accent-primary);
}

#scrollToTop {
    display: none;
}

#scrollToTop.visible {
    display: flex;
}

hr {
    margin-bottom: 20px;
    border-color: black;
}

.article-header h1 {
    color: var(--text-primary);
    font-size: 28px;
    margin-bottom: 10px;
}

.article-header span {
    color: var(--text-secondary);
    font-size: 14px;
}

.article-content {
    color: var(--text-primary);
    line-height: 1.6;
}

.article-content p {
    margin-bottom: 15px;
    font-size: 16px;
}

.article-header img {

    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    margin: 20px 0;
    border-radius: 8px;
}

.article-content img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    margin: 20px 0;
    border-radius: 8px;
}

.article-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.article-actions .btn {
    background-color: var(--accent-primary);
    color: var(--text-primary);
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.article-actions .btn:hover {
    background-color: var(--accent-secondary);
}

.social-share {
    display: flex;
    gap: 10px;
}

.social-share a {
    color: var(--text-secondary);
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-share a:hover {
    color: var(--accent-primary);
}

@media (max-width: 768px) {
    .article-container {
        padding: 15px;
        width: 100%;
    }

    .container.article{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    .article-header h1 {
        font-size: 22px;
    }

    .article-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .article-actions {
        flex-direction: column;
    }

    .article-actions .btn {
        width: 100%;
    }
}