:root {
    --main-bg: #121212;
    --card-bg: #1e1e1e;
    --accent: #6c2cf5;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Segoe UI', sans-serif; 
    -webkit-tap-highlight-color: transparent; 
}

body {
    background-color: var(--main-bg);
    color: white;
    padding-top: 100px;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column; /* Ubah ke column biar Profiling ada di atas */
    align-items: center;
}
.container {
    width: 95%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

/* --- CARD STYLE (BALIK KE ORI LO - SNAPPY & GLOW) --- */
.card {
    background: var(--card-bg);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #333;
    position: relative;
    transition: transform 0.2s cubic-bezier(0.2, 0, 0.2, 1), 
                box-shadow 0.2s ease, 
                border-color 0.2s ease;
}

.card:hover, .card:active {
    transform: scale(1.02) translateY(-4px);
    border-color: #66CDAA;
    box-shadow: 2px 12px 30px rgba(0, 191, 255, 0.4);
}

.image-container {
    width: 100%; height: 220px;
    position: relative; overflow: hidden;
}

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

.card:hover .card-img { transform: scale(1.1); }

.heart-icon {
    position: absolute; top: 15px; left: 15px;
    background: rgba(0,0,0,0.5); width: 40px; height: 40px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 10;
}

.badge {
    position: absolute; top: 15px; right: 15px;
    padding: 6px 12px; border-radius: 8px; font-size: 11px; font-weight: bold;
    z-index: 20;
    pointer-events: none; 
    transition: transform 0.1s ease;
}
.hot { background: #ff3b3b; }
.new { background: #00d26a; }

.card-body { padding: 20px; }
.card-title { font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; }
.card-desc { color: #aaa; font-size: 0.9rem; line-height: 1.5; margin-bottom: 20px; }

.card-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.rating { color: #b794f4; font-weight: bold; }

.card-footer { display: flex; gap: 10px; }
.btn { 
    flex: 1; padding: 12px; border-radius: 12px; border: none; 
    font-weight: bold; cursor: pointer; color: white; 
    transition: 0.2s; font-size: 0.85rem; 
    text-align: center; text-decoration: none; 
}

.btn-chat { background: var(--accent); }
.btn-insta { border: 1px solid #ff3b6b; color: #ff3b6b; background: transparent; }
.btn-twitter { border: 1px solid #1da1f2; color: #1da1f2; background: transparent; }

/* PERBAIKAN ANIMASI PARTIKEL (TETEP ADA) */
.particle {
    position: absolute;
    pointer-events: none;
    z-index: 2000;
    color: #ff3b3b;
    font-size: 20px;
    animation: flyOut 0.8s ease-out forwards;
}

@keyframes flyOut {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) scale(0); opacity: 0; }
}
