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

body {
    font-family: 'Unbounded', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.container {
    text-align: center;
    max-width: 520px;
    padding: 20px;
    animation: fadeIn 0.8s ease-out;
}

h1 {
    font-size: 3rem;
    margin-bottom: 12px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.subtitle {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
}

.link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.link-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
}

.link-item svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    flex-shrink: 0;
}

.link-item span {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.email-section {
    position: relative;
    display: inline-block;
}

.copy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 24px;
    background: rgba(102, 126, 234, 0.15);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    color: #667eea;
    font-family: 'Unbounded', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
}

.copy-btn:hover {
    background: rgba(102, 126, 234, 0.25);
    border-color: rgba(102, 126, 234, 0.6);
}

.copy-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex-shrink: 0;
}

.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #667eea;
    color: #fff;
    padding: 12px 24px;
    border-radius: 10px;
    font-family: 'Unbounded', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

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

.bg-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    pointer-events: none;
}

.glow-1 {
    top: -100px;
    left: -100px;
    background: #667eea;
}

.glow-2 {
    bottom: -100px;
    right: -100px;
    background: #764ba2;
}

/* Unbounded широкий — на мобилках чуть уменьшаем */
@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 0.75rem;
    }

    .link-item span {
        font-size: 0.75rem;
    }

    .copy-btn {
        font-size: 0.7rem;
    }

    .container {
        max-width: 100%;
        padding: 20px 16px;
    }
}