/* mywallet.css - Estilos específicos de mywallet.html */

/* Hero fixed override for mywallet */
.mywallet-hero-section-fixed {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Status dots (system status LEDs) */
.status-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #4CAF50;
    animation: pulse-status 2s infinite alternate;
}

@keyframes pulse-status {
    from { opacity: 0.6; box-shadow: 0 0 4px #4CAF50; }
    to { opacity: 1; box-shadow: 0 0 12px #4CAF50; }
}

/* Hero product info */
.hero-info-line {
    display: block;
    margin-bottom: 5px;
}

.hero-info-line--gold {
    color: #fff;
}

.hero-info-line--android {
    color: #ccc;
}

.hero-info-line--ios {
    color: #888;
}

.hero-info-line--pro {
    color: #aaa;
}

.hero-info-icon--gold {
    color: #ff9800;
    width: 20px;
}

.hero-info-icon--android {
    color: #a4c639;
    width: 20px;
}

.hero-info-icon--ios {
    color: #888;
    width: 20px;
}

.hero-info-icon--pro {
    color: #b06ab3;
    width: 20px;
}

/* Features section spacing */
.features-section--spaced {
    padding-top: 80px;
}

.features-intro {
    color: #ccc;
}

/* System status section */
.system-status-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, rgba(10, 10, 10, 0.8) 100%);
}

.status-container {
    background: rgba(255, 255, 255, 0.02);
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.status-title {
    color: #888;
    font-size: 0.85rem;
    font-family: monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.status-label {
    font-size: 0.85rem;
    color: #ccc;
}

/* Trust architecture section label */
.tech-label--mywallet {
    color: #aaa;
}

/* Pro section beta button */
.pro-beta-btn {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(176, 106, 179, 0.25));
    border: 1px solid rgba(139, 92, 246, 0.5);
    color: #d8b4fe;
    padding: 14px 36px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.pro-beta-btn:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(176, 106, 179, 0.4));
    border-color: rgba(139, 92, 246, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.3);
}

.pro-beta-hint {
    color: #888;
    font-size: 0.8rem;
    margin-top: 10px;
}

/* Pro feature card */
.pro-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 1.5rem;
}

.pro-feature-list {
    margin: 0;
}

.pro-feature-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 0;
}

.pro-feature-list li:last-child {
    border-bottom: none;
}

.pro-feature-icon {
    color: #b06ab3;
    margin-right: 10px;
}

/* Pro section description */
.pro-description {
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Crypto card */
.crypto-feature-card {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.crypto-icon {
    font-size: 5rem;
    color: #b06ab3;
}

/* Feature demos */
.feature-demo-title {
    font-size: 1.2rem;
}

/* Comparison table left align */
.comparison-table td:first-child,
.comparison-table th:first-child {
    text-align: left;
}

.feature-missing-note {
    font-size: 0.8rem;
    color: #888;
}

/* Download small text */
.download-note {
    color: #aaa;
}

/* Hue filter for pro preview image */
.phone-screen--pro img {
    filter: hue-rotate(270deg);
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .mywallet-hero-section-fixed {
        min-height: auto;
        height: auto;
        padding-top: 120px;
        padding-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .status-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 1rem 1.5rem;
    }

    .status-items {
        flex-direction: column;
        gap: 10px !important;
    }

    .system-status-section {
        padding: 40px 0;
    }

    .hero-info-line {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    .features-section--spaced {
        padding-top: 50px;
    }

    .crypto-icon {
        font-size: 3.5rem;
    }
}

@media (max-width: 576px) {
    .status-container {
        padding: 0.8rem 1rem;
    }

    .status-title {
        font-size: 0.75rem;
    }

    .status-label {
        font-size: 0.8rem;
    }

    .hero-info-line {
        font-size: 0.82rem;
    }

    .pro-feature-card {
        padding: 1rem;
    }

    .download-note {
        font-size: 0.78rem;
    }

    .feature-demo-title {
        font-size: 1rem;
    }

    .feature-missing-note {
        font-size: 0.72rem;
    }
}
