:root {
    --l-bg-gradient: linear-gradient(135deg, #0d0f14 0%, #151922 50%, #1c2331 100%);
    --l-card-bg: rgba(10, 11, 15, 0.85);
    --l-border: rgba(255, 255, 255, 0.08);
    --l-highlight: #ffffff;
    --l-text: #e2e8f0;
    --l-text-sub: #718096;
    --l-red: #ef4444;
}
body.liquidchrome-body {
    margin: 0;
    padding: 0;
    background: var(--l-bg-gradient);
    background-attachment: fixed;
    color: var(--l-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
}
a {
    color: var(--l-text);
    text-decoration: none;
    transition: color 0.3s;
}
a:hover {
    color: var(--l-highlight);
}
.liquidchrome-header {
    height: 64px;
    background: var(--l-card-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--l-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.liquidchrome-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}
.liquidchrome-logo img {
    height: 24px;
}
.liquidchrome-header-nav {
    display: flex;
    gap: 20px;
}
.liquidchrome-header-link {
    color: var(--l-text-sub);
    font-weight: 500;
}
.liquidchrome-header-link.liquidchrome-active, .liquidchrome-header-link:hover {
    color: var(--l-highlight);
}
.liquidchrome-notice-bar {
    max-width: 1200px;
    margin: 20px auto 0;
    padding: 0 20px;
}
.liquidchrome-notice-inner {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--l-border);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.liquidchrome-notice-dot {
    width: 8px;
    height: 8px;
    background: var(--l-highlight);
    border-radius: 50%;
    box-shadow: 0 0 10px #fff;
}
.liquidchrome-notice-text {
    font-size: 13px;
    color: var(--l-text);
}
.liquidchrome-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}
.liquidchrome-logo-center-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}
.liquidchrome-logo-center-bar img {
    height: 40px;
}
.liquidchrome-section-title {
    font-size: 16px;
    font-weight: 700;
    margin: 30px 0 15px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}
.liquidchrome-section-title::before {
    content: "";
    width: 4px;
    height: 14px;
    background: var(--l-highlight);
    border-radius: 2px;
}
.liquidchrome-grid {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
@media (min-width: 1024px) {
    .liquidchrome-grid {
        display: flex;
        flex-wrap: nowrap;
    }
    .liquidchrome-card {
        flex: 1;
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    .liquidchrome-grid:hover .liquidchrome-card {
        flex: 0.7;
        opacity: 0.4;
        filter: blur(1px) grayscale(0.3);
    }
    .liquidchrome-grid .liquidchrome-card:hover {
        flex: 1.6;
        opacity: 1;
        filter: none;
        border-color: rgba(255, 255, 255, 0.3);
        box-shadow: 0 12px 24px rgba(0,0,0,0.5), 0 0 15px rgba(255,255,255,0.1);
    }
}
.liquidchrome-card {
    background: var(--l-card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--l-border);
    border-radius: 12px;
    padding: 24px;
    box-sizing: border-box;
    position: relative;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
@media (max-width: 1023px) {
    .liquidchrome-card {
        width: calc(50% - 8px);
    }
}
@media (max-width: 600px) {
    .liquidchrome-card {
        width: 100%;
    }
}
.liquidchrome-badge-auto {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--l-border);
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
    z-index: 10;
}
.liquidchrome-product-img-box {
    width: 100%;
    aspect-ratio: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid var(--l-border);
}
.liquidchrome-product-img-box img {
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
}
.liquidchrome-product-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.liquidchrome-product-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.4;
}
.liquidchrome-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.liquidchrome-product-price {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}
.liquidchrome-product-sales {
    font-size: 12px;
    color: var(--l-text-sub);
}
.liquidchrome-detail-flex {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media (min-width: 768px) {
    .liquidchrome-detail-flex {
        flex-direction: row;
    }
    .liquidchrome-detail-left {
        flex: 1;
    }
    .liquidchrome-detail-right {
        width: 380px;
        flex-shrink: 0;
    }
}
.liquidchrome-detail-img {
    width: 100%;
    height: 200px;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--l-border);
}
.liquidchrome-detail-img img {
    max-width: 40%;
    max-height: 80%;
    object-fit: contain;
}
.liquidchrome-detail-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.3;
}
.liquidchrome-status-tag {
    display: inline-block;
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--l-border);
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    color: var(--l-text-sub);
}
.liquidchrome-desc-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}
.liquidchrome-desc-content {
    line-height: 1.8;
    color: var(--l-text);
}
.liquidchrome-desc-content img {
    max-width: 100%;
}
.liquidchrome-price-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.3);
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--l-border);
    margin-bottom: 20px;
}
.liquidchrome-price-large {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
}
.liquidchrome-stock-status {
    font-size: 12px;
    color: var(--l-text-sub);
}
.liquidchrome-form-item {
    margin-bottom: 16px;
}
.liquidchrome-form-label {
    display: block;
    font-size: 12px;
    color: var(--l-text-sub);
    margin-bottom: 6px;
}
.liquidchrome-form-input {
    width: 100%;
    height: 42px;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--l-border);
    border-radius: 6px;
    color: #fff;
    padding: 0 12px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.3s;
}
.liquidchrome-form-input:focus {
    border-color: var(--l-highlight);
}
.liquidchrome-submit-btn {
    width: 100%;
    height: 46px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--l-border);
    color: #fff;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}
.liquidchrome-submit-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--l-highlight);
}
.liquidchrome-submit-btn:disabled {
    background: rgba(255,255,255,0.01);
    color: #5c5f66;
    border-color: var(--l-border);
    cursor: not-allowed;
}
.liquidchrome-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.liquidchrome-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--l-border);
    padding: 16px 20px;
    border-radius: 8px;
    flex-wrap: wrap;
    gap: 12px;
}
.liquidchrome-item-name {
    flex: 1;
    min-width: 200px;
    font-weight: 600;
}
.liquidchrome-item-price {
    font-weight: 700;
    color: #fff;
}
.liquidchrome-item-stock {
    font-size: 12px;
    color: var(--l-text-sub);
}
.liquidchrome-btn-buy {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--l-border);
    color: #fff;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.3s;
}
.liquidchrome-btn-buy:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--l-highlight);
}
.liquidchrome-btn-lock {
    background: rgba(255,255,255,0.01);
    color: #5c5f66;
    border: 1px solid var(--l-border);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 12px;
    cursor: not-allowed;
}
.liquidchrome-small-box {
    max-width: 500px;
    margin: 40px auto;
}
.liquidchrome-tab-bar {
    display: flex;
    border-bottom: 1px solid var(--l-border);
    margin-bottom: 20px;
}
.liquidchrome-tab-item {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    font-size: 13px;
    color: var(--l-text-sub);
    font-weight: 500;
    border-bottom: 2px solid transparent;
}
.liquidchrome-tab-item.liquidchrome-active {
    color: #fff;
    border-bottom-color: var(--l-highlight);
}
.liquidchrome-table {
    width: 100%;
    border-collapse: collapse;
}
.liquidchrome-table-header {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: rgba(0,0,0,0.3);
    padding: 12px;
    font-size: 12px;
    color: var(--l-text-sub);
    text-align: center;
    border-bottom: 1px solid var(--l-border);
}
.liquidchrome-table-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 16px 12px;
    text-align: center;
    align-items: center;
    border-bottom: 1px solid var(--l-border);
}
.liquidchrome-payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.liquidchrome-pay-btn {
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--l-border);
    border-radius: 6px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s;
}
.liquidchrome-pay-btn:hover {
    border-color: var(--l-highlight);
}
.liquidchrome-pay-btn img {
    height: 24px;
}
.liquidchrome-footer {
    background: var(--l-card-bg);
    border-top: 1px solid var(--l-border);
    padding: 30px 0;
    margin-top: 60px;
}
.liquidchrome-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 16px;
}
.liquidchrome-footer-copyright {
    font-size: 12px;
    color: var(--l-text-sub);
}
.liquidchrome-footer-nav {
    display: flex;
    gap: 20px;
}
.liquidchrome-footer-nav a {
    font-size: 12px;
    color: var(--l-text-sub);
}
.liquidchrome-footer-nav a:hover {
    color: #fff;
}
.liquidchrome-title {
    font-size: 18px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    color: #fff;
}
.liquidchrome-title-sub {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}
.liquidchrome-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed var(--l-border);
}
.liquidchrome-price-total {
    border-bottom: none;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-top: 10px;
}
.liquidchrome-pay-success {
    color: #10b981;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}
.liquidchrome-mobile-card {
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--l-border);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.liquidchrome-mt-20 {
    margin-top: 20px;
}
@media (max-width: 768px) {
    .liquidchrome-footer-inner {
        flex-direction: column;
        text-align: center;
    }
}