/* General Body Styling */
body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #f0f4f8, #d9e2ec); /* Subtle gradient background */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* Header Styling */
header h1 {
    font-size: 2.5em;
    color: #2c3e50; /* Dark blue-gray */
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Container Styling */
.container {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); /* Soft shadow for depth */
    width: 90%;
    max-width: 700px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Stats Section Styling */
.stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    text-align: center;
}

.stats div {
    background-color: #f3f4f6;
    border-radius: 10px;
    padding: 10px 15px;
    width: 22%;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Textarea Styling */
.textarea-section textarea {
    width: 100%;
    min-height: 200px;
    padding: 15px;
    font-size: 16px;
    border: 2px solid #d1d5db;
    border-radius: 10px;
    resize: vertical;
    box-sizing: border-box;
    background-color: #f9fafb;
    color: #333;
    transition: border-color 0.3s;
}

.textarea-section textarea:focus {
    border-color: #3b82f6; /* Blue border on focus */
    outline: none;
}

/* Social Media Counters */
.social {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.social div {
    background-color: #e3eaf2;
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    font-weight: bold;
    color: #2c3e50;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Footer Styling */
footer {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #555;
}

/* Responsive Design */
@media (max-width: 600px) {
    .stats, .social {
        flex-direction: column;
        gap: 10px;
    }
    .stats div, .social div {
        width: 100%;
    }
}
