/* Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Work Sans", sans-serif;
    background: linear-gradient(-35deg,#280869,#370685, #b65607, #31035c );
    background-size: 200% 200%;
    animation: gradientAnimation 20s ease infinite;
    min-height: 100vh;
    color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 420px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Perfil */
.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.profile_image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-image: url('https://yt3.googleusercontent.com/MH9HcZUxyhTDiHlQ9xGQuJhA48vG8UOtFGd_vX8AHLvi-bXE0Dav1pZGMnEwf91fI06dMq8RPQ=s160-c-k-c0x00ffffff-no-rj');
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
    border: 3px solid #24236F;
    overflow: hidden;
    background-repeat: no-repeat;
}

.profile_name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.profile_description {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Blockchain Cards */
.blockchain-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blockchain-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.blockchain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.blockchain-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.blockchain-card:hover::before {
    transform: translateX(100%);
}

.blockchain-info {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.blockchain-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

.blockchain-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: #ffffff;
}

.blockchain-address {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Courier New', monospace;
}

.blockchain-actions {
    display: flex;
    gap: 12px;
}

.action-btn {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Cores específicas para cada blockchain */
.pix { background: linear-gradient(135deg, #32BCAD, #00A868); }
.bitcoin { background: linear-gradient(135deg, #f7931a, #ff9500); }
.ethereum { background: linear-gradient(135deg, #627eea, #4c6ef5); }
.bsc { background: linear-gradient(135deg, #f3ba2f, #ffd700); }
.solana { background: linear-gradient(135deg, #9945ff, #14f195); }
.polygon { background: linear-gradient(135deg, #8247e5, #a855f7); }
.avalanche { background: linear-gradient(135deg, #e84142, #ff6b6b); }
.tron { background: linear-gradient(135deg, #ff0013, #ff4757); }
.monero { background: linear-gradient(135deg, #4e4e4e, #4A4A4A); }
.sui { background: linear-gradient(135deg, #375bd2, #4dabf7); }
.dot { background: linear-gradient(135deg, #e6007a, #f06292); }
.ton { background: linear-gradient(135deg, #0088cc, #0070d3); }
.mnt { background: linear-gradient(135deg, #373638, #141414); }
.xrp { background: linear-gradient(135deg, #000000, #000000); }

/* Animações */
@keyframes gradientAnimation {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blockchain-card {
    animation: fadeInUp 0.6s ease forwards;
}

.blockchain-card:nth-child(1) { animation-delay: 0.1s; }
.blockchain-card:nth-child(2) { animation-delay: 0.2s; }
.blockchain-card:nth-child(3) { animation-delay: 0.3s; }
.blockchain-card:nth-child(4) { animation-delay: 0.4s; }
.blockchain-card:nth-child(5) { animation-delay: 0.5s; }
.blockchain-card:nth-child(6) { animation-delay: 0.6s; }
.blockchain-card:nth-child(7) { animation-delay: 0.7s; }
.blockchain-card:nth-child(8) { animation-delay: 0.8s; }
.blockchain-card:nth-child(9) { animation-delay: 0.9s; }
.blockchain-card:nth-child(10) { animation-delay: 1.0s; }
.blockchain-card:nth-child(11) { animation-delay: 1.1s; }
.blockchain-card:nth-child(12) { animation-delay: 1.2s; }
.blockchain-card:nth-child(13) { animation-delay: 1.3s; }
.blockchain-card:nth-child(14) { animation-delay: 1.4s; }
.blockchain-card:nth-child(15) { animation-delay: 1.5s; }
.blockchain-card:nth-child(16) { animation-delay: 1.6s; }
.blockchain-card:nth-child(17) { animation-delay: 1.7s; }
.blockchain-card:nth-child(18) { animation-delay: 1.8s; }
.blockchain-card:nth-child(19) { animation-delay: 1.9s; }
.blockchain-card:nth-child(20) { animation-delay: 2.0s; }

/* Notificações */
.notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    animation: slideDown 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.notification.success {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.notification.info {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.notification button {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.notification button:hover {
    background: rgba(255, 255, 255, 0.1);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}