body {
    margin: 0;
    padding: 40px 20px;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: radial-gradient(circle at center, #2c4a52 0%, #0e1c26 100%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    margin-bottom: 50px;
}

header img {
    width: 140px; /* Bigger logo */
    height: 140px;
    border-radius: 50%;
    border: 3px solid #f1c40f;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.header-text h1 { margin: 10px 0 5px 0; font-size: 2.4rem; }
.header-text h2 { 
    margin: 0; 
    font-size: 1rem; 
    color: #f1c40f; 
    letter-spacing: 2px;
}

.activities-container {
    width: 100%;
    max-width: 750px;
}

.activity-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    /* This makes the hover smooth */
    transition: all 0.3s ease-in-out;
}

/* SUBTLE HOVER EFFECT */
.activity-card:hover {
    transform: translateY(-5px); /* Gentle lift */
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(241, 196, 15, 0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.date-tag {
    display: block;
    color: #f1c40f;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.activity-card h3 { margin: 0 0 15px 0; font-size: 1.6rem; }
.activity-card p { line-height: 1.7; margin-bottom: 20px; color: rgba(255, 255, 255, 0.85); }

.read-more {
    color: #f1c40f !important;
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover { text-decoration: underline; }

footer {
    margin-top: auto;
    text-align: center;
    padding: 40px 0;
}

.back-link { color: rgba(255, 255, 255, 0.6); text-decoration: none; }
.back-link:hover { color: #f1c40f; }

footer p { font-size: 0.85rem; color: rgba(255, 255, 255, 0.4); margin-top: 15px; }

/* Container to pull the date and symbol to opposite sides */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

/* Ensure the date-tag doesn't have extra bottom margin now */
.date-tag {
    margin-bottom: 0 !important;
}