:root {
    --primary-color: #FFD700;
    --dark-color: #333;
    --light-bg: #fff;
    --transition-speed: 0.3s;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    font-family: var(--font-family);
    background: #f7f7f7;
    margin: 0;
    padding: 0;
}

.place-detail-container {
    max-width: 900px;
    margin: 100px auto 40px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.place-detail-content {
    text-align: center;
}
.place-title {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}
.place-thumbnail {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}
.place-short {
    font-size: 1rem;
    color: #777;
    margin-bottom: 20px;
}
.place-full {
    text-align: left;
    line-height: 1.6;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.place-full img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.btn.back-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--dark-color);
    text-decoration: none;
    border-radius: 4px;
    transition: background var(--transition-speed) ease;
}
.btn.back-btn:hover {
    background: #e6c200;
}
