* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cinzel', 'Georgia', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 1;
}

header {
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(198, 161, 94, 0.3);
}

header h1 {
    color: #C6A15E;
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
    font-weight: 600;
}

.subtitle {
    color: #9B9B9B;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    font-weight: 400;
}

.button-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.app-button {
    background: rgba(25, 25, 25, 0.6);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 8px;
    text-decoration: none;
    color: #C6A15E;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    border: 1px solid rgba(198, 161, 94, 0.3);
    position: relative;
}

.app-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(198, 161, 94, 0.2);
    border-color: rgba(198, 161, 94, 0.6);
    background: rgba(35, 35, 35, 0.8);
}

.app-button h2 {
    color: #C6A15E;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
    font-weight: 600;
}

.app-button:hover h2 {
    color: #D4AF70;
}

.app-button p {
    color: #8B8B8B;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    font-weight: 400;
}

footer {
    color: #6B6B6B;
    font-size: 0.85rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(198, 161, 94, 0.2);
}

/* Responsive design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 0.85rem;
    }

    .button-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .app-button h2 {
        font-size: 1.3rem;
    }
}
