/* Thirdweb Wallet Integration Styles */

.connect-wallet-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.connect-wallet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    color: white;
}

.connect-wallet-btn.connected {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.connect-wallet-btn.connected:hover {
    background: linear-gradient(135deg, #229954 0%, #27ae60 100%);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    max-width: 300px;
    word-wrap: break-word;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Mobile Wallet Modal Styles */
.wallet-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    backdrop-filter: blur(5px);
}

.wallet-modal-content {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 16px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.wallet-modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.wallet-modal-title {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.wallet-modal-subtitle {
    color: #ccc;
    font-size: 14px;
}

.wallet-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wallet-option {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

.wallet-option:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.wallet-option img {
    width: 32px;
    height: 32px;
    margin-right: 15px;
    border-radius: 6px;
}

.wallet-option span {
    font-weight: 600;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .connect-wallet-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .wallet-modal-content {
        padding: 20px;
        margin: 20px;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .wallet-modal-title {
        font-size: 20px;
    }
    
    .wallet-option {
        padding: 12px;
    }
    
    .wallet-option img {
        width: 28px;
        height: 28px;
    }
    
    .wallet-option span {
        font-size: 14px;
    }
}

/* Dark theme compatibility */
.bg-dark .connect-wallet-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.bg-dark .connect-wallet-btn:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}
