<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Travel Report Section Styles */
.travel-report-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
}

.travel-report-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 40%;
    height: 200%;
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(15deg);
    z-index: 1;
}

/* Travel Report Card */
.travel-report-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.travel-report-header {
    background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
    padding: 3rem 2rem 2rem;
    text-align: center;
    position: relative;
}

.report-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.report-icon i {
    font-size: 2rem;
    color: white;
}

.travel-report-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.travel-report-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0;
    font-style: italic;
}

.travel-report-content {
    padding: 3rem 2rem;
}

.report-quote {
    position: relative;
    text-align: center;
}

.quote-icon {
    font-size: 2rem;
    color: var(--accent-color);
    opacity: 0.6;
}

.report-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 2rem 0;
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.travel-report-footer {
    background: var(--light-color);
    padding: 2rem;
    border-top: 1px solid #eee;
}

.reporter-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.reporter-avatar {
    flex-shrink: 0;
}

.reporter-avatar img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.reporter-avatar img:hover {
    transform: scale(1.05);
}

.reporter-details {
    text-align: left;
}

.reporter-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.reporter-age {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.reporter-role {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.report-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 2rem;
    position: relative;
}

.report-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 40%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(15deg);
}

.report-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.report-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.report-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.report-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 1;
}

.report-body {
    padding: 2rem;
}

.report-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

/* Rating Display */
.rating-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.rating-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.rating-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.rating-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rating-label {
    font-weight: 500;
    color: #666;
}

.rating-value {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    color: #ffc107;
    font-size: 1rem;
}

.star.empty {
    color: #e0e0e0;
}

.rating-number {
    font-weight: 600;
    color: var(--dark-color);
}

/* Travel Details */
.travel-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.detail-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.detail-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.detail-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.detail-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
}

/* Highlights Section */
.highlights-section {
    margin-top: 2rem;
}

.highlights-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.highlight-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.highlight-text {
    color: #555;
    line-height: 1.6;
}

/* Action Buttons */
.report-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #f0f0f0;
}

.btn-report {
    padding: 0.75rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-report-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 168, 204, 0.3);
}

.btn-report-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 204, 0.4);
    text-decoration: none;
    color: white;
}

.btn-report-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-report-outline:hover {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .travel-report-section {
        padding: 3rem 0;
    }
    
    .travel-report-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .travel-report-title {
        font-size: 2rem;
    }
    
    .travel-report-content {
        padding: 2rem 1.5rem;
    }
    
    .report-text {
        font-size: 1.1rem;
    }
    
    .reporter-info {
        flex-direction: column;
        text-align: center;
    }
    
    .reporter-details {
        text-align: center;
    }
    
    .report-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .report-title {
        font-size: 1.5rem;
    }
    
    .rating-grid {
        grid-template-columns: 1fr;
    }
    
    .travel-details {
        grid-template-columns: 1fr;
    }
    
    .report-actions {
        flex-direction: column;
    }
    
    .btn-report {
        width: 100%;
        justify-content: center;
    }
}</pre></body></html>