 body {
    background: linear-gradient(135deg, #fff7ed, #ffe4c4);
    font-family: sans-serif;
    padding: 20px;
}

.top-bar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.back-btn {
    background-color: #f97316;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 999px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.back-btn:hover {
    background-color: #ea580c;
}

h1 {
    color: #f97316;
    margin-top: 0;
    margin-bottom: 30px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.place-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 20px;
}

.place-title {
    font-size: 18px;
    font-weight: bold;
    color: #f97316;
    margin-bottom: 10px;
    text-align: center;
}

iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 12px;
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .top-bar {
        justify-content: center;
    }

    .back-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    h1 {
        font-size: 22px;
        margin-bottom: 20px;
        text-align: center;
    }

    .grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .place-card {
        padding: 15px;
    }

    .place-title {
        font-size: 16px;
    }

    iframe {
        height: 250px;
    }
}