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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #f0f2f5;
    color: #1c1c1c;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.main-title {
    text-align: center;
    font-size: 2rem;
    margin: 2rem 0;
    color: #ff6b6b;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.cards-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    animation: slideIn 0.5s ease-out;
}

.card:hover {
    transform: translateY(-5px);
}

.card p {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 0.9rem;
}

.likes {
    color: #ff6b6b;
    cursor: pointer;
}

.likes:hover {
    transform: scale(1.1);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .main-title {
        font-size: 1.5rem;
    }
    
    .card {
        padding: 15px;
    }
    
    .card p {
        font-size: 1rem;
    }
} 