@keyframes pulse {
    0% { text-shadow: 0 0 10px #9d4edd; }
    50% { text-shadow: 0 0 25px #c77dff, 0 0 10px #9d4edd; }
    100% { text-shadow: 0 0 10px #9d4edd; }
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #050208;
    color: #e0d6ff;
    margin: 0;
    padding: 0;
}

.home-header {
    text-align: center;
    padding: 3rem 2rem;
    background: radial-gradient(circle at top, #240b36, #050208);
    border-bottom: 1px solid #3c096c;
}

.home-header h1 {
    font-size: 3rem;
    letter-spacing: 2px;
    text-shadow: 0 0 15px #9d4edd;
    animation: pulse 4s infinite ease-in-out;
}

.home-header .tagline {
    font-style: italic;
    color: #9d4edd;
    margin-top: 0.3em;
    margin-bottom: 0.8em;
    font-size: 1.2rem;
}

.home-main {
    display: flex;
    justify-content: center;
    padding: 3rem 2rem;
}

.home-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
}

.home-card {
    background-color: #100a18;
    padding: 1.8rem;
    border-radius: 12px;
    width: 300px;
    text-align: center;
    border: 1px solid #240b36;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(157, 78, 221, 0.2);
    border-color: #5a189a;
}

.home-card h2 {
    margin-bottom: 1rem;
    color: #c77dff;
}

.home-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.8rem;
    color: #b3a0cc;
}

.home-button {
    display: inline-block;
    padding: 0.7rem 1.4rem;
    background-color: #5a189a;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.2s, box-shadow 0.2s;
}

.home-button:hover {
    background-color: #7b2cbf;
    box-shadow: 0 0 12px #9d4edd;
}

.home-button.disabled {
    background-color: #222;
    color: #555;
    border: 1px solid #333;
    pointer-events: none;
}

.home-footer {
    text-align: center;
    padding: 2rem;
    background-color: #050208;
    border-top: 1px solid #240b36;
    font-size: 0.85rem;
    color: #5a189a;
}

.latest-update-top-left {
    position: fixed;
    top: 15px;
    left: 15px;
    background-color: #240b36;
    border: 1px solid #5a189a;
    color: #e0d6ff;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    z-index: 1000;
}

.latest-update-top-left a {
    color: #c77dff;
    text-decoration: none;
}