body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f7f9fc;
            color: #333;
            margin: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            transition: background 0.5s ease;
        }

        .container {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            width: 90%;
            max-width: 500px;
            text-align: center;
        }

        h1 { margin-bottom: 5px; color: #4a4a4a; }
        p { color: #777; margin-bottom: 25px; }

        .mood-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 25px;
        }

        .mood-btn {
            padding: 15px;
            font-size: 16px;
            border: 2px solid #eee;
            border-radius: 12px;
            background: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .mood-btn[data-mood="senang"]:hover { border-color: #ffd166; background: #fffdf6; transform: scale(1.05); }
        .mood-btn[data-mood="sedih"]:hover { border-color: #118ab2; background: #f4faff; transform: scale(1.05); }
        .mood-btn[data-mood="bosan"]:hover { border-color: #8338ec; background: #f9f5ff; transform: scale(1.05); }
        .mood-btn[data-mood="lelah"]:hover { border-color: #06d6a0; background: #f4fdfa; transform: scale(1.05); }

        .hidden { display: none !important; }
        .result-screen { text-align: left; }

        .quote-box {
            font-style: italic;
            background: #f9f9f9;
            padding: 15px;
            border-left: 4px solid #ccc;
            margin-bottom: 20px;
            border-radius: 0 8px 8px 0;
            font-size: 15px;
        }

        .back-btn {
            background: #e0e0e0;
            border: none;
            padding: 8px 15px;
            border-radius: 20px;
            cursor: pointer;
            margin-bottom: 10px;
            font-weight: bold;
        }

        .share-btn {
            background: #25D366;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 20px;
            cursor: pointer;
            font-weight: bold;
            margin-bottom: 15px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: transform 0.2s;
        }

        .share-btn:hover {
            transform: scale(1.05);
        }

        .movie-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 15px;
        }

        .movie-card {
            display: flex;
            gap: 15px;
            background: #fdfdfd;
            border: 1px solid #eee;
            border-radius: 12px;
            padding: 10px;
            align-items: center;
        }

        .movie-poster {
            width: 70px;
            height: 105px;
            object-fit: cover;
            border-radius: 8px;
            background-color: #ddd;
        }

        .movie-info {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .movie-title {
            font-weight: bold;
            font-size: 16px;
            margin: 0;
        }

        .movie-rating {
            color: #f5a623;
            font-size: 14px;
            font-weight: bold;
        }

        .movie-desc {
            font-size: 12px;
            color: #666;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .loading {
            text-align: center;
            padding: 20px;
            color: #666;
        }

        .error-box {
            color: #d9534f;
            background: #fff5f5;
            padding: 15px;
            border-radius: 10px;
            border: 1px solid #fbcacb;
            text-align: center;
        }

        .error-box small {
            display: block;
            margin-top: 8px;
            color: #888;
        }

        .button-group {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }

        .spotify-container {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            margin: 20px 0;
        }

        .spotify-container iframe {
            width: 100%;
            height: 152px;
            border: none;
        }

        .spotify-link {
            display: block;
            text-align: center;
            padding: 8px;
            background: #1DB954;
            color: white;
            text-decoration: none;
            font-weight: bold;
            font-size: 14px;
            transition: background 0.3s;
        }

        .spotify-link:hover {
            background: #1ed760;
        }
