/* Reset default margins and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base body styling */
body {
    background-color: #0b0914; /* Deep, dark void background */
    color: #ffffff;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; /* Pushes footer to the bottom */
    min-height: 100vh;
    padding: 20px;
}

/* Header title styling */
.header-title {
    color: #a04ef6; /* Vibrant, high-contrast purple */
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-top: 60px;
    text-shadow: 0 0 15px rgba(160, 78, 246, 0.6), 
                 0 0 30px rgba(160, 78, 246, 0.3);
}

/* Main container for content */
.content-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    margin: 40px 0;
}

/* Clickable card section */
.clickable-card {
    background-color: #161224;
    border: 2px solid #32254f;
    border-radius: 12px;
    padding: 30px;
    width: 100%;
    text-align: center;
    text-decoration: none; /* Removes underline from link */
    color: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Hover and focus effects for the clickable card */
.clickable-card:hover {
    transform: translateY(-5px);
    border-color: #a04ef6;
    box-shadow: 0 10px 20px rgba(160, 78, 246, 0.2);
}

.clickable-card h2 {
    color: #a04ef6;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.clickable-card p {
    color: #b3b0c2;
    font-size: 1rem;
    line-height: 1.5;
}

/* Footer / License styling */
.site-footer {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    font-size: 0.85rem;
    color: #5c5570;
    border-top: 1px solid #161224;
}

/* Responsive adjustment for smaller screens */
@media (max-width: 600px) {
    .header-title {
        font-size: 2.5rem;
        margin-top: 40px;
    }
    
    .clickable-card {
        padding: 20px;
    }
}