
        :root {
            --skokka-pink: #e6006e;
            --skokka-blue: #0d3c8c;
            --glass-white: rgba(255, 255, 255, 0.95);
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            background-color: #fcfcfc;
            color: #333;
        }

        /* ================= NAVIGATION ================= */
        .navbar {
            background: var(--glass-white);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #eee;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .logo {
            font-size: 26px;
            font-weight: 800;
            color: var(--skokka-pink);
            text-decoration: none;
            letter-spacing: -1px;
        }
        .nav-tools i {
            font-size: 1.3rem;
            margin-left: 20px;
            cursor: pointer;
            transition: 0.3s;
        }
        .nav-tools i:hover { color: var(--skokka-pink); }

        /* ================= HERO SECTION ================= */
        .hero {
            background: linear-gradient(135deg, #0d3c8c 0%, #e6006e 100%);
            color: white;
            padding: 80px 0;
            border-bottom-left-radius: 50px;
            border-bottom-right-radius: 50px;
        }
        .hero-title {
            font-weight: 800;
            font-size: clamp(2rem, 5vw, 3.5rem);
            line-height: 1.1;
        }
        .search-container {
            background: white;
            border-radius: 50px;
            padding: 8px 10px 8px 25px;
            display: flex;
            align-items: center;
            margin-top: 30px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
            max-width: 550px;
        }
        .search-container input {
            border: none;
            outline: none;
            flex-grow: 1;
            font-size: 16px;
        }
        .search-btn {
            background: var(--skokka-pink);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 40px;
            font-weight: 600;
        }

        .hero-img-card {
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0,0,0,0.3);
            transform: rotate(2deg);
            transition: 0.5s;
        }
        .hero-img-card:hover { transform: rotate(0deg) scale(1.02); }

        /* ================= ACTION BAR ================= */
        .cta-wrapper {
            margin-top: 30px;
            position: relative;
            z-index: 5;
            text-align: center;
        }
        .post-ad-btn {
            background: #4b8ec6;
            color: white;
            padding: 18px 45px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 10px 20px rgba(75, 142, 198, 0.4);
            transition: 0.3s;
        }
        .post-ad-btn:hover {
            background: #3a7caf;
            color: white;
            transform: translateY(-3px);
        }

        /* ================= CATEGORY CARDS ================= */
        .category-wrapper {
            padding: 60px 0;
        }
        .custom-card {
            background: white;
            border-radius: 24px;
            border: none;
            overflow: hidden;
            transition: 0.4s;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        .custom-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        .card-img-top {
            height: 220px;
            object-fit: cover;
        }
        .city-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 18px;
            background: #f8f9fa;
            border-radius: 12px;
            margin-bottom: 8px;
            text-decoration: none;
            color: #444;
            font-weight: 500;
            transition: 0.2s;
        }
        .city-link:hover {
            background: #fff0f7;
            color: var(--skokka-pink);
        }
        .city-link span {
            color: var(--skokka-pink);
            font-weight: 700;
            font-size: 0.9rem;
        }

        /* ================= FOOTER ================= */
        footer {
            background: #1a1a1a;
            color: #aaa;
            padding: 60px 0 30px;
            margin-top: 50px;
        }
        footer h5 { color: white; margin-bottom: 20px; }
        .footer-link { color: #aaa; text-decoration: none; display: block; margin-bottom: 10px; }
        .footer-link:hover { color: var(--skokka-pink); }

        /* ================= MOBILE OPTIMIZATION ================= */
        @media (max-width: 991px) {
            .hero { text-align: center; padding: 50px 0 100px; }
            .search-container { margin: 30px auto; }
            .hero-title { font-size: 2.2rem; }
        }
    