/* Wallet Page Styles */

.wallet-hero {
    text-align: center;
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1) 0%, rgba(156, 39, 176, 0.1) 100%);
}

.wallet-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wallet-hero p {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

/* Wallet Features */
.wallet-features {
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 229, 255, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Wallet Guide */
.wallet-guide {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
}

.wallet-guide h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.command-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
}

.command-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.command-card > p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.code-block {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.code-block pre {
    margin: 0;
    overflow-x: auto;
}

.code-block code {
    color: var(--primary);
    font-family: 'Courier New', Consolas, monospace;
    font-size: 0.95rem;
}

.copy-btn {
    background: var(--primary);
    color: var(--bg);
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-left: 15px;
}

.copy-btn:hover {
    background: #00b8cc;
    transform: scale(1.05);
}

.warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    padding: 15px;
    color: #ffc107;
    font-size: 0.9rem;
}

.warning strong {
    display: block;
    margin-bottom: 5px;
}

.example {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.example code {
    color: var(--secondary);
    background: rgba(156, 39, 176, 0.2);
    padding: 3px 8px;
    border-radius: 4px;
}

/* Security Section */
.wallet-security {
    padding: 60px 0;
}

.wallet-security h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.security-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 25px;
}

.security-item h4 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.security-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .wallet-hero h1 {
        font-size: 2rem;
    }
    
    .wallet-hero p {
        font-size: 1rem;
    }
    
    .code-block {
        flex-direction: column;
        gap: 10px;
    }
    
    .copy-btn {
        margin-left: 0;
        width: 100%;
    }
}
