* {
    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;
}

/* === WebGL2 Warp фон === */
#warpBg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 1;
    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, #e0e0e0 0%, #666666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.subtitle {
    color: #666;
    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.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    text-decoration: none;
    color: #ccc;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.link-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    color: #fff;
}

.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 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

.copy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    gap: 10px;
    padding: 13px 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #aaa;
    font-family: 'Unbounded', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ddd;
}

.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: #222;
    color: #ccc;
    border: 1px solid rgba(255, 255, 255, 0.1);
    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;
    z-index: 10;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

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

/* === Адаптив === */
@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;
    }
}