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

:root {
    --bg-color: #1a1a2e;
    --text-color: #ffffff;
    --accent-color: #6c5ce7;
    --card-bg: rgba(255, 255, 255, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: background 0.3s ease, color 0.3s ease;
}

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

.profile {
    text-align: center;
    margin-bottom: 40px;
}

.profile img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
    margin-bottom: 15px;
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.3);
}

.profile h1 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.profile p {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.5;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-card {
    display: block;
    text-decoration: none;
    background: var(--card-bg);
    padding: 18px 24px;
    border-radius: 12px;
    color: var(--text-color);
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.link-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.2);
}

footer {
    margin-top: 40px;
    text-align: center;
}

.admin-link {
    color: var(--text-color);
    text-decoration: none;
    opacity: 0.5;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.admin-link:hover {
    opacity: 1;
}
