/* Modern Train Page Styles - Consistent with Home Cards */
.train-glass-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    padding: 2.5rem 2rem 2rem 2rem;
    margin: 2rem 0;
    color: #495057;
    position: relative;
    overflow: hidden;
}

.train-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.train-header-icon {
    font-size: 2.5rem;
    color: #667eea;
    filter: none;
}

.train-title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #495057;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.train-btn-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.train-btn {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 1.1rem 2.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(102,126,234,0.10);
    transition: all 0.2s;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.train-btn:disabled {
    background: #64748b;
    color: #cbd5e1;
    cursor: not-allowed;
    opacity: 0.7;
}
.train-btn:hover:not(:disabled) {
    background: linear-gradient(90deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 24px rgba(102,126,234,0.18);
}

.train-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.train-stats-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    padding: 1.5rem 2rem;
    min-width: 220px;
    flex: 1 1 220px;
    max-width: 340px;
    color: #495057;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    align-items: flex-start;
    font-size: 1.1rem;
}
.train-stats-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #667eea;
}
.train-stats-list {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
}
.train-stats-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    font-size: 1.05rem;
}
.train-stats-list li:last-child {
    border-bottom: none;
}



@media (max-width: 900px) {
    .train-stats-row {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
    }
    .train-stats-card {
        min-width: 0;
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .train-glass-card {
        padding: 1.2rem 0.5rem;
    }
    .train-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    .train-title {
        font-size: 1.3rem;
    }
    .train-btn {
        font-size: 1rem;
        padding: 0.7rem 1.5rem;
    }
}