body{
    margin:0;
    font-family:Arial;
    background:#fdfcff;
}

header{
    background: linear-gradient(45deg, #581c87, #9333ea);
    padding:10px;
    text-align:center;
    color:white;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.container{
    width:90%;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
    margin-top:30px;
}

.card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-5px);
}

.card img{
    width:100%;
    height:230px;
    object-fit:cover;
}

.card-content{
    padding:20px;
}

.read-btn{
    display:inline-block;
    padding:12px 20px;
    background:#c084fc;
    color:white;
    text-decoration:none;
    border-radius:12px;
}

.post-container{
    width:80%;
    margin:30px auto;
    background:white;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.post-image{
    width:100%;
    border-radius:20px;
}

.home-btn{
    position:fixed;
    top:20px;
    left:20px;
    background:#c084fc;
    color:white;
    padding:12px 18px;
    border-radius:50px;
    text-decoration:none;
}

.actions{
    margin:20px 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.like-btn{
    background:#f3e8ff;
    padding:12px 18px;
    border-radius:10px;
    text-decoration:none;
    color:#7e22ce;
}

.share-buttons{

    display:flex;

    gap:15px;

    align-items:center;

    flex-wrap:wrap;
}

.share-buttons a{

    width:50px;

    height:50px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    color:white;

    text-decoration:none;

    font-size:22px;

    transition:0.3s;

    box-shadow:0 5px 15px rgba(0,0,0,0.12);
}

.share-buttons a:hover{

    transform:translateY(-5px) scale(1.08);
}

/* WHATSAPP */

.whatsapp{
    background:#25D366;
}

/* FACEBOOK */

.facebook{
    background:#1877F2;
}

/* X */

.twitter{
    background:#000;
}

/* INSTAGRAM */

.instagram{

    background:
    linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
    );
}

.comment-form input,
.comment-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border-radius:10px;
    border:1px solid #ddd;
}

.comment-form button{
    background:#c084fc;
    color:white;
    border:none;
    padding:14px 20px;
    border-radius:12px;
}

.comment-box{
    background:#faf5ff;
    padding:15px;
    margin-top:15px;
    border-radius:12px;
}