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

:root {
    --bg-color: #ffffff;
    --text-color: #111111;
    --text-secondary: #666666;
    --border-color: #e0e0e0;
    --border-hover: #111111;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] {
    --bg-color: #111111;
    --text-color: #ffffff;
    --text-secondary: #aaaaaa;
    --border-color: #333333;
    --border-hover: #ffffff;
    --shadow-color: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 640px;
    width: 100%;
}

.title {
    font-family: 'UnifrakturMaguntia', cursive;
    font-size: 6rem;
    text-align: center;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.2s ease;
}

.link-item:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-color);
}

.link-name {
    font-size: 1.5rem;
    font-weight: 600;
}

.link-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.theme-toggle {
    position: fixed;
    top: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background-color: var(--bg-color);
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 100;
}

.theme-toggle:hover {
    border-color: var(--border-hover);
    transform: scale(1.1);
}

.theme-icon {
    font-size: 1.5rem;
    line-height: 1;
}

@media (max-width: 640px) {
    .title {
        font-size: 4rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .link-item {
        padding: 1.25rem;
    }

    .link-name {
        font-size: 1.25rem;
    }
}
