:root {
    --primary-color: #60a5fa;
    --secondary-color: #34d399;
    --accent-color: #f87171;
    --text-color: #e2e8f0;
    --bg-color: #1a1a1a;
    --card-bg: #1e293b;
    --input-bg: #334155;
    --error-color: #ef4444;
    --success-color: #10b981;
    --box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    background-attachment: fixed;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    background-color: var(--card-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    font-size: 2rem;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.container {
    background: rgba(30, 41, 59, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 500px;
}

.search-box {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

input {
    flex: 1;
    padding: 12px;
    border: 2px solid transparent;
    background: var(--input-bg);
    color: var(--text-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--input-bg);
    box-shadow: 0 6px 16px rgba(52, 152, 219, 0.25);
    transform: translateY(-1px);
}

input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

button {
    background-color: var(--primary-color);
    border: none;
    padding: 12px 24px;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

button:hover {
    background-color: #3b82f6;
    transform: translateY(-2px);
}

.weather-info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    animation: weatherAppear 0.5s ease;
}

.weather-info h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.weather-info p {
    margin: 10px 0;
    padding: 8px;
    border-bottom: 1px solid #eee;
}

.loading-spinner {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin: 20px 0;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: white;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links {
        margin-top: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .container {
        margin: 1rem;
        padding: 1rem;
    }

    .search-box {
        flex-direction: column;
    }

    button {
        width: 100%;
        justify-content: center;
    }
}

.weather-details {
    animation: fadeIn 0.5s ease;
}

.temp-box {
    text-align: center;
    margin: 0 0 20px 0;
    padding: 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
}

.temperature {
    font-size: 3.5rem;
    margin: 0;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.feels-like {
    color: var(--text-color);
    opacity: 0.8;
    margin: 5px 0;
}

.weather-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.weather-grid p {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.error {
    background-color: #fde8e8;
    color: var(--error-color);
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid var(--error-color);
    animation: fadeIn 0.3s ease;
    margin: 10px 0;
}

.error i {
    font-size: 1.2em;
    margin-right: 8px;
}

.error-help {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(231, 76, 60, 0.2);
    font-size: 0.9em;
}

.error-help p {
    margin: 0 0 8px 0;
    font-weight: bold;
}

.error-help ol {
    margin: 0;
    padding-left: 20px;
}

.error-help li {
    margin: 4px 0;
    color: var(--text-color);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-spinner i {
    animation: spin 1s linear infinite;
}

@media (max-width: 768px) {
    .weather-grid {
        grid-template-columns: 1fr;
    }
    
    .temperature {
        font-size: 2rem;
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        --text-color: #f4f4f4;
        --bg-color: #1a1a1a;
    }

    body {
        background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    }

    .container, .navbar, footer {
        background-color: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
    }
}

/* 添加搜索历史样式 */
.search-section {
    width: 100%;
}

.search-history {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.history-item {
    background-color: #f0f2f5;
    border: none;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.9rem;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.history-item:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* 优化搜索框样式 */
.search-box {
    position: relative;
    display: flex;
    gap: 10px;
}

.location-btn {
    background-color: var(--secondary-color);
    padding: 12px;
    border-radius: 50%;
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
}

.location-btn:hover {
    background-color: var(--success-color);
}

.location-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.location-btn:active::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* 添加动画效果 */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.weather-details {
    animation: slideIn 0.5s ease;
}

/* 优化页脚样式 */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* 添加��式优化 */
@media (max-width: 768px) {
    .search-history {
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* 添加加载动画优化 */
.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 50%;
    box-shadow: var(--box-shadow);
}

/* 搜索容器样式 */
.search-container {
    position: relative;
    width: 100%;
}

/* 搜索建议框样式 */
.suggestion-box {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    margin-top: 8px;
    display: none;
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: suggestionsAppear 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-color);
}

/* 新增搜索建议动画 */
@keyframes suggestionsAppear {
    0% {
        opacity: 0;
        transform: translateY(-8px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* 优化建议项样式 */
.suggestion-item {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    animation: itemSlideIn 0.3s ease forwards;
    opacity: 0;
    color: #333;
    background-color: var(--card-bg);
}

/* 建议项滑入动画 */
@keyframes itemSlideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 为每个建议项添加延迟动画 */
.suggestion-item:nth-child(1) { animation-delay: 0.1s; }
.suggestion-item:nth-child(2) { animation-delay: 0.15s; }
.suggestion-item:nth-child(3) { animation-delay: 0.2s; }
.suggestion-item:nth-child(4) { animation-delay: 0.25s; }
.suggestion-item:nth-child(5) { animation-delay: 0.3s; }

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background-color: rgba(96, 165, 250, 0.1);
    color: var(--primary-color);
    transform: translateX(4px);
}

/* 优化图标样式 */
.suggestion-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.suggestion-item:hover i {
    transform: scale(1.1);
}

/* 优化位置信息样式 */
.suggestion-item span {
    flex: 1;
    color: #333;
    font-weight: 500;
}

.location-coords {
    font-size: 0.85rem;
    color: #666;
    opacity: 0.7;
    background-color: rgba(0, 0, 0, 0.05);
    padding: 4px 8px;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.suggestion-item:hover .location-coords {
    background-color: rgba(52, 152, 219, 0.15);
    opacity: 1;
}

/* 优化温度显示 */
.suggestion-item .temp {
    font-weight: 600;
    color: var(--primary-color);
    min-width: 60px;
    text-align: right;
    transition: color 0.2s ease;
}

.suggestion-item:hover .temp {
    color: var(--secondary-color);
}

/* 美化滚动条 */
.suggestion-box::-webkit-scrollbar {
    width: 8px;
}

.suggestion-box::-webkit-scrollbar-track {
    background: var(--card-bg);
}

.suggestion-box::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    transition: background 0.2s ease;
}

.suggestion-box::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* 深色模式适配 */
@media (prefers-color-scheme: dark) {
    :root {
        --text-color: #f4f4f4;
        --bg-color: #1a1a1a;
        --suggestion-bg: #2c3e50;
        --suggestion-hover: #34495e;
        --suggestion-text: #fff;
    }

    .suggestion-box {
        background: var(--suggestion-bg);
        border-color: rgba(255, 255, 255, 0.1);
    }

    .suggestion-item {
        background-color: #2c3e50;
        color: #fff;
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }

    .suggestion-item:hover {
        background-color: var(--suggestion-hover);
    }

    .suggestion-item span {
        color: #fff;
    }

    .location-coords {
        background-color: rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.9);
    }

    .suggestion-item:hover .location-coords {
        background-color: rgba(52, 152, 219, 0.3);
        color: var(--suggestion-text);
    }
}

/* 添加加载中状态样式 */
.suggestion-item.loading {
    justify-content: center;
    padding: 20px;
    cursor: default;
}

.suggestion-item.loading:hover {
    background-color: transparent;
    transform: none;
    padding-left: 16px;
}

/* 响应式优化 */
@media (max-width: 768px) {
    .suggestion-box {
        margin-top: 4px;
        max-height: 250px;
    }

    .suggestion-item {
        padding: 10px 12px;
    }

    .location-coords {
        display: none;
    }

    .suggestion-item .temp {
        min-width: 45px;
        font-size: 0.9rem;
    }
}

/* 添加分隔线效果 */
.suggestion-item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* 添加天气卡片样式 */
.weather-card {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border-radius: 15px;
    padding: 25px;
    margin-top: 20px;
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.2);
    transition: transform 0.3s ease;
}

.weather-card:hover {
    transform: translateY(-5px);
}

.weather-card h2 {
    color: white;
    margin: 0 0 20px 0;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.weather-details {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.temp-box {
    text-align: center;
    margin: 0 0 20px 0;
    padding: 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
}

.temperature {
    font-size: 3.5rem;
    margin: 0;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.weather-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.weather-grid p {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 添加搜索框动画效果 */
.search-box input {
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.search-box input:focus {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 6px 16px rgba(52, 152, 219, 0.25);
    transform: translateY(-1px);
}

/* 添加加载动画 */
@keyframes weatherAppear {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.weather-info {
    animation: weatherAppear 0.5s ease;
}

/* 添加响应式背景 */
body {
    background: linear-gradient(135deg, #6ab7ff 0%, #3498db 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

/* 优化容器样式 */
.container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* 修改根变量的颜色方��� */
:root {
    --primary-color: #60a5fa;
    --secondary-color: #34d399;
    --accent-color: #f87171;
    --text-color: #e2e8f0;
    --bg-color: #1a1a1a;
    --card-bg: #1e293b;
    --input-bg: #334155;
    --error-color: #ef4444;
    --success-color: #10b981;
    --box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
}

/* 修改背景渐变 */
body {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--text-color);
}

/* 修改导航栏样式 */
.navbar {
    background-color: var(--card-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-links a {
    color: var(--text-color);
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* 修改容器样式 */
.container {
    background: rgba(30, 41, 59, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 修改输入框样式 */
input {
    background: var(--input-bg);
    color: var(--text-color);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

input:focus {
    background: var(--input-bg);
    border-color: var(--primary-color);
}

input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* 修改搜索建议框样式 */
.suggestion-box {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.suggestion-item {
    background: var(--card-bg);
    color: var(--text-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.suggestion-item:hover {
    background: rgba(96, 165, 250, 0.1);
}

.suggestion-item span {
    color: var(--text-color);
}

.location-coords {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* 修改天气卡片样式 */
.weather-card {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.weather-details {
    background: rgba(255, 255, 255, 0.05);
}

.temp-box {
    background: rgba(255, 255, 255, 0.1);
}

.weather-grid p {
    background: rgba(255, 255, 255, 0.05);
}

/* 修改历史记录样式 */
.history-item {
    background: var(--input-bg);
    color: var(--text-color);
}

.history-item:hover {
    background: var(--primary-color);
}

/* 修改页脚样式 */
footer {
    background: var(--card-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a {
    color: var(--text-color);
}

/* 修改错误提示样式 */
.error {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid var(--error-color);
}

.error-help {
    border-top: 1px solid rgba(239, 68, 68, 0.2);
}

/* 修改加载动画样式 */
.loading-spinner {
    background: rgba(30, 41, 59, 0.9);
    color: var(--primary-color);
}

/* 修改滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--card-bg);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* 添加深色模式下的文字阴影 */
h1, h2, .temperature {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* 优化按钮样式 */
button {
    background: var(--primary-color);
    border: none;
}

button:hover {
    background: #3b82f6;
}

.location-btn {
    background: var(--secondary-color);
}

.location-btn:hover {
    background: #10b981;
}

/* 添加卡片悬浮效果 */
.container, .weather-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container:hover, .weather-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

/* 优化深色模式下的可读性 */
.weather-grid p, .temp-box {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* 添加 Toast 提示样式 */
.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s ease;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* 设置面板样式 */
.settings-panel {
    position: fixed;
    right: -300px;
    top: 0;
    bottom: 0;
    width: 300px;
    background: var(--card-bg);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
}

.settings-panel.active {
    right: 0;
}

/* 城市对比卡片样式 */
.city-comparison-card {
    background: var(--card-bg);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.city-comparison-card:hover {
    transform: translateY(-5px);
}

.city-comparison-card h4 {
    margin: 0 0 10px 0;
    color: var(--primary-color);
}

.city-comparison-card .temp {
    font-size: 2rem;
    font-weight: bold;
    margin: 10px 0;
}

.city-comparison-card .weather {
    color: var(--text-color);
    margin: 5px 0;
}

.city-comparison-card .humidity {
    color: var(--text-color);
    opacity: 0.8;
}

/* 24小时预报样式 */
.hourly-scroll {
    display: flex;
    overflow-x: auto;
    padding: 15px 0;
    gap: 15px;
    scrollbar-width: thin;
}

.hourly-item {
    flex: 0 0 auto;
    text-align: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    min-width: 80px;
}

.hourly-item .hour {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 5px;
}

.hourly-item i {
    font-size: 1.5rem;
    margin: 10px 0;
    color: var(--primary-color);
}

.hourly-item .temp {
    font-size: 1.1rem;
    font-weight: bold;
}

.hourly-item .rain-chance {
    font-size: 0.8rem;
    color: var(--text-color);
    opacity: 0.8;
}

/* 7天预报样式 */
.weekly-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.daily-item {
    display: grid;
    grid-template-columns: 80px 50px 1fr auto;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: transform 0.2s ease;
}

.daily-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.15);
}

.daily-item .date {
    font-weight: 500;
}

.daily-item i {
    color: var(--primary-color);
}

.daily-item .temp-range {
    display: flex;
    gap: 10px;
}

.daily-item .high {
    color: var(--accent-color);
}

.daily-item .low {
    color: var(--text-color);
    opacity: 0.8;
}

/* 详细指标样式 */
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    padding: 15px;
}

.detail-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    transition: transform 0.2s ease;
}

.detail-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.detail-item span {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
}

.detail-item strong {
    font-size: 1.1rem;
    color: var(--text-color);
}
