/* Page Setup */
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: Logo Left, Text Right */
header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
    margin-bottom: 50px;
    width: 100%;
    max-width: 550px;
}

header img {
    width: 120px;
    height: 120px;
    border-radius: 50%; /* The round logo */
    object-fit: cover;
    border: 3px solid #f1c40f;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.header-text {
    text-align: left;
}

.header-text h1 { margin: 0; font-size: 2.2rem; }
.header-text h2 { margin: 0; font-size: 1.2rem; color: #f1c40f; font-weight: 400; }

/* The Popping Cards */
.card-container {
    width: 100%;
    max-width: 450px;
}

.card {
    display: block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    text-decoration: none;
    color: white !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.card:hover {
    transform: scale(1.05); /* The Pop effect */
    background: rgba(255, 255, 255, 0.15);
    border-color: #f1c40f;
}

.card strong {
    display: block;
    font-size: 1.3rem;
    color: #f1c40f;
    margin-bottom: 5px;
}

/* Footer & Copyright */
footer {
    margin-top: auto;
    padding: 40px 0;
    text-align: center;
}

.back-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
}

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