:root {
    --bg-color: #050a30;
    --accent-color: #223dfe;
    --text-color: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.03);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', -apple-system, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Эффект свечения на фоне */
.background-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    opacity: 0.15;
    filter: blur(80px);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 480px;
    padding: 2rem;
    text-align: center;
}

/* Аватар */
.avatar-wrapper {
    margin-bottom: 1.5rem;
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    padding: 5px;
    box-shadow: 0 0 20px rgba(34, 61, 254, 0.3);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.subtitle {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
}

/* Сетки ссылок */
.links-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.link-card i:first-child {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--accent-color);
}

.link-card span {
    flex-grow: 1;
    text-align: left;
    font-weight: 500;
}

.link-card i:last-child {
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

/* Ховер эффекты */
.link-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.link-card:hover i:last-child {
    opacity: 1;
    transform: translateX(0);
}

/* Анимации появления */
.animate-in {
    animation: fadeInDown 0.8s ease forwards;
}

.animate-in-delay {
    animation: fadeIn 1.2s ease forwards;
    opacity: 0;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

footer {
    margin-top: 3rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}
