* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Ubuntu', sans-serif;
    background: linear-gradient(135deg, #030b1f 0%, #0a1835 50%, #060f25 100%);
    color: #eef5ff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Контент по центру */
.page-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.email-page {
    max-width: 500px;
    width: 100%;
}

.email-card {
    background: linear-gradient(145deg, #0f1f3d, #0a1830);
    border: 2px solid rgba(0, 255, 224, 0.3);
    border-radius: 25px;
    padding: 40px 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 255, 224, 0.1);
    text-align: center;
}

.email-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.email-card h1 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
}

.email-card p {
    color: #8899bb;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.email-address {
    display: inline-block;
    background: rgba(0, 255, 224, 0.1);
    border: 1px solid rgba(0, 255, 224, 0.2);
    border-radius: 12px;
    padding: 12px 20px;
    color: #00ffe0;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.email-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.email-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(20, 35, 70, 0.6);
}

.email-option:hover {
    transform: translateX(5px);
}

.email-option-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.email-option.gmail .email-option-icon { background: #EA4335; color: #fff; }
.email-option.gmail:hover { border-color: #EA4335; box-shadow: 0 0 25px rgba(234, 67, 53, 0.25); }

.email-option.yandex .email-option-icon { background: #FC3F1D; color: #fff; }
.email-option.yandex:hover { border-color: #FC3F1D; box-shadow: 0 0 25px rgba(252, 63, 29, 0.25); }

.email-option.mailru .email-option-icon { background: #005FF9; color: #fff; }
.email-option.mailru:hover { border-color: #005FF9; box-shadow: 0 0 25px rgba(0, 95, 249, 0.25); }

.email-option.copy-email {
    background: rgba(0, 255, 224, 0.03);
    border: 1px dashed rgba(0, 255, 224, 0.3);
    cursor: pointer;
    width: 100%;
    font-family: 'Ubuntu', sans-serif;
    color: #fff;
    text-align: left;
    font-size: 1rem;
}
.email-option.copy-email .email-option-icon { background: rgba(0, 255, 224, 0.1); color: #00ffe0; font-size: 1.5rem; }
.email-option.copy-email:hover { border-color: #00ffe0; box-shadow: 0 0 25px rgba(0, 255, 224, 0.2); }

.email-option-info { flex: 1; }

.email-option-info strong {
    display: block;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 3px;
}

.email-option-info span {
    color: #8899bb;
    font-size: 0.85rem;
}

.email-option-arrow {
    color: #8899bb;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.email-option:hover .email-option-arrow { transform: translateX(5px); color: #fff; }

.back-link {
    display: block;
    text-align: center;
    color: #8899bb;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.back-link:hover { color: #fff; }

.toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 24, 53, 0.98);
    border: 2px solid #00ffe0;
    box-shadow: 0 0 30px rgba(0, 255, 224, 0.4);
    padding: 15px 30px;
    border-radius: 50px;
    z-index: 9999;
    font-weight: bold;
    color: #fff;
    transition: 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    opacity: 0;
}

.toast.show { bottom: 40px; opacity: 1; }

/* ============================================
   ФУТЕР
   ============================================ */

.site-footer {
    background: rgba(6, 15, 37, 0.95);
    border-top: 2px solid rgba(0, 255, 224, 0.2);
    padding: 30px 20px 20px;
    margin-top: auto;
}

.footer-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-col h4 {
    color: #00ffe0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #8899bb;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #00ffe0;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.8rem;
    color: #8899bb;
}

.payment-icon {
    width: 36px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    flex-shrink: 0;
}

.payment-icon.sbp {
    background: #55ff55;
    color: #000;
}

.payment-icon.funpay {
    background: #ff8c00;
    color: #000;
}

.footer-bottom {
    max-width: 1000px;
    margin: 25px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.8rem;
    color: #667799;
}

.footer-bottom a {
    color: #8899bb;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #00ffe0;
}

.footer-creators {
    color: #556677;
}

.footer-creators strong {
    color: #8899bb;
}

@media (max-width: 600px) {
    .email-card {
        padding: 30px 20px;
    }

    .email-card h1 {
        font-size: 1.4rem;
    }

    .email-option {
        padding: 12px 15px;
    }

    .email-option-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        border-radius: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}