* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #1a0a2a 0%, #2d1b4e 100%);
    color: #e6d7ff;
    font-family: 'Noto Serif SC', "Yu Mincho", "DFKuoTaiPei W4", serif;
    line-height: 1.4;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-attachment: fixed;
    /* background-image: 
        radial-gradient(circle at 20% 30%, rgba(113, 46, 180, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(137, 79, 206, 0.1) 0%, transparent 40%); */
    background-image: url(/assets/images/bg.jpeg);
}

.container {
    width: 120%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-title {
    text-align: center;
    margin: 30px 0;
    position: relative;
    width: 100%;
}

.main-title h1 {
    font-size: 2.8rem;
    color: #f5e9ff;
    text-shadow: 0 0 10px rgba(200, 160, 255, 0.7), 
                0 0 20px rgba(180, 140, 255, 0.5),
                0 0 30px rgba(160, 120, 255, 0.3);
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: normal;
}

.main-title::before,
.main-title::after {
    content: "◆";
    color: #b28fce;
    font-size: 1.5rem;
    margin: 0 15px;
    position: relative;
    top: -5px;
}

.subtitle {
    font-size: 1.2rem;
    color: #c9b0e8;
    text-shadow: 0 0 10px rgba(200, 160, 255, 0.7), 
                0 0 20px rgba(180, 140, 255, 0.5),
                0 0 30px rgba(160, 120, 255, 0.3);
    margin-top: 10px;
    text-align: center;
}

.navigation-container {
    width: 100%;
    background: rgba(43, 21, 73, 0.7);
    border: 1px solid #6b4b93;
    border-radius: 5px;
    padding: 25px;
    margin: 20px 0;
    box-shadow: 0 0 15px rgba(107, 75, 147, 0.4);
    position: relative;
    overflow: hidden;
}

.navigation-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #9d7cc1, transparent);
}

.domain-list {
    list-style: none;
    width: 100%;
}

.domain-item {
    padding: 15px 10px;
    border-bottom: 1px dashed #6b4b93;
    transition: all 0.3s ease;
}

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

.domain-item:hover {
    background: rgba(85, 55, 125, 0.3);
    transform: translateX(5px);
}

.domain-link {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    color: #e6d7ff;
    
    font-size: 1.1rem;
}

.domain-name {
    font-weight: bolder;
    text-shadow: 0 0 10px rgba(200, 160, 255, 0.7), 
                0 0 20px rgba(180, 140, 255, 0.5),
                0 0 30px rgba(160, 120, 255, 0.3);
}

.domain-subname {
    font-weight: normal;
}

.domain-url {
    color: rgba(127, 108, 156, 0.9);
    font-weight: lighter;
}

.domain-desc {
    color: #b8a2d6;
    font-size: 0.95rem;
    margin-top: 5px;
}

.footer {
    margin-top: 40px;
    text-align: center;
    color: #8f75b0;
    font-size: 0.9rem;
    width: 100%;
    padding: 20px;
    border-top: 1px solid #5a3e7c;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .main-title h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .navigation-container {
        padding: 15px;
    }
    
    .domain-link {
        flex-direction: column;
    }
    
    .domain-item:hover {
        transform: translateX(3px);
    }
}

@media (max-width: 480px) {
    .main-title h1 {
        font-size: 1.7rem;
    }
    
    .main-title::before,
    .main-title::after {
        display: none;
    }
    
    body {
        padding: 10px;
    }
}

/* 樱花装饰元素 */
.cherry-blossom {
    position: absolute;
    width: 15px;
    height: 15px;
    background: rgba(255, 200, 230, 0.6);
    border-radius: 50% 0 50% 50%;
    transform: rotate(45deg);
    opacity: 0.7;
    z-index: -1;
}

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

::-webkit-scrollbar-track {
    background: rgba(43, 21, 73, 0.3);
}

::-webkit-scrollbar-thumb {
    background: #6b4b93;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #8a6bb3;
}

/* 加载动画 */
.loading {
    text-align: center;
    padding: 20px;
    color: #b8a2d6;
}

.loading::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #b8a2d6;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

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