@charset "UTF-8";
@import url('https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy.css');

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Paperlogy', serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: #222222;
    background-color: #f9fafb;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(67, 89, 113, 0);
}

ol,
ul {
    padding: 0;
    margin: 0;
}

b,
strong {
    font-weight: 700;
}

a {
    color: #222;
    text-decoration: none;
    cursor: pointer;
}

h1, h2, h3, h4, h5, h6, p, span {
    margin: 0;
}

th {
    font-weight: 500;
    text-align: inherit;
    text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}

label {
    display: inline-block;
}

button {
    color: #464a53;
    border: none;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
}

button:focus:not(:focus-visible) {
    outline: 0;
}

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

@media (min-width: 769px) {
    .mo-only {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .pc-only {
        display: none !important;
    }
}

.overflow-hidden {
    overflow: hidden !important;
}

::-webkit-scrollbar {
    width: 7px;
    height: 0.6rem;
    scrollbar-width: thin;
}

::-webkit-scrollbar-thumb {
    background-color: rgb(121 120 123);
    border-radius: 10px;
    scrollbar-width: thin;
}

::-webkit-scrollbar-track {
    background: #d7d7d7;
    border-radius: 1rem;
    box-shadow: inset 0px 0px 5px white;
}

.drag-block {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

/* =================PC Header CSS Start================= */
.header-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent !important;
    box-shadow: none !important;
    border-bottom: none !important;
    z-index: 1000;
    height: 70px;
    transition: all 0.4s ease;
}

.header-container.scrolled {
    background-color: #ffffff !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    border-bottom: 1px solid #e0e0e0 !important;
}

.header-container.scrolled-dark {
    background-color: #1a1a1a !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    border-bottom: none !important;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    height: 100%;
    gap: 40px;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-container img {
    height: 40px;
    width: auto;
}

.nav-container {
    display: flex;
    flex: 1;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 16px;
    color: white;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.header-container.scrolled .nav-link {
    color: #000000;
}

.header-container.scrolled-dark .nav-link {
    color: #ffffff;
}

.header-container.scrolled .nav-link:hover {
    color: #e53e3e;
}

.auth-container {
    margin-left: auto;
}

.login-text {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
    cursor: pointer;
}

.header-container.scrolled .login-text {
    color: #000000;
}

.header-container.scrolled-dark .login-text {
    color: #ffffff;
}

.login-text:hover {
    color: #e53e3e;
}

.user-profile {
    position: relative;
    margin-left: auto;
}

.profile-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.profile-trigger:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.header-container.scrolled .profile-trigger:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.profile-image {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-name {
    color: white;
    font-weight: 500;
    font-size: 14px;
}

.header-container.scrolled .profile-name {
    color: #000000;
}

.header-container.scrolled-dark .profile-name {
    color: #fff;
}

.profile-arrow {
    color: white;
    font-size: 12px;
}

.header-container.scrolled .profile-arrow {
    color: #000000;
}

.header-container.scrolled-dark .profile-arrow {
    color: #ffffff;
}

.profile-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.profile-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-skeleton {
    padding: 20px;
}

.skeleton-item {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
    border-radius: 8px;
    margin-bottom: 12px;
}

.skeleton-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.skeleton-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.skeleton-name {
    width: 80px;
    height: 16px;
}

.skeleton-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.skeleton-stat {
    text-align: center;
}

.skeleton-stat-number {
    width: 30px;
    height: 18px;
    margin: 0 auto 4px;
}

.skeleton-stat-desc {
    width: 40px;
    height: 12px;
    margin: 0 auto;
}

.skeleton-menu-item {
    width: 100%;
    height: 20px;
    margin-bottom: 12px;
}

.skeleton-divider {
    width: 100%;
    height: 1px;
    background: #e0e0e0;
    margin: 16px 0;
}

@keyframes skeleton-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.dropdown-content {
    display: none;
}

.dropdown-content.loaded {
    display: block;
}

.dropdown-header {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.dropdown-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.dropdown-profile-image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.dropdown-profile-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
}

.user-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.stat-item {
    text-align: center;
    cursor: pointer;
}

.stat-item .number {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
}

.stat-item .description {
    font-size: 12px;
    color: #666666;
    margin-top: 4px;
}

.inventory-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    cursor: pointer;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
}

.inventory-item:hover {
    color: #e53e3e;
}

.dropdown-section {
    padding: 16px 20px;
    border-bottom: 1px solid #e0e0e0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    text-decoration: none;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.dropdown-item:hover {
    color: #e53e3e;
}

.dropdown-item .badge {
    margin-left: auto;
    background: #e53e3e;
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
}

.logout-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.logout-item:hover {
    background-color: #f8f8f8;
}
/* =================PC Header CSS End================= */

/* =================Mobile Navbar CSS Start================= */
.mobile-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
    height: 56px;
}

.mobile-navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 16px;
}

.mobile-logo {
    display: flex;
    align-items: center;
}

.mobile-logo img {
    height: 32px;
    width: auto;
}

.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #000000;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
/* =================Mobile Navbar CSS End================= */

/* =================Mobile Sidebar CSS Start================= */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.show {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-sidebar.show {
    right: 0;
}

.sidebar-content {
    padding: 0;
}

.sidebar-profile-section {
    position: relative;
    padding: 20px;
    background: #f9fafb;
}

.sidebar-close-in-profile {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 18px;
    color: #000000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.sidebar-close-in-profile:active {
    background: rgba(0, 0, 0, 0.1);
}

.sidebar-profile-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-right: 40px;
}

.sidebar-profile-image {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.sidebar-profile-text h3 {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 4px;
}

.sidebar-profile-level {
    font-size: 12px;
    color: #666666;
    display: flex;
    align-items: center;
    gap: 4px;
}

.sidebar-user-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.sidebar-stat-item {
    text-align: center;
}

.sidebar-stat-number {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 4px;
}

.sidebar-stat-desc {
    font-size: 12px;
    color: #666666;
}

.sidebar-storage-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.sidebar-storage-btn:hover {
    background-color: #f9fafb;
}

.sidebar-guest-section {
    position: relative;
    padding: 20px;
    padding-top: 40px;
    background: #f9fafb;
}

.sidebar-close-in-guest {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 18px;
    color: #000000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.sidebar-close-in-guest:active {
    background: rgba(0, 0, 0, 0.1);
}

.sidebar-welcome {
    text-align: center;
    margin-bottom: 20px;
}

.sidebar-welcome h2 {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 4px;
}

.sidebar-welcome p {
    color: #666666;
    font-size: 14px;
}

.sidebar-login-btn {
    display: block;
    width: 100%;
    background: #e53e3e;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.sidebar-login-btn:hover {
    background: #dc2626;
}

.sidebar-menu-section {
    padding: 8px 0;
}

.sidebar-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: #000000;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.sidebar-menu-item:active {
    background-color: #f9fafb;
}

.sidebar-menu-item i {
    width: 20px;
    font-size: 16px;
    color: #666666;
}

.sidebar-menu-badge {
    margin-left: auto;
    background: #f0f0f0;
    color: #666666;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
}

.sidebar-menu-new {
    margin-left: auto;
    background: #e53e3e;
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
}

.sidebar-menu {
    list-style: none;
    padding: 8px 0;
}

.sidebar-menu li {
    margin: 0;
}

.sidebar-menu a {
    display: block;
    color: #000000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 20px;
    transition: background-color 0.3s ease;
}

.sidebar-menu a:active {
    background-color: #f9fafb;
}

.sidebar-divider {
    height: 8px;
    background: #f0f0f0;
    margin: 0;
}

.sidebar-logout-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    color: #000000;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.sidebar-logout-btn:active {
    background-color: #f9fafb;
}

.sidebar-logout-btn i {
    width: 20px;
    font-size: 16px;
    color: #666666;
}
/* =================Mobile Sidebar CSS Start================= */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.show {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100%;
    background: white;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    transition: right 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.mobile-sidebar.show {
    right: 0;
}

/* body 스크롤 막기 */
body.sidebar-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

.sidebar-content {
    padding: 0;
    min-height: 100%;
}

.sidebar-profile-section {
    position: relative;
    padding: 20px;
    background: #f9fafb;
}

.sidebar-close-in-profile {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 18px;
    color: #000000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.sidebar-close-in-profile:active {
    background: rgba(0, 0, 0, 0.1);
}

.sidebar-profile-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-right: 40px;
}

.sidebar-profile-image {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.sidebar-profile-text h3 {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 4px;
}

.sidebar-profile-level {
    font-size: 12px;
    color: #666666;
    display: flex;
    align-items: center;
    gap: 4px;
}

.sidebar-user-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.sidebar-stat-item {
    text-align: center;
}

.sidebar-stat-number {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 4px;
}

.sidebar-stat-desc {
    font-size: 12px;
    color: #666666;
}

.sidebar-storage-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.sidebar-storage-btn:hover {
    background-color: #f9fafb;
}

.sidebar-guest-section {
    position: relative;
    padding: 20px;
    background: #f9fafb;
}

.sidebar-close-in-guest {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 18px;
    color: #000000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.sidebar-close-in-guest:active {
    background: rgba(0, 0, 0, 0.1);
}

.sidebar-welcome {
    text-align: center;
    margin-bottom: 20px;
}

.sidebar-welcome h2 {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 4px;
}

.sidebar-welcome p {
    color: #666666;
    font-size: 14px;
}

.sidebar-login-btn {
    display: block;
    width: 100%;
    background: #e53e3e;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.sidebar-login-btn:hover {
    background: #dc2626;
}

.sidebar-menu-section {
    padding: 8px 0;
}

.sidebar-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: #000000;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.sidebar-menu-item:active {
    background-color: #f9fafb;
}

.sidebar-menu-item i {
    width: 20px;
    font-size: 16px;
    color: #666666;
}

.sidebar-menu-badge {
    margin-left: auto;
    background: #f0f0f0;
    color: #666666;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
}

.sidebar-menu-new {
    margin-left: auto;
    background: #e53e3e;
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
}

.sidebar-menu {
    list-style: none;
    padding: 8px 0;
}

.sidebar-menu li {
    margin: 0;
}

.sidebar-menu a {
    display: block;
    color: #000000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 20px;
    transition: background-color 0.3s ease;
}

.sidebar-menu a:active {
    background-color: #f9fafb;
}

.sidebar-divider {
    height: 8px;
    background: #f0f0f0;
    margin: 0;
}

.sidebar-logout-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    color: #000000;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.sidebar-logout-btn:active {
    background-color: #f9fafb;
}

.sidebar-logout-btn i {
    width: 20px;
    font-size: 16px;
    color: #666666;
}
/* =================Mobile Sidebar CSS End================= */

/* =================Footer CSS Start================= */
.footer-container {
    background: #1a1a1a;
    color: white;
    padding: 40px 0 30px;
    margin-top: 100px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo img {
    height: 32px;
    width: auto;
}

/* Company Info Dropdown */
.company-info-dropdown {
    position: relative;
}

.dropdown-toggle {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    font-family: inherit;
    text-align: left;
}

.dropdown-toggle:hover {
    color: white;
}

.dropdown-icon {
    transition: transform 0.3s ease;
}

.dropdown-toggle.active .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease, margin-top 0.4s ease;
    margin-top: 0;
}

.dropdown-content.active {
    grid-template-rows: 1fr;
    margin-top: 15px;
}

.dropdown-content-inner {
    overflow: hidden;
}

.dropdown-content-padding {
    padding: 0;
}

.dropdown-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.dropdown-content p:last-child {
    margin-bottom: 0;
}

.dropdown-content p strong {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* Footer Links */
.footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links .divider {
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .footer-container {
        padding: 30px 0 20px;
        margin-top: 60px;
    }

    .footer-content {
        padding: 0 16px;
    }

    .footer-left {
        gap: 16px;
    }

    .footer-logo img {
        height: 28px;
    }

    .dropdown-toggle {
        font-size: 13px;
    }

    .dropdown-content.active {
        margin-top: 12px;
    }

    .dropdown-content p {
        font-size: 11px;
        line-height: 1.7;
        margin-bottom: 6px;
    }

    .footer-links {
        font-size: 11px;
        gap: 8px;
        line-height: 1.6;
    }

    .footer-links .divider {
        margin: 0 2px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 25px 0 20px;
        margin-top: 50px;
    }

    .footer-content {
        padding: 0 12px;
    }

    .footer-left {
        gap: 14px;
    }

    .footer-logo img {
        height: 24px;
    }

    .dropdown-toggle {
        font-size: 12px;
    }

    .dropdown-content.active {
        margin-top: 10px;
    }

    .dropdown-content p {
        font-size: 10px;
        line-height: 1.6;
        margin-bottom: 5px;
        word-break: keep-all;
    }

    .footer-links {
        font-size: 10px;
        gap: 6px;
    }

    .footer-links a {
        padding: 2px 0;
    }
}
/* =================Footer CSS End================= */


.coin_ico {
    background: url(/assets/image/icon/coin.svg) no-repeat;
}

.coin_ico.s16 { width: 16px; height: 16px; }
.coin_ico.s18 { width: 18px; height: 18px; }
.coin_ico.s20 { width: 20px; height: 20px; }
.coin_ico.s24 { width: 24px; height: 24px; }