/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #fff;
    text-align: center;
    padding: 20px;
    margin: 0;
}

/* Container */
.container {
    max-width: 700px;
    margin: auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Header */
h1 {
    font-weight: 600;
    font-size: 26px;
    margin-bottom: 10px;
}

p {
    font-size: 14px;
    opacity: 0.8;
}

/* Topic Card */
.topic-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    transition: transform 0.3s ease-in-out;
}

.topic-card:hover {
    transform: scale(1.05);
}

/* Hashtags */
.hashtags p {
    background: rgba(0, 0, 0, 0.2);
    display: inline-block;
    padding: 5px 12px;
    border-radius: 5px;
    margin: 5px;
    font-size: 14px;
    font-weight: 400;
}
footer {
    text-align: center;
    padding: 20px;
    background-color: #f8f8f8;
    margin-top: 40px;
    border-top: 1px solid #ddd;
}

.footer-links a {
    text-decoration: none;
    color: #333;
    margin: 0 10px;
    font-weight: 500;
}

.footer-links a:hover {
    color: #007BFF;
}

a {
    color: #ffffff; /* White text for dark backgrounds */
}
