
        .places-wrapper {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
             background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            min-height: 100vh;
            padding: 40px 20px;
        }

        .places-wrapper * {
            box-sizing: border-box;
        }

        .places-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .places-title {
            text-align: center;
            color: black;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 3rem;
        }

        .places-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            padding: 20px 0;
        }

        .places-card {
            position: relative;
            height: 280px;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .places-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        .places-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .places-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            padding: 40px 25px 25px;
            transform: translateY(0);
            transition: all 0.3s ease;
        }

        .places-card:hover .places-overlay {
            background: linear-gradient(transparent, rgba(0,0,0,0.9));
        }

        .places-card-title {
            color: white;
            font-size: 1.3rem;
            font-weight: 600;
            line-height: 1.3;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            margin-bottom: 8px;
        }

        .places-description {
            color: rgba(255,255,255,0.9);
            font-size: 0.9rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
            line-height: 1.4;
        }

        .places-card:hover .places-description {
            opacity: 1;
            transform: translateY(0);
        }

        .places-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255,255,255,0.9);
            color: #333;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            backdrop-filter: blur(10px);
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }

        .places-card:hover .places-badge {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .places-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .places-title {
                font-size: 2rem;
                margin-bottom: 2rem;
            }
            
            .places-card {
                height: 250px;
            }
        }

        @media (max-width: 480px) {
            .places-wrapper {
                padding: 20px 10px;
            }
            
            .places-title {
                font-size: 1.8rem;
            }
            
            .places-card {
                height: 220px;
            }
        }
