* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Microsoft YaHei', sans-serif;
}

:root {
    --primary-color: #8a2be2;
    --secondary-color: #ffd700;
    --dark-bg: #0f0c1d;
    --content-bg: rgba(25, 20, 44, 0.9);
    --text-color: #e6e6e6;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    background-image: linear-gradient(rgba(15, 12, 29, 0.9), rgba(15, 12, 29, 0.9)),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="%23100c1d" width="100" height="100"/><path fill="%231d1638" d="M0 0L100 100" stroke-width="0"/></svg>');
    background-size: cover;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏样式 */
nav {
    background-color: rgba(15, 12, 29, 0.8);
    position: fixed;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 10px;
    border-radius: 4px;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.download-btn {
    background-color: rgba(15, 12, 29, 0.8);
        position: fixed;
        width: 100%;
        z-index: 1000;
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.download-btn:hover {
    background-color: rgba(15, 12, 29, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(15, 12, 29, 0.8);
}

/* 首页样式 */
#home {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="600" height="400" viewBox="0 0 600 400"><rect fill="%230f0c1d" width="600" height="400"/><path d="M0 200L600 200" stroke="%2333265c" stroke-width="2"/><path d="M300 0L300 400" stroke="%2333265c" stroke-width="2"/><circle cx="300" cy="200" r="100" fill="%2333265c" opacity="0.5"/></svg>');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    font-family: 'Ma Shan Zheng', cursive;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.cta-button:hover {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.3);
}

/* 通用区块样式 */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-family: 'Ma Shan Zheng', cursive !important;
    color: var(--secondary-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    font-family: 'Ma Shan Zheng', cursive !important;
    background: var(--primary-color);
    margin: 15px auto;
    border-radius: 2px;
}

/* 游戏介绍样式 */
.about-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.about-card {
    background: var(--content-bg);
    border-radius: 10px;
    padding: 30px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(138, 43, 226, 0.3);
    animation: fadeInUp 0.8s ease-out both;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.about-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* 鸣谢部分样式 */
.credits-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.credit-category {
    background: var(--content-bg);
    border-radius: 10px;
    padding: 30px;
    width: 300px;
    border: 1px solid rgba(138, 43, 226, 0.3);
    animation: fadeInUp 0.8s ease-out both;
}

.credit-category h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.credit-category ul {
    list-style: none;
}

.credit-category li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.credit-category li:last-child {
    border-bottom: none;
}

/* 下载部分样式 */
.download-content {
    text-align: center;
    padding: 40px 0;
}

.download-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.download-main-btn {
    padding: 15px 40px;
    font-size: 1.2rem;
    background: linear-gradient(45deg, var(--primary-color), #6a1cb9);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.download-main-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.4);
}

/* QQ群按钮样式 */
.qq-section {
    text-align: center;
    padding: 40px 0;
}

.qq-btn {
    padding: 12px 30px;
    background-color: #12b7f5;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.qq-btn:hover {
    background-color: #0e99d0;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(18, 183, 245, 0.4);
}

/* 模态框样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--content-bg);
    margin: auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.5);
    position: relative;
    border: 1px solid var(--primary-color);
    animation: modalFade 0.3s;
}

@keyframes modalFade {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: var(--secondary-color);
}

.modal-content h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

/* 下载选项样式 */
.download-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.download-option {
    background: rgba(15, 12, 29, 0.7);
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
    border: 1px solid rgba(138, 43, 226, 0.5);
}

.download-option h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.download-option p {
    margin-bottom: 10px;
}

.download-option-btn {
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s;
}

.download-option-btn:hover {
    background-color: #6a1cb9;
    transform: translateY(-2px);
}

/* QQ群模态框样式 */
.qq-groups {
    margin-bottom: 30px;
}

.qq-group {
    background: rgba(15, 12, 29, 0.7);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid rgba(18, 183, 245, 0.5);
}

.qq-group h3 {
    color: #12b7f5;
    margin-bottom: 15px;
    text-align: center;
}

.qq-group ul {
    list-style: none;
}

.qq-group li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.qq-group li:last-child {
    border-bottom: none;
}

.qq-description {
    background: rgba(15, 12, 29, 0.7);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(18, 183, 245, 0.5);
}

.qq-description h3 {
    color: #12b7f5;
    margin-bottom: 15px;
}

.qq-description ul {
    margin: 15px 0;
    padding-left: 20px;
}

.qq-description li {
    margin-bottom: 8px;
}

/* 页脚样式 */
footer {
    background-color: rgba(15, 12, 29, 0.9);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(138, 43, 226, 0.3);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
    }

    .nav-links {
        margin-top: 15px;
    }

    .nav-links li {
        margin: 0 10px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-content,
    .credits-content {
        flex-direction: column;
        align-items: center;
    }

    .download-options {
        flex-direction: column;
        align-items: center;
    }
}

/* 网盘下载模态框样式 */
.pan-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.pan-modal-content {
    background-color: var(--content-bg);
    margin: auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.5);
    position: relative;
    border: 1px solid var(--primary-color);
    animation: modalFade 0.3s;
}

:root {
    --baidu-color: #2932e1;
    --quark-color: #ff2f56;
    --ali-color: #00a3ef;
}

.pan-list {
    margin: 20px 0;
}

.pan-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(15, 12, 29, 0.7);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.pan-info {
    display: flex;
    align-items: center;
    flex: 1;
}

.pan-icon {
    font-size: 24px;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.baidu-icon {
    color: var(--baidu-color);
}

.quark-icon {
    color: var(--quark-color);
}

.ali-icon {
    color: var(--ali-color);
}

.pan-link {
    flex: 1;
    word-break: break-all;
    margin-right: 15px;
}

.copy-btn {
    padding: 8px 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.copy-btn:hover {
    background-color: #6a1cb9;
}

.hint {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #aaa;
}

/* 提示框样式 */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(25, 20, 44, 0.9);
    color: var(--secondary-color);
    padding: 15px 25px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 3000;
    display: none;
    animation: toastFade 0.3s;
    border: 1px solid var(--primary-color);
}

@keyframes toastFade {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* 响应式设计补充 */
@media (max-width: 768px) {
    .pan-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .pan-info {
        width: 100%;
        margin-bottom: 10px;
    }

    .copy-btn {
        align-self: flex-end;
    }
}

/* 网盘下载模态框样式 */
.pan-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.pan-modal-content {
    background-color: var(--content-bg);
    margin: auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.5);
    position: relative;
    border: 1px solid var(--primary-color);
    animation: modalFade 0.3s;
}

:root {
    --baidu-color: #2932e1;
    --quark-color: #ff2f56;
    --ali-color: #00a3ef;
}

.pan-list {
    margin: 20px 0;
}

.pan-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(15, 12, 29, 0.7);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.pan-info {
    display: flex;
    align-items: center;
    flex: 1;
}

.pan-icon {
    font-size: 24px;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.baidu-icon {
    color: var(--baidu-color);
}

.quark-icon {
    color: var(--quark-color);
}

.ali-icon {
    color: var(--ali-color);
}

.pan-link {
    flex: 1;
    word-break: break-all;
    margin-right: 15px;
}

.copy-btn {
    padding: 8px 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.copy-btn:hover {
    background-color: #6a1cb9;
}

.hint {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #aaa;
}

/* 网盘下载模态框样式 */
.pan-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.pan-modal-content {
    background-color: var(--content-bg);
    margin: auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.5);
    position: relative;
    border: 1px solid var(--primary-color);
    animation: modalFade 0.3s;
}

:root {
    --baidu-color: #2932e1;
    --quark-color: #ff2f56;
    --ali-color: #00a3ef;
}

.pan-list {
    margin: 20px 0;
}

.pan-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(15, 12, 29, 0.7);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.pan-info {
    display: flex;
    align-items: center;
    flex: 1;
}

.pan-icon {
    font-size: 24px;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.baidu-icon {
    color: var(--baidu-color);
}

.quark-icon {
    color: var(--quark-color);
}

.ali-icon {
    color: var(--ali-color);
}

.pan-link {
    flex: 1;
    word-break: break-all;
    margin-right: 15px;
}

.copy-btn {
    padding: 8px 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.copy-btn:hover {
    background-color: #6a1cb9;
}

.hint {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #aaa;
}

/* 提示框样式 */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(25, 20, 44, 0.9);
    color: var(--secondary-color);
    padding: 15px 25px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 3000;
    display: none;
    animation: toastFade 0.3s;
    border: 1px solid var(--primary-color);
}

@keyframes toastFade {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* 响应式设计补充 */
@media (max-width: 768px) {
    .pan-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .pan-info {
        width: 100%;
        margin-bottom: 10px;
    }

    .copy-btn {
        align-self: flex-end;
    }
}

/* ===== 造梦西游·国风换皮覆盖层 ===== */
/* 仅做视觉替换，零布局改动 */

/* --- 0. 字体 --- */
@import url('https://fonts.googleapis.com/css2?family=Ma+Shan+Zheng&display=swap');

/* --- 1. 变量覆盖 --- */
:root {
  --primary-color: #000000 !important;      /* 玄紫 */
  --secondary-color: #e6c35c !important;    /* 古铜金 */
  --dark-bg: #0a0f1d !important;            /* 墨夜幕 */
  --content-bg: rgba(22, 26, 36, 0.92) !important;
  --text-color: #dcd3b8 !important;         /* 旧纸黄 */
  --border-glow: rgba(230, 195, 92, 0.35) !important;
}

/* --- 2. 背景纹理 --- */
body {
  background-color: var(--dark-bg) !important;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(230, 195, 92, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(94, 58, 158, 0.06) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 600'%3E%3Cfilter id='ink'%3E%3CfeTurbulence baseFrequency='0.02' numOctaves='3' /%3E%3CfeColorMatrix values='0 0 0 0 .1 0 0 0 0 .15 0 0 0 0 .2 0 0 0 0 1' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23ink)' opacity='.06'/%3E%3C/svg%3E") !important;
  background-attachment: fixed !important;
}

/* --- 3. 导航栏光晕 --- */
nav {
  background: rgba(10, 15, 28, 0.85) !important;
  border-bottom: 1px solid var(--border-glow) !important;
}

.logo,
.section-title,
.hero-content h1 {
  font-family: 'Ma Shan Zheng', cursive !important;
}

/* --- 4. 英雄区背景 --- */
#home {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    radial-gradient(circle at 50% 50%, rgba(230, 195, 92, 0.08) 0%, transparent 70%) !important;
}

/* --- 5. 按钮符箓化 --- */
.cta-button,
.download-main-btn,
.download-option-btn,
.copy-btn {
  background: linear-gradient(135deg, var(--primary-color) 0%, #3a2a6e 100%) !important;
  border: 1px solid var(--secondary-color) !important;
  box-shadow: 0 0 10px var(--border-glow) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.cta-button:hover,
.download-main-btn:hover,
.download-option-btn:hover,
.copy-btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 20px var(--border-glow) !important;
}

/* --- 6. 卡片卷轴 --- */
.about-card,
.credit-category,
.modal-content,
.pan-modal-content,
.qq-group,
.qq-description {
  background: var(--content-bg) !important;
  border: 1px solid var(--border-glow) !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35) !important;
}

.about-card:hover,
.credit-category:hover {
  box-shadow: 0 0 25px var(--border-glow) !important;
}

/* --- 7. 文字统一旧纸色 --- */
body,
p,
li,
h1, h2, h3,
.nav-links a,
.section-title,
.pan-link {
  color: var(--text-color) !important;
}

/* --- 8. 强调色 --- */
.logo,
.section-title::after,
.about-card i,
.about-card h3,
.credit-category h3,
.close {
  color: var(--secondary-color) !important;
}

/* --- 9. 滚动条国风 --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--dark-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 4px;
}

/* --- 10. 其他微光 --- */
.toast {
  background: var(--content-bg) !important;
  border: 1px solid var(--border-glow) !important;
  color: var(--secondary-color) !important;
}

.baoguang-glow {
    z-index: 0
}

/* ===== 导航法宝悬停特效 ===== */
/* 1. 基础统一 */
.nav-links a {
    position: relative;
    overflow: hidden;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

/* 2. 光晕边框 */
.nav-links a::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid transparent;
    background: conic-gradient(from 180deg at 50% 50%,
            #e6c35c 0%, transparent 30%, #e6c35c 60%, transparent 100%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transform: scale(.85);
    transition: inherit;
}

/* 3. 内层金光扫过 */
.nav-links a::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 195, 92, .18) 0%, transparent 50%);
    transform: rotate(45deg) scale(0);
    transition: inherit;
}

/* 4. 悬停触发 */
.nav-links a:hover {
    color: #e6c35c !important;
    transform: translateY(-2px);
    text-shadow: 0 0 8px rgba(230, 195, 92, .6);
}

.nav-links a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.nav-links a:hover::after {
    transform: rotate(45deg) scale(1);
    transition: transform .5s cubic-bezier(.4, 0, .2, 1); }


#home {
  background:
    radial-gradient(ellipse at center, rgba(230,195,92,0.12) 0%, transparent 60%),
    #0a0f1c !important;
}

