body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f8ff;
    margin: 0;
    padding: 20px;
    color: #333;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.container {
    max-width: 850px;
    margin: auto;
    background: linear-gradient(135deg, #fffaf5, #ffebeb);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 5px dashed #ff6b6b;
    position: relative;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    color: #ff4757;
    font-size: 3em;
    text-shadow: 3px 3px #ffa502;
    margin: 0;
}

.author {
    font-style: italic;
    color: #888;
}

img {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    border: 4px solid #ffa502;
    margin-bottom: 20px;
    transform: rotate(-2deg);
}


.content p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.2em;
}

.tips {
    background-color: #ffe66d;
    padding: 20px;
    border-left: 8px solid #ff6b6b;
    margin: 20px 0;
    border-radius: 15px;
    font-size: 1.2em;
    font-weight: bold;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tips::before {
    content: "😹";
    font-size: 2em;
}

footer {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
    color: #555;
}

footer p {
    background: #ffe6e6;
    padding: 15px;
    border-radius: 15px;
    display: inline-block;
    border: 3px solid #ff6b6b;
    transform: rotate(1deg);
    animation: wiggle 1s infinite alternate;
}

@keyframes wiggle {
    from { transform: rotate(-1deg); }
    to { transform: rotate(1deg); }
}

.paw-print {
    position: absolute;
    width: 50px;
    height: 50px;
    background: url('paw-print.png') no-repeat center/contain;
    opacity: 0.3;
}

.paw-print:nth-child(1) { top: 10px; left: 20px; transform: rotate(15deg); }
.paw-print:nth-child(2) { bottom: 20px; right: 30px; transform: rotate(-20deg); }

.social-btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.twitter-btn {
    background-color: #1DA1F2;
    color: white;
}

.facebook-btn {
    background-color: #4267B2;
    color: white;
}

.reddit-btn {
    background-color: #FF4500;
    color: white;
}

.linkedin-btn {
    background-color: #0077B5;
    color: white;
}

.social-btn:hover {
    opacity: 0.8;
    transform: scale(1.05);
}


.btn-poggers {
    display: inline-block;
    background-color: #ff6f61; /* Fun red color to match the button vibe */
    color: #fff;
    font-size: 18px;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 50px; /* Rounded corners for a friendly feel */
    text-align: center;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adds a soft shadow for depth */
    position: relative; /* Allow transformation */
    top: -20px; /* Moves the button 5px higher without breaking the layout */
}

.btn-poggers:hover {
    background-color: #f9a8b7; /* Lighter red for hover effect */
    transform: scale(1.1); /* Slightly enlarge on hover */
}

.btn-poggers:before {
    content: "🐾"; /* Paw print emoji to add a cute touch */
    margin-right: 10px;
}

.back-to-poggers {
    text-align: center;
    margin-top: 30px; /* Space above the button */
}

/* Optional: Make sure the button stays centered on mobile */
@media (max-width: 768px) {
    .btn-poggers {
        font-size: 16px; /* Adjust font size for smaller screens */
        padding: 10px 20px; /* Adjust padding for better appearance */
    }
}
