/* ====================================
   Gentildonna Monochrome Theme - Complete Version
   ==================================== */

:root {
    /* Monochrome Colors */
    --black: #000000;
    --dark-gray: #1a1a1a;
    --medium-gray: #333333;
    --gray: #666666;
    --light-gray: #999999;
    --pale-gray: #cccccc;
    --off-white: #f5f5f5;
    --white: #ffffff;
    
    /* Accent Gold (控えめに使用) */
    --gold: #B8941F;
    --gold-light: #D4AF37;
    
    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 32px;
    --space-lg: 64px;
    --space-xl: 128px;
}

/* Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
    background: var(--black);
    color: var(--off-white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Loading - 中央配置修正 */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.loading__logo {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 0.1em;
    animation: fadeInOut 2s infinite;
    margin-bottom: 30px;
}

/* ローディング画面のサブタイトル */
.loading__subtitle {
    font-size: 14px;
    color: var(--light-gray);
    letter-spacing: 0.2em;
    margin-top: -20px;
    margin-bottom: 30px;
    font-style: italic;
}

.loading__spinner {
    width: 50px;
    height: 50px;
    border: 2px solid var(--dark-gray);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.header__logo a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

/* ヘッダーロゴの調整 */
.header__logo .logo-sub {
    font-size: 13px;
    color: var(--light-gray);
    letter-spacing: 0.15em;
    margin-bottom: 2px;
    font-style: italic;
}

.header__logo .logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
    line-height: 1;
}

.header__nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.header__nav-link {
    color: var(--pale-gray);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.1em;
    transition: color 0.3s;
    position: relative;
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: width 0.3s;
}

.header__nav-link:hover {
    color: var(--white);
}

.header__nav-link:hover::after {
    width: 100%;
}

.header__nav-link.current {
    color: var(--gold-light);
}

.header__nav-link.current::after {
    width: 100%;
    background: var(--gold-light);
}

/* Ticker */
.ticker {
    background: linear-gradient(90deg, var(--black) 0%, var(--dark-gray) 50%, var(--black) 100%);
    padding: 12px 0;
    overflow: hidden;
    margin-top: 85px;
    border-bottom: 1px solid var(--medium-gray);
    position: relative;
}

.ticker__wrap {
    display: flex;
    animation: ticker 30s linear infinite;
}

.ticker__content {
    display: flex;
    white-space: nowrap;
    padding-right: 50px;
}

.ticker__item {
    padding: 0 40px;
    color: var(--light-gray);
    font-size: 13px;
    letter-spacing: 0.1em;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Body Wrapper */
.body__wrapper {
    padding-top: 0;
}

/* Hero Wrapper */
.hero-wrapper {
    min-height: calc(100vh - 110px);
    background: var(--black);
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    height: calc(100vh - 110px);
    max-width: 1600px;
    margin: 0 auto;
}

/* Panels */
.hero-panel {
    background: var(--dark-gray);
    padding: 40px 30px;
    border-right: 1px solid var(--medium-gray);
    overflow-y: auto;
}

.hero-panel--right {
    border-right: none;
    border-left: 1px solid var(--medium-gray);
}

.panel-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--medium-gray);
}

/* Achievement List */
.achievement-list__item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.achievement-list__item:hover {
    background: rgba(255, 255, 255, 0.02);
    padding-left: 10px;
}

.achievement-list__year {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gray);
    min-width: 60px;
}

.achievement-list__race {
    font-size: 16px;
    color: var(--off-white);
    margin-bottom: 4px;
}

.achievement-list__detail {
    font-size: 12px;
    color: var(--light-gray);
}

.achievement-list__item.highlight .achievement-list__race {
    color: var(--gold-light);
}

/* Hero Main */
.hero-main {
    position: relative;
    overflow: hidden;
    background: var(--black);
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    filter: grayscale(100%) contrast(1.2);
}

.hero-slide.active {
    opacity: 1;
}

/* 背景のオーバーレイを強化 */
.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.7) 40%,
        rgba(0, 0, 0, 0.8) 60%,
        rgba(0, 0, 0, 0.9) 100%
    );
}

/* Hero Content */
.hero-content {
    position: absolute;
    top: calc(50% + 50px) !important;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

/* ====================================
   Hero Title - エレガントな銀色デザイン
   ==================================== */

/* タイトル全体のラッパー */
.hero-content__title-wrapper {
    position: relative;
    padding: 35px;
    background: radial-gradient(ellipse at center, 
        rgba(0, 0, 0, 0.7) 0%, 
        transparent 60%
    );
    margin-bottom: 40px;
}

/* Con Amore, alla - 銀色で上品に */
.hero-content__subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px !important;
    font-weight: 400 !important;
    color: var(--pale-gray) !important;
    letter-spacing: 0.4em;
    margin-bottom: 12px;
    font-style: italic;
    text-transform: lowercase;
    position: relative;
    display: inline-block;
    text-shadow: 
        1px 1px 2px rgba(0, 0, 0, 0.9),
        0 0 15px rgba(255, 255, 255, 0.2);
}

/* シンプルな装飾線 */
.hero-content__subtitle::before,
.hero-content__subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gray), transparent);
}

.hero-content__subtitle::before {
    left: -50px;
}

.hero-content__subtitle::after {
    right: -50px;
}

/* Gentildonna - 達筆風メインタイトル */
.hero-content__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(90px, 10vw, 130px) !important;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.02em;
    margin: 15px 0;
    position: relative;
    display: inline-block;
    
    /* シルバーグラデーション */
    background: linear-gradient(
        180deg,
        var(--white) 0%,
        var(--pale-gray) 40%,
        var(--gray) 50%,
        var(--pale-gray) 60%,
        var(--white) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    /* 控えめな影で立体感 */
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.8))
            drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
    
    /* 筆記体のような傾き */
    transform: skewX(-5deg);
}

/* 控えめな輝きアニメーション */
.hero-content__title::before {
    content: 'Gentildonna';
    position: absolute;
    top: 0;
    left: 0;
    font-style: italic;
    transform: skewX(-5deg);
    background: linear-gradient(
        90deg,
        transparent 40%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 60%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: subtle-shimmer 4s infinite;
}

@keyframes subtle-shimmer {
    0% {
        transform: translateX(-100%) skewX(-5deg);
    }
    100% {
        transform: translateX(100%) skewX(-5deg);
    }
}

/* 愛を込めて、貴婦人へ - 明朝体風 */
.hero-content__tagline {
    font-family: 'Noto Serif JP', serif;
    font-size: 16px !important;
    color: var(--pale-gray) !important;
    letter-spacing: 0.6em;
    margin-top: 20px;
    font-weight: 300;
    position: relative;
    padding: 8px 25px;
    text-shadow: 
        1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* 上下の細い線 */
.hero-content__tagline::before,
.hero-content__tagline::after {
    content: '';
    position: absolute;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, 
        transparent, 
        rgba(204, 204, 204, 0.3), 
        rgba(204, 204, 204, 0.3), 
        transparent
    );
}

.hero-content__tagline::before {
    top: 0;
}

.hero-content__tagline::after {
    bottom: 0;
}

/* 控えめなホバーエフェクト */
.hero-content__title:hover {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2))
            drop-shadow(0 2px 3px rgba(0, 0, 0, 0.8));
    transition: filter 0.3s ease;
}

/* Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 80px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--light-gray);
    margin-top: 5px;
    letter-spacing: 0.1em;
}

/* Slide Dots */
.slide-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

/* Contents Nav */
.contents-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contents-nav__item {
    display: flex;
    flex-direction: column;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--medium-gray);
    text-decoration: none;
    transition: all 0.3s;
}

.contents-nav__item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gray);
    transform: translateX(5px);
}

.contents-nav__en {
    font-size: 14px;
    color: var(--white);
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.contents-nav__ja {
    font-size: 11px;
    color: var(--light-gray);
}

/* Panel Info */
.panel-info {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--medium-gray);
}

.info-list-mini {
    display: grid;
    gap: 15px;
}

.info-list-mini dt {
    font-size: 11px;
    color: var(--gray);
    letter-spacing: 0.1em;
}

.info-list-mini dd {
    font-size: 14px;
    color: var(--off-white);
    margin-top: 4px;
}

/* More Button */
.panel-more-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 20px;
    border: 1px solid var(--gray);
    color: var(--light-gray);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.1em;
    transition: all 0.3s;
}

.panel-more-btn:hover {
    background: var(--white);
    color: var(--black);
}

/* Footer - 高さを大幅に減らす */
.footer {
    background: var(--black);
    border-top: 1px solid var(--dark-gray);
    padding: 15px 0 !important;
    text-align: center;
}

.footer__inner {
    padding: 0;
}

.footer__nav-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    margin-bottom: 8px !important;
}

.footer__nav-link {
    color: var(--gray);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}

.footer__nav-link:hover {
    color: var(--white);
}

.footer__copyright {
    color: var(--gray);
    font-size: 10px;
    letter-spacing: 0.05em;
    margin: 0;
}

/* Page Top Button */
.page-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--gray);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 900;
}

.page-top.show {
    opacity: 1;
    visibility: visible;
}

.page-top:hover {
    background: var(--white);
    color: var(--black);
}

/* SP Menu */
.sp-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100% - 70px);
    background: rgba(0, 0, 0, 0.95);
    z-index: 998;
    display: none;
}

.sp-menu.active {
    display: block;
}

.sp-menu__nav {
    padding: 40px 20px;
}

.sp-menu__list {
    list-style: none;
}

.sp-menu__item {
    border-bottom: 1px solid var(--dark-gray);
}

.sp-menu__link {
    display: block;
    padding: 15px 0;
    color: var(--pale-gray);
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 0.1em;
}

.header__hamburger {
    display: none;
}

/* 蹄鉄カーソル */
html, body, * {
    cursor: none !important;
}

.horseshoe-cursor {
    position: fixed;
    width: 30px;
    height: 30px;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
}

.horseshoe-shape {
    width: 100%;
    height: 100%;
    position: relative;
}

.horseshoe-shape::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    top: 3px;
    left: 3px;
    border: 3px solid #B8941F;
    border-bottom-color: transparent;
    border-radius: 50% 50% 35% 35%;
    transform: rotate(-15deg);
    box-shadow: 0 0 10px rgba(184, 148, 31, 0.5);
}

.horseshoe-shape::after {
    content: '• • • • • •';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%) rotate(-15deg);
    font-size: 6px;
    color: #B8941F;
    letter-spacing: 2px;
    text-shadow: 0 0 3px rgba(184, 148, 31, 0.5);
}

.horseshoe-cursor.hover .horseshoe-shape::before {
    border-color: #D4AF37;
    border-bottom-color: transparent;
    transform: rotate(-15deg) scale(1.2);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
}

.horseshoe-cursor.click .horseshoe-shape::before {
    transform: rotate(-15deg) scale(0.9);
}

/* Custom Scrollbar */
body::-webkit-scrollbar,
html::-webkit-scrollbar,
*::-webkit-scrollbar {
    width: 12px !important;
}

body::-webkit-scrollbar-track,
html::-webkit-scrollbar-track,
*::-webkit-scrollbar-track {
    background: #000000 !important;
    border-left: 1px solid #333333 !important;
}

body::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb,
*::-webkit-scrollbar-thumb {
    background: #666666 !important;
    border: 1px solid #333333 !important;
}

body::-webkit-scrollbar-thumb:hover,
html::-webkit-scrollbar-thumb:hover,
*::-webkit-scrollbar-thumb:hover {
    background: #B8941F !important;
}

/* Firefox用 */
* {
    scrollbar-width: thin;
    scrollbar-color: #666666 #000000;
}

/* HDモニター対応 - 統計ボックス位置調整 */
@media (max-height: 900px) {
    .hero-content {
        top: 45% !important;
    }
    
    .hero-content__title-wrapper {
        padding: 20px !important;
        margin-bottom: 20px !important;
    }
    
    .hero-content__title {
        font-size: clamp(70px, 8vw, 100px) !important;
        margin: 10px 0 !important;
    }
    
    .hero-content__subtitle {
        font-size: 20px !important;
        margin-bottom: 8px !important;
    }
    
    .hero-content__tagline {
        font-size: 14px !important;
        margin-top: 10px !important;
    }
    
    .hero-stats {
        gap: 20px !important;
        margin-top: 15px !important;
    }
    
    .stat-box {
        padding: 12px !important;
        min-width: 70px !important;
    }
    
    .stat-number {
        font-size: 28px !important;
    }
    
    .stat-label {
        font-size: 11px !important;
    }
}

/* さらに低い画面用 */
@media (max-height: 768px) {
    .hero-content {
        top: 42% !important;
    }
    
    .hero-content__title {
        font-size: 60px !important;
    }
    
    .stat-box {
        padding: 10px !important;
    }
    
    .stat-number {
        font-size: 24px !important;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 250px 1fr 250px;
    }
}

/* ====================================
   Heartbeat Page - 横スクロール対応
   ==================================== */

@media (max-width: 768px) {
    /* Canvas Container - 横スクロール対応 */
    .canvas-container {
        width: 100% !important;
        height: 300px !important;
        margin: 20px 0 !important;
        position: relative !important;
        overflow-x: auto !important;  /* 横スクロール可能に */
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch !important;  /* スムーススクロール */
        background: rgba(0, 0, 0, 0.5) !important;
        border-top: 1px solid var(--medium-gray) !important;
        border-bottom: 1px solid var(--medium-gray) !important;
    }
    
    #heartbeatCanvas {
        width: 1200px !important;  /* 固定幅で横長に */
        height: 280px !important;
        display: block !important;
        margin: 10px 0 !important;
    }
    
    /* スクロールバーのスタイル */
    .canvas-container::-webkit-scrollbar {
        height: 8px !important;
    }
    
    .canvas-container::-webkit-scrollbar-track {
        background: var(--dark-gray) !important;
    }
    
    .canvas-container::-webkit-scrollbar-thumb {
        background: var(--gray) !important;
        border-radius: 4px !important;
    }
    
    /* スクロール促進インジケーター */
    .canvas-container::after {
        content: '← スワイプして全体を見る →';
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 11px;
        color: var(--light-gray);
        background: rgba(0, 0, 0, 0.8);
        padding: 4px 12px;
        border-radius: 12px;
        pointer-events: none;
        z-index: 10;
    }
    
    /* Control Panel */
    .control-panel {
        padding: 20px 15px !important;
        background: var(--dark-gray) !important;
    }
    
    .control-buttons {
        display: flex !important;
        gap: 8px !important;
        overflow-x: auto !important;
        padding-bottom: 5px !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    .control-btn {
        flex: 0 0 auto !important;
        min-width: 80px !important;
        padding: 10px 12px !important;
        font-size: 12px !important;
        text-align: center !important;
        background: var(--medium-gray) !important;
        border: 1px solid var(--gray) !important;
        border-radius: 6px !important;
    }
    
    .control-btn.active {
        background: var(--gold) !important;
        color: var(--black) !important;
        border-color: var(--gold-light) !important;
    }
    
    .btn-year {
        font-size: 16px !important;
        display: block !important;
        font-weight: 600 !important;
    }
    
    .btn-label {
        font-size: 10px !important;
        display: block !important;
        margin-top: 2px !important;
        opacity: 0.8;
    }
    
    .control-info {
        margin-top: 10px !important;
        text-align: center !important;
    }
    
    .info-text {
        font-size: 11px !important;
        color: var(--light-gray) !important;
    }
    
    /* Emotion Meter */
    .emotion-meter {
        padding: 20px !important;
        margin: 30px 0 !important;
        background: var(--dark-gray) !important;
    }
    
    .meter-label {
        font-size: 14px !important;
        margin-bottom: 10px !important;
        text-align: center !important;
    }
    
    .meter-bar {
        height: 30px !important;
        border-radius: 15px !important;
        overflow: hidden !important;
        background: var(--medium-gray) !important;
    }
    
    .meter-fill {
        height: 100% !important;
        background: linear-gradient(90deg, var(--gold), var(--gold-light)) !important;
    }
    
    .meter-markers {
        display: flex !important;
        justify-content: space-between !important;
        margin-top: 8px !important;
        font-size: 10px !important;
        color: var(--gray) !important;
    }
}

/* さらに小さい画面 */
@media (max-width: 480px) {
    .canvas-container {
        height: 250px !important;
    }
    
    #heartbeatCanvas {
        width: 1000px !important;  /* 少し狭く */
        height: 230px !important;
    }
    
    .control-btn {
        min-width: 70px !important;
        padding: 8px 10px !important;
    }
    
    .btn-year {
        font-size: 14px !important;
    }
    
    .btn-label {
        font-size: 9px !important;
    }
}

/* iPhone SE (375px) */
@media (max-width: 375px) {
    #heartbeatCanvas {
        width: 900px !important;  /* さらに調整 */
        height: 220px !important;
    }
}

/* Memory Cards はそのまま */
@media (max-width: 768px) {
    .memory-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        padding: 0 15px !important;
    }
    
    .memory-card {
        width: 100% !important;
        padding: 25px 20px !important;
        margin: 0 !important;
        min-height: 120px !important;
        position: relative !important;
        background: var(--dark-gray) !important;
        border: 1px solid var(--medium-gray) !important;
        border-radius: 8px !important;
    }
    
    .memory-card.highlight {
        border-color: var(--gold) !important;
        background: linear-gradient(135deg, 
            rgba(184, 148, 31, 0.1) 0%, 
            var(--dark-gray) 100%
        ) !important;
    }
}
