.news-detail {
    max-width: 900px;
    margin: 160px auto 60px;
    padding: 20px;
    background: rgba(20, 20, 20, 0.5);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.news-detail-header {
    text-align: center;
    margin-bottom: 30px;
}

.news-detail-header h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.news-detail-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.news-detail-date {
    color: #666;
    font-size: 0.9rem;
}

.news-detail-tag {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-detail-tag.update {
    background: #c76868;
    color: #fff;
}

.news-detail-tag.news {
    background: #ff4d4d;
    color: #fff;
}

.news-detail-tag.event {
    background: #9c44dc;
    color: #fff;
}

.news-detail-tag.maintenance {
    background: #e48a04;
    color: #fff;
}

.news-detail-image {
    width: 100%;
    height: 400px;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
}

.news-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-detail-content {
    color: #fff;
    line-height: 1.8;
    font-size: 1.1rem;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}

.news-detail-content p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.news-detail-content ul {
    margin: 20px 0;
    padding-left: 20px;
    list-style: none;
}

.news-detail-content li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-left: 20px;
}

.news-detail-content li::before {
    content: '•';
    color: #ff4d4d;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.0em;
}

.news-detail-back-button {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.1);
    color: #ff4d4d;
    text-decoration: none;
    border-radius: 25px;
    border: 1px solid #ff4d4d;
    transition: all 0.3s ease;
}

.news-detail-back-button:hover {
    background: #ff4d4d;
    color: #fff;
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .news-detail {
        margin: 120px auto 40px;
        padding: 15px;
    }

    .news-detail-header h1 {
        font-size: 1.8rem;
    }

    .news-detail-image {
        height: 300px;
    }

    .news-detail-content {
        font-size: 1rem;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .news-detail-header h1 {
        font-size: 1.5rem;
    }

    .news-detail-image {
        height: 200px;
    }

    .news-detail-content {
        font-size: 0.9rem;
    }
}