
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family-base);
}

body {
    background-color: var(--color-background, #000000);
    color: var(--text-main, #ffffff);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Main Content Styles */
#main-content {
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 20px;
}

header {
    margin-bottom: 3rem;
}

.main-title {
    font-size: 2.5rem;
    letter-spacing: 0.2rem;
    margin-bottom: 10px;
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.card-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.app-card {
    background-color: var(--color-surface);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    width: 250px;
    text-decoration: none;
    color: var(--text-main);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.app-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-home);
}

.icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.app-card h2 {
    font-size: 1.25rem;
    font-weight: 500;
}