/* Cross-Platform Wallet Section */
.wallet-development {
    padding: 120px 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 204, 102, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #111111 50%, #0d0d0d 100%);
    position: relative;
}

.wallet-development::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 98px,
            rgba(0, 255, 136, 0.02) 98px,
            rgba(0, 255, 136, 0.02) 100px
        );
    pointer-events: none;
}

.wallet-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.wallet-info h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #00ff88, #00cc66, #00ff88);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.wallet-info p {
    color: #cccccc;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 1.8;
}

.wallet-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.wallet-feature {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wallet-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.5s ease;
}

.wallet-feature:hover::before {
    left: 100%;
}

.wallet-feature:hover {
    transform: translateX(10px);
    border-color: #00ff88;
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.2);
}

.wallet-feature i {
    font-size: 2rem;
    color: #00ff88;
    margin-right: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.wallet-feature-content h3 {
    font-family: 'Orbitron', monospace;
    color: #00ff88;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.wallet-feature-content p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}

.wallet-visual {
    background: 
        linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 204, 102, 0.1) 100%);
    padding: 3rem;
    border-radius: 25px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.wallet-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 255, 136, 0.05), transparent);
    animation: rotate 35s linear infinite;
}

.wallet-visual h3 {
    font-family: 'Orbitron', monospace;
    color: #00ff88;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
    position: relative;
    z-index: 2;
}

.wallet-visual p {
    color: #cccccc;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.wallet-platforms {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.wallet-platform {
    background: rgba(0, 255, 136, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.wallet-platform:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.wallet-platform i {
    color: #00ff88;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.wallet-platform h4 {
    color: #00ff88;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.wallet-platform span {
    color: #cccccc;
    font-size: 0.9rem;
}

.wallet-cta {
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.wallet-cta .cta-btn {
    margin: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wallet-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .wallet-platforms {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .wallet-platforms {
        grid-template-columns: 1fr;
    }

    .wallet-visual {
        padding: 2rem 1.5rem;
    }
}
