 :root {
            --primary: #ff5722;
            --bg: #f5f5f5;
            --text: #222;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background: var(--bg);
            color: var(--text);
        }

        header {
            background: #ffffff;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
            padding: 15px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: sticky;
            top: 0;
            z-index: 10;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 20px;
        }

        nav a {
            text-decoration: none;
            color: #555;
            font-weight: 500;
            font-size: 14px;
        }

        nav a:hover {
            color: var(--primary);
        }

        .hero {
            padding: 40px 20px 10px;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 32px;
            margin-bottom: 10px;
        }

        .hero p {
            font-size: 15px;
            color: #555;
            margin-bottom: 20px;
        }

        .controls {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 10px;
            flex-wrap: wrap;
        }

        .search-input {
            padding: 10px 14px;
            border-radius: 20px;
            border: 1px solid #ddd;
            min-width: 220px;
            max-width: 260px;
            outline: none;
            font-size: 14px;
        }

        .search-input:focus {
            border-color: var(--primary);
        }

        .btn {
            padding: 10px 22px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 20px;
            font-size: 14px;
            cursor: pointer;
            transition: 0.3s;
        }
        .btn2 {
            padding: 10px 22px;
            background: rgb(180, 180, 24);
            color: white;
            border: none;
            border-radius: 20px;
            font-size: 14px;
            cursor: pointer;
            transition: 0.3s;
        }

        .btn:hover:not(:disabled) {
            background: #e64a19;
        }

        .btn:disabled {
            background: #aaa;
            cursor: not-allowed;
        }

        .status-text {
            font-size: 13px;
            color: #777;
            margin-top: 5px;
            text-align: center;
        }

        main {
            padding: 0 10px 40px;
        }

        .card {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            padding: 20px;
            justify-content: center;
        }

        .card > div {
            width: 320px;
            background: #ffffff;
            padding: 15px;
            border-radius: 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
            transition: 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .card > div:hover {
            transform: translateY(-6px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
        }

        .card img {
            width: 100%;
            height: 210px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 10px;
        }

        .card p {
            margin: 6px 0;
            font-size: 14px;
            color: #333;
        }

        .card p:nth-child(2) {
            color: var(--primary);
            font-weight: 600;
        }

        .card p:nth-child(3) {
            font-size: 18px;
            font-weight: 600;
            color: #222;
        }

        .card p:last-child {
            color: #666;
            line-height: 1.4;
            max-height: 90px;
            overflow: hidden;
            text-overflow: ellipsis;
        }
