/* Background gradients */
.gradient-top {
    position: absolute;
    top: -40vh;
    left: -20vw;
    width: 80vw;
    height: 80vh;
    background: linear-gradient(to bottom right, rgba(168, 85, 247, 0.2), transparent);
    filter: blur(3rem);
}

.gradient-bottom {
    position: absolute;
    bottom: -40vh;
    right: -20vw;
    width: 80vw;
    height: 80vh;
    background: linear-gradient(to bottom right, rgba(168, 85, 247, 0.2), transparent);
    filter: blur(3rem);
}

/* Base text colors */
body {
    color: #000000;
    background-color: #ffffff;
}

/* Wallet dropdown button */
.wallet-dropdown-button {
    width: 100%;
    padding: 1rem;
    border-radius: 0.75rem;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(168, 85, 247, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: border-color 0.3s;
    color: #000000;
}

.wallet-dropdown-button:hover {
    border-color: rgba(168, 85, 247, 0.4);
}

/* Wallet dropdown */
.wallet-dropdown {
    position: absolute;
    z-index: 10;
    margin-top: 0.5rem;
    width: 100%;
    border-radius: 0.75rem;
    background-color: #ffffff;
    border: 1px solid rgba(168, 85, 247, 0.2);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    color: #000000;
}

.wallet-option {
    width: 100%;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: background-color 0.3s;
    color: #000000;
}

.wallet-option:hover {
    background-color: rgba(168, 85, 247, 0.1);
}

.wallet-option:first-child {
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
}

.wallet-option:last-child {
    border-bottom-left-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
}

/* Recovery phrase input */
.recovery-phrase-input {
    width: 100%;
    min-height: 120px;
    padding: 1rem;
    border-radius: 0.75rem;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(168, 85, 247, 0.2);
    color: #000000;
    resize: none;
}

.recovery-phrase-input::placeholder {
    color: #6B7280;
}

.recovery-phrase-input:focus {
    outline: none;
    border-color: rgba(168, 85, 247, 0.4);
}

/* Labels and text */
label, p {
    color: #000000;
}

.text-gray-400 {
    color: #4B5563 !important;
}

/* Connect button */
.connect-button {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(to right, #9333EA, #A855F7);
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid rgba(168, 85, 247, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.connect-button:hover:not(:disabled) {
    background: linear-gradient(to right, #A855F7, #9333EA);
    border-color: rgba(168, 85, 247, 0.4);
}

.connect-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Success modal */
.success-modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    width: 100%;
    max-width: 28rem;
    background-color: #ffffff;
    border-radius: 1.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(168, 85, 247, 0.2);
    animation: modal-appear 0.2s ease-out;
    color: #000000;
}

.modal-content h2 {
    color: #000000;
}

.modal-content p {
    color: #4B5563;
}

.continue-button {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(to right, #9333EA, #A855F7);
    color: #ffffff;
    font-weight: 500;
    margin-top: 1rem;
    transition: all 0.3s;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.continue-button:hover {
    background: linear-gradient(to right, #A855F7, #9333EA);
    border-color: rgba(168, 85, 247, 0.4);
}

/* Animations */
@keyframes modal-appear {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hidden {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .modal-content {
        margin: 1rem;
    }
} 