/* Webtoon Detail Page Styles */

/* Breadcrumb Navigation */
.breadcrumb {
    background: #1a1a1a;
    padding: 1rem 0;
    border-bottom: 1px solid #333;
}

.breadcrumb ol {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumb li {
    color: #888;
    font-size: 0.9rem;
}

.breadcrumb li:not(:last-child)::after {
    content: ">";
    margin-left: 0.5rem;
    color: #666;
}

.breadcrumb a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ff8c5a;
}

/* Webtoon Detail Main */
.webtoon-detail {
    padding: 2rem 0;
    min-height: 80vh;
}

.webtoon-info {
    background: #222;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
}

/* Webtoon Header */
.webtoon-header {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: start;
}

.webtoon-thumbnail {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.webtoon-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.webtoon-thumbnail:hover img {
    transform: scale(1.05);
}

.webtoon-meta h1 {
    color: #fff;
    font-size: 2.5rem;
    margin: 0 0 0.5rem 0;
    font-weight: bold;
    line-height: 1.2;
}

.webtoon-subtitle {
    color: #ff6b35;
    font-size: 1.2rem;
    margin: 0 0 1.5rem 0;
    font-weight: 500;
}

/* Webtoon Details */
.webtoon-details {
    display: grid;
    gap: 0.8rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-item .label {
    color: #888;
    font-weight: 500;
    min-width: 60px;
}

.detail-item .value {
    color: #e0e0e0;
}

.detail-item .value a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-item .value a:hover {
    color: #ff8c5a;
    text-decoration: underline;
}

/* Webtoon Content */
.webtoon-content {
    display: grid;
    gap: 2.5rem;
}

.webtoon-content section {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333;
}

.webtoon-content h2 {
    color: #ff6b35;
    font-size: 1.8rem;
    margin: 0 0 1.5rem 0;
    font-weight: bold;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 0.5rem;
}

.webtoon-content h3 {
    color: #fff;
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem 0;
    font-weight: bold;
}

.webtoon-content h4 {
    color: #ff6b35;
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem 0;
    font-weight: bold;
}

.webtoon-content p {
    color: #e0e0e0;
    line-height: 1.7;
    margin: 0 0 1rem 0;
}

.webtoon-content ul {
    color: #e0e0e0;
    line-height: 1.7;
    padding-left: 1.5rem;
}

.webtoon-content li {
    margin: 0.5rem 0;
}

.webtoon-content strong {
    color: #ff6b35;
    font-weight: bold;
}

/* Characters Section */
.character-list {
    display: grid;
    gap: 1.5rem;
}

.character {
    background: #222;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #333;
}

.character h4 {
    margin: 0 0 0.8rem 0;
    color: #ff6b35;
}

.character p {
    margin: 0;
    color: #ccc;
    line-height: 1.6;
}

/* Reviews Section */
.rating-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #222;
    border-radius: 10px;
    border: 1px solid #333;
}

.rating-score {
    font-size: 3rem;
    font-weight: bold;
    color: #ff6b35;
}

.rating-stars {
    font-size: 1.5rem;
}

.rating-count {
    color: #888;
    font-size: 0.9rem;
}

.review-highlights {
    display: grid;
    gap: 1rem;
}

.review-highlights blockquote {
    background: #222;
    border-left: 4px solid #ff6b35;
    padding: 1.5rem;
    margin: 0;
    border-radius: 0 8px 8px 0;
    color: #e0e0e0;
    font-style: italic;
    line-height: 1.6;
}

/* Platform Info Section */
.platform-card {
    background: #222;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333;
    text-align: center;
}

.platform-card h3 {
    color: #ff6b35;
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
}

.platform-card p {
    color: #e0e0e0;
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff8c5a 0%, #ff6b35 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .webtoon-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .webtoon-thumbnail {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .webtoon-meta h1 {
        font-size: 2rem;
    }
    
    .webtoon-info {
        padding: 1.5rem;
    }
    
    .webtoon-content section {
        padding: 1.5rem;
    }
    
    .rating-summary {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .rating-score {
        font-size: 2.5rem;
    }
    
    .breadcrumb ol {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .webtoon-detail {
        padding: 1rem 0;
    }
    
    .webtoon-info {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .webtoon-content section {
        padding: 1rem;
    }
    
    .webtoon-meta h1 {
        font-size: 1.8rem;
    }
    
    .webtoon-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}
