/* Gate Modal - Premium UX Design v2.0 */

.gate-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 12, 16, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    animation: fadeIn 0.4s ease-out forwards;
}

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

.gate-modal {
    background: linear-gradient(135deg, rgba(35, 38, 48, 0.9) 0%, rgba(25, 28, 35, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 3rem 2.5rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.gate-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.gate-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.gate-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #fff;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.gate-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0.5rem 0 1rem;
}

/* Main CTA Button */
.gate-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, #0088cc 0%, #0077b5 100%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    padding: 1rem 2rem;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    margin-top: 0.5rem;
    box-shadow: 0 8px 24px rgba(0, 136, 204, 0.3);
}

.gate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 136, 204, 0.4);
}

.gate-btn:active {
    transform: translateY(-1px);
}

.gate-btn-icon {
    font-size: 1.5rem;
}

.gate-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.gate-btn-main {
    font-weight: 600;
    font-size: 1rem;
}

.gate-btn-sub {
    font-size: 0.75rem;
    opacity: 0.8;
    margin-top: 2px;
}

/* Feature List */
.gate-features {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.gate-feature {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Success Toast */
.success-toast {
    position: fixed;
    top: 24px;
    right: 24px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
    z-index: 10001;
    transform: translateX(120%);
    transition: transform 0.3s ease;
}

.success-toast.show {
    transform: translateX(0);
}

.toast-content {
    display: flex;
    flex-direction: column;
}

.toast-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
}

.toast-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 2px;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .gate-modal {
        padding: 2rem 1.5rem;
        border-radius: 24px;
        margin: 0 10px;
    }

    .gate-title {
        font-size: 1.8rem;
    }

    .gate-text {
        font-size: 0.95rem;
    }

    .gate-btn {
        padding: 1rem 1.5rem;
    }

    .gate-features {
        gap: 1rem;
    }

    .success-toast {
        right: 16px;
        left: 16px;
        top: 16px;
    }
}