:root {
    --g-bg: linear-gradient(135deg, #07101e 0%, #0d1e30 100%);
    --g-card: rgba(224, 242, 254, 0.08);
    --g-border: rgba(224, 242, 254, 0.15);
    --g-ice: #e0f2fe;
    --g-glow: #38bdf8;
    --g-text: #f0f9ff;
    --g-text-sub: #7dd3fc;
    --g-red: #ef4444;
}
body.glacier-body {
    margin: 0;
    padding: 0;
    background: var(--g-bg);
    background-attachment: fixed;
    color: var(--g-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
}
a {
    color: var(--g-text);
    text-decoration: none;
    transition: color 0.3s;
}
a:hover {
    color: var(--g-glow);
}
.glacier-header {
    height: 64px;
    background: var(--g-card);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--g-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.glacier-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}
.glacier-logo img {
    height: 24px;
}
.glacier-header-nav {
    display: flex;
    gap: 20px;
}
.glacier-header-link {
    color: var(--g-text-sub);
    font-weight: 600;
}
.glacier-header-link.glacier-active, .glacier-header-link:hover {
    color: var(--g-ice);
}
.glacier-notice-bar {
    max-width: 1200px;
    margin: 20px auto 0;
    padding: 0 20px;
}
.glacier-notice-inner {
    background: var(--g-card);
    border: 1px solid var(--g-border);
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.glacier-notice-dot {
    width: 6px;
    height: 6px;
    background: var(--g-glow);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--g-glow);
}
.glacier-notice-text {
    font-size: 13px;
    color: var(--g-text);
}
.glacier-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}
.glacier-accordion {
    display: flex;
    gap: 16px;
    flex-direction: column;
    width: 100%;
}
@media (min-width: 1024px) {
    .glacier-accordion {
        flex-direction: row;
        height: 600px;
    }
    .glacier-column {
        flex: 1;
        transition: flex 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        overflow: hidden;
    }
    .glacier-accordion:hover .glacier-column {
        flex: 0.6;
    }
    .glacier-accordion .glacier-column:hover {
        flex: 1.8;
        border-color: var(--g-glow);
        box-shadow: 0 0 20px rgba(56, 189, 248, 0.15);
    }
}
.glacier-column {
    background: var(--g-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--g-border);
    border-radius: 16px;
    padding: 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.glacier-column-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--g-ice);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--g-border);
    white-space: nowrap;
}
.glacier-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    height: 100%;
    overflow-y: auto;
}
@media (min-width: 1024px) {
    .glacier-column:hover .glacier-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.glacier-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--g-border);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s;
}
.glacier-card:hover {
    border-color: var(--g-glow);
    background: rgba(56, 189, 248, 0.05);
}
.glacier-badge-auto {
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid var(--g-glow);
    color: var(--g-glow);
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}
.glacier-product-img-box {
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--g-border);
    flex-shrink: 0;
}
.glacier-product-img-box img {
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
}
.glacier-product-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.glacier-product-name {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}
.glacier-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
}
.glacier-product-price {
    font-size: 15px;
    font-weight: 800;
    color: var(--g-glow);
}
.glacier-product-sales {
    font-size: 11px;
    color: var(--g-text-sub);
}
.glacier-detail-flex {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media (min-width: 768px) {
    .glacier-detail-flex {
        flex-direction: row;
    }
    .glacier-detail-left {
        flex: 1;
    }
    .glacier-detail-right {
        width: 380px;
        flex-shrink: 0;
    }
}
.glacier-detail-img {
    width: 100%;
    height: 200px;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid var(--g-border);
}
.glacier-detail-img img {
    max-width: 40%;
    max-height: 80%;
    object-fit: contain;
}
.glacier-detail-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.3;
}
.glacier-status-tag {
    display: inline-block;
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--g-border);
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 8px;
    color: var(--g-text-sub);
    font-weight: 600;
}
.glacier-desc-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--g-glow);
    margin-bottom: 15px;
}
.glacier-desc-content {
    line-height: 1.8;
    color: var(--g-text);
}
.glacier-desc-content img {
    max-width: 100%;
}
.glacier-price-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.3);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--g-border);
    margin-bottom: 20px;
}
.glacier-price-large {
    font-size: 24px;
    font-weight: 800;
    color: var(--g-glow);
}
.glacier-stock-status {
    font-size: 12px;
    color: var(--g-text-sub);
    font-weight: 600;
}
.glacier-form-item {
    margin-bottom: 16px;
}
.glacier-form-label {
    display: block;
    font-size: 12px;
    color: var(--g-text-sub);
    margin-bottom: 6px;
    font-weight: 600;
}
.glacier-form-input {
    width: 100%;
    height: 42px;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--g-border);
    border-radius: 8px;
    color: #fff;
    padding: 0 12px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.3s;
    font-weight: 600;
}
.glacier-form-input:focus {
    border-color: var(--g-glow);
}
.glacier-submit-btn {
    width: 100%;
    height: 46px;
    background: var(--g-card);
    border: 1px solid var(--g-border);
    color: var(--g-glow);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}
.glacier-submit-btn:hover {
    border-color: var(--g-glow);
    background: rgba(56, 189, 248, 0.05);
}
.glacier-submit-btn:disabled {
    background: rgba(0,0,0,0.1);
    color: #5c5f66;
    border-color: var(--g-border);
    cursor: not-allowed;
}
.glacier-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.glacier-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--g-border);
    padding: 16px 20px;
    border-radius: 12px;
    flex-wrap: wrap;
    gap: 12px;
}
.glacier-item-name {
    flex: 1;
    min-width: 200px;
    font-weight: 700;
}
.glacier-item-price {
    font-weight: 800;
    color: var(--g-glow);
}
.glacier-item-stock {
    font-size: 12px;
    color: var(--g-text-sub);
    font-weight: 600;
}
.glacier-btn-buy {
    background: var(--g-card);
    border: 1px solid var(--g-border);
    color: var(--g-glow);
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
}
.glacier-btn-buy:hover {
    border-color: var(--g-glow);
}
.glacier-btn-lock {
    background: rgba(0,0,0,0.1);
    color: #5c5f66;
    border: 1px solid var(--g-border);
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 12px;
    cursor: not-allowed;
}
.glacier-small-box {
    max-width: 500px;
    margin: 40px auto;
}
.glacier-tab-bar {
    display: flex;
    border-bottom: 2px solid var(--g-border);
    margin-bottom: 20px;
}
.glacier-tab-item {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    font-size: 13px;
    color: var(--g-text-sub);
    font-weight: 700;
    border-bottom: 3px solid transparent;
}
.glacier-tab-item.glacier-active {
    color: var(--g-text);
    border-bottom-color: var(--g-glow);
}
.glacier-table {
    width: 100%;
    border-collapse: collapse;
}
.glacier-table-header {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: rgba(0,0,0,0.3);
    padding: 12px;
    font-size: 12px;
    color: var(--g-text-sub);
    text-align: center;
    border-bottom: 2px solid var(--g-border);
}
.glacier-table-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 16px 12px;
    text-align: center;
    align-items: center;
    border-bottom: 2px solid var(--g-border);
}
.glacier-payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.glacier-pay-btn {
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--g-border);
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s;
}
.glacier-pay-btn:hover {
    border-color: var(--g-glow);
}
.glacier-pay-btn img {
    height: 24px;
}
.glacier-footer {
    background: var(--g-card);
    border-top: 1px solid var(--g-border);
    padding: 30px 0;
    margin-top: 60px;
}
.glacier-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;
}
.glacier-footer-copyright {
    font-size: 12px;
    color: var(--g-text-sub);
    font-weight: 600;
}
.glacier-footer-nav {
    display: flex;
    gap: 20px;
}
.glacier-footer-nav a {
    font-size: 12px;
    color: var(--g-text-sub);
    font-weight: 600;
}
.glacier-footer-nav a:hover {
    color: var(--g-glow);
}
.glacier-title {
    font-size: 18px;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--g-glow);
}
.glacier-title-sub {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}
.glacier-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 2px dashed var(--g-border);
}
.glacier-price-total {
    border-bottom: none;
    font-size: 16px;
    font-weight: 800;
    color: var(--g-glow);
    margin-top: 10px;
}
.glacier-pay-success {
    color: #10b981;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
}
.glacier-mobile-card {
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--g-border);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.glacier-mt-20 {
    margin-top: 20px;
}
@media (max-width: 768px) {
    .glacier-footer-inner {
        flex-direction: column;
        text-align: center;
    }
}