        .review-container {
            background: white;
            padding: 20px;
            max-width: 400px;
            margin: auto;
            border: 1px solid #ccc;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .stars {
            display: flex;
            font-size: 30px;
            color: gray;
            cursor: pointer;
        }

        .stars .star:hover,
        .stars .star.active {
            color: gold;
        }

        textarea {
            width: 100%;
            margin-top: 10px;
            padding: 8px;
            resize: none;
        }

        button {
            margin-top: 10px;
            padding: 8px 15px;
            background: #007bff;
            border: none;
            color: white;
            cursor: pointer;
            border-radius: 4px;
        }

        #result {
            margin-top: 15px;
            font-weight: bold;
            color: green;
        }

        .image-container {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
            font-family: Arial, sans-serif;
        }

        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
            -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
        }

        .overlay-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 2em;
            font-weight: bold;
            text-align: center;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
        }

        #punetor {
            margin-top: 20px;
        }