:root {
    --bg-color: #202225;
    --text-color: #dcddde;
    --card-bg: #2f3136;
    --primary-color: #5865F2;
    --primary-hover: #4752C4;
    --footer-text: #72767d;
    --heading-color: #ffffff;
    --border-color: #40444b;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

header {
    text-align: center;
    margin-bottom: 60px;
}

header h1 {
    margin: 0;
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

header p {
    color: var(--footer-text);
    font-size: 1.1rem;
    margin-top: 10px;
}

.card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

h1, h2, h3 {
    color: var(--heading-color);
}

h2 {
    margin-top: 0;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.links-list {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
}

/* Content pages specific styles */
.content-page h1 {
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 30px;
    font-size: 2rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    margin-bottom: 30px;
    color: var(--footer-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--heading-color);
}

section {
    margin-bottom: 30px;
}

section h3 {
    color: var(--heading-color);
    margin-bottom: 10px;
}

footer {
    margin-top: auto;
    text-align: center;
    color: var(--footer-text);
    font-size: 0.9em;
    padding-top: 40px;
}

@media (max-width: 600px) {
    .links-list {
        flex-direction: column;
        align-items: stretch;
    }
    
    .button {
        text-align: center;
    }
    
    .container {
        padding: 30px 20px;
    }
}