body {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.feed-container {
    max-width: 600px;
    margin: 0 auto;
    overflow-y: auto;
    height: 100vh;
}

.post {
    background-color: #111;
    border-radius: 10px;
    margin: 10px 0;
    padding: 10px;
    transition: transform 0.2s ease-in-out;
}

.post:hover {
    transform: scale(1.02);
}

.post-header {
    display: flex;
    align-items: center;
}

.logo {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.post-title {
    font-weight: bold;
}

.post-image {
    width: 100%;
    border-radius: 8px;
    margin: 10px 0;
}

.post-caption {
    font-size: 16px;
    margin-bottom: 5px;
}

.post-location {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 10px;
}

.post-actions {
    display: flex;
    justify-content: space-around;
    margin-bottom: 10px;
}

.action-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    transition: color 0.3s;
}

.action-btn:hover {
    color: #1e90ff;
}

.lift::before { content: '\2764\fe0f '; }
.quote::before { content: '\1f4ac '; }
.right::before { content: '\1f504 '; }
.share::before { content: '\27a1\fe0f '; }

.comments {
    font-size: 14px;
    color: #ddd;
}

.comment {
    margin-bottom: 5px;
}
